/* ---------- base ---------- */
:root {
  --c-primary: #5a8169;
  --c-accent: #bfe0c4;
  --c-deep: #2f5040;
  --c-page: #FAF8F4;
  --c-alt: #F3EFE6;
  --c-ink: #2a2a2a;
  --c-muted: #6B6B6B;
  --c-rule: rgba(90,129,105,.25);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--c-page); color: var(--c-ink); }

body {
  background: var(--c-page);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--c-accent); color: var(--c-deep); }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-primary);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-primary);
  opacity: 0.6;
}

.section {
  padding: 7rem 0;
  position: relative;
}
@media (max-width: 820px) {
  .section { padding: 5rem 0; }
}

.section__head { max-width: 720px; margin-bottom: 4rem; }
.section__head--center {
  text-align: center;
  margin-inline: auto;
}
.section__head--center .eyebrow { justify-content: center; }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 18px 0 0;
  text-wrap: pretty;
}
.section__title em {
  font-style: italic;
  color: var(--c-primary);
  font-weight: 300;
}

.section__lede {
  font-size: 17px;
  color: var(--c-muted);
  margin-top: 14px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -10px rgba(90,129,105,.5);
}
.btn--ghost {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.btn--ghost:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.btn--lg { padding: 18px 34px; font-size: 15px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
}
.nav--scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-rule);
}
.nav__inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--c-ink);
}
.nav__brand-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 14px;
  color: var(--c-ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__links a:hover { color: var(--c-primary); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  border-bottom: 1px solid var(--c-primary);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.nav__cta:hover { color: var(--c-deep); border-color: var(--c-deep); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--c-ink);
}
.nav__drawer {
  display: none;
}

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--c-page);
    border-bottom: 1px solid var(--c-rule);
    padding: 1rem 0;
  }
  .nav__drawer a {
    padding: 14px 6vw;
    font-size: 16px;
  }
  .nav__drawer-cta {
    color: var(--c-primary);
    border-top: 1px solid var(--c-rule);
    margin-top: 6px;
    padding-top: 18px !important;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 170px 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-primary);
  font-weight: 500;
}
.hero__eyebrow .rule {
  width: 36px;
  height: 1px;
  background: var(--c-primary);
  opacity: 0.55;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 22px 0 28px;
  color: var(--c-ink);
}
.hero__title em {
  font-style: italic;
  color: var(--c-primary);
  font-weight: 300;
}
.hero__title--center { text-align: center; }
.hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-muted);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero__lede--center {
  margin-inline: auto;
  text-align: center;
  max-width: 560px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__ctas--center { justify-content: center; margin-top: 36px; }

.hero__meta {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-rule);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta-n {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--c-primary);
  font-weight: 400;
}
.hero__meta-l {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 6px;
}

.hero__art {
  position: relative;
  min-height: 560px;
}
.hero__oval {
  position: absolute;
  top: 0; right: 4%;
  width: 74%;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(60,80,70,.3);
}
.hero__oval--small {
  top: auto;
  right: auto;
  bottom: -20px;
  left: 0;
  width: 42%;
  box-shadow: 0 20px 40px -20px rgba(60,80,70,.25);
}
.hero__sprig-art {
  position: absolute;
  top: -40px;
  right: 10%;
  z-index: 2;
  opacity: 0.9;
}

/* hero quiet variant sprigs */
.hero--quiet { text-align: center; }
.hero__sprig { position: absolute; opacity: 0.7; }
.hero__sprig--left { top: 180px; left: 5vw; }
.hero__sprig--right { top: 240px; right: 5vw; }

@media (max-width: 900px) {
  .hero { padding: 130px 0 4rem; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__art { min-height: 460px; width: 100%; max-width: 420px; margin: 0 auto; }
  .hero__meta { gap: 1.5rem; flex-wrap: wrap; }
  .hero__sprig { display: none; }
}

/* ---------- Placeholder image ---------- */
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  opacity: 0.8;
  line-height: 1.5;
}

.oval-frame {
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(60,80,70,.3);
  position: relative;
}

/* ---------- SOBRE ---------- */
.section--sobre { background: var(--c-alt); }
.section__grid--about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about__photo {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.about__signature {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--c-page);
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--c-rule);
  box-shadow: 0 6px 20px -8px rgba(60,80,70,.25);
}
.script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--c-primary);
}
.about__text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--c-ink);
  margin: 1.4em 0 0;
}
.about__text p em { color: var(--c-primary); font-style: italic; }
.about__text .section__title { margin-top: 18px; }
.about__cta {
  margin-top: 2.2rem;
}

.portfolio__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 960px) {
  .section__grid--about { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- Respiro ---------- */
.respiro {
  padding: 8rem 0;
  background: var(--c-page);
  text-align: center;
  position: relative;
}
.respiro::before,
.respiro::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: var(--c-primary);
  opacity: 0.35;
  margin: 0 auto;
}
.respiro::before { margin-bottom: 3rem; }
.respiro::after { margin-top: 3rem; }
.respiro__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  color: var(--c-primary);
  max-width: 820px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ---------- Serviços ---------- */
.section--servicos { background: var(--c-page); }
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-rule);
}
.service {
  display: flex;
  gap: 1.4rem;
  padding: 2rem 1.2rem;
  border-bottom: 1px solid var(--c-rule);
  align-items: flex-start;
  transition: background 0.2s;
}
.service:nth-child(odd) { border-right: 1px solid var(--c-rule); }
.service:hover { background: var(--c-alt); }
.service__n {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-primary);
  font-style: italic;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  padding-top: 4px;
}
.service__t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
  color: var(--c-ink);
}
.service__d {
  font-size: 15px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}
.services__quote {
  margin-top: 5rem;
  padding: 3.5rem 2rem;
  background: var(--c-accent);
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.services__quote::before,
.services__quote::after {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--c-primary);
  opacity: 0.3;
  position: absolute;
}
.services__quote::before { content: "“"; top: 34px; left: 24px; }
.services__quote::after { content: "”"; bottom: -6px; right: 24px; }
.services__quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--c-deep);
  margin: 0;
  line-height: 1.4;
  max-width: 720px;
  margin-inline: auto;
  text-wrap: balance;
}
.services__quote p em { color: var(--c-primary); font-style: italic; }

@media (max-width: 700px) {
  .services { grid-template-columns: 1fr; }
  .service:nth-child(odd) { border-right: none; }
}

/* ---------- Portfolio ---------- */
.section--portfolio {
  background: var(--c-alt);
}
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.mosaic__col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mosaic__cell {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--c-accent);
  transition: transform 0.35s ease;
  display: block;
  text-align: left;
}
.mosaic__cell:hover { transform: translateY(-3px); }
.mosaic__cell .placeholder { aspect-ratio: auto; }
.mosaic__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(42,42,42,0.78), transparent);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.3s;
}
.mosaic__cell:hover .mosaic__caption { opacity: 1; }

@media (max-width: 820px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .mosaic__col { gap: 0.8rem; }
}
@media (max-width: 500px) {
  .mosaic { grid-template-columns: 1fr; }
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42,42,42,0.85);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
}
.lightbox__inner {
  position: relative;
  max-width: 640px;
  width: 100%;
  background: var(--c-page);
  padding: 14px;
  border-radius: 2px;
}
.lightbox__caption {
  text-align: center;
  padding: 14px 8px 4px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-primary);
  font-style: italic;
}
.lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  color: #fff;
  font-size: 20px;
  padding: 6px 10px;
}

/* ---------- Processo ---------- */
.section--processo { background: var(--c-page); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  position: relative;
}
.step {
  position: relative;
  padding-right: 1rem;
}
.step__num {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--c-page);
  border: 1px solid var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
}
.step__num span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--c-primary);
}
.step__t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 10px;
  color: var(--c-ink);
}
.step__d {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
}
.step__line {
  position: absolute;
  top: 36px;
  left: 72px;
  right: -1rem;
  height: 1px;
  background: var(--c-rule);
  z-index: 1;
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .step__line { display: none; }
}

/* ---------- Form ---------- */
.section--form {
  background: var(--c-alt);
  position: relative;
}
.form__wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.form__head { position: sticky; top: 120px; }
.form__lede {
  color: var(--c-muted);
  margin-top: 16px;
  font-size: 16px;
}
.form__oval {
  margin-top: 2.5rem;
  opacity: 0.9;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--c-page);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--c-rule);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  border: none;
  border-bottom: 1px solid var(--c-rule);
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  font-family: inherit;
  color: var(--c-ink);
  width: 100%;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-primary);
}
.field textarea { resize: vertical; padding: 14px 0; }
.field input::placeholder,
.field textarea::placeholder { color: #b5b5b5; }

.select {
  position: relative;
}
.select::after {
  content: "▾";
  position: absolute;
  right: 4px;
  top: 14px;
  color: var(--c-primary);
  pointer-events: none;
  font-size: 14px;
}
.select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.field--err input,
.field--err textarea,
.field--err select { border-color: #b54848; }
.field__err {
  font-size: 12px;
  color: #b54848;
  margin-top: 2px;
}

.form__sent {
  padding: 14px 18px;
  background: var(--c-accent);
  border-radius: 4px;
  font-size: 14px;
  color: var(--c-deep);
  margin: 0;
}
.form__sent a { color: var(--c-deep); text-decoration: underline; }
.form__note {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0;
}
.form__note a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .form__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form__head { position: static; }
  .form { padding: 2rem 1.5rem; }
  .form__row { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--c-ink);
  color: #c9c9c9;
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  width: 90px;
  margin-bottom: 1.4rem;
  filter: brightness(0) invert(1) opacity(0.88);
}
.footer__brand p {
  font-size: 15px;
  color: #a8a8a8;
  line-height: 1.6;
  margin: 0;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer li, .footer a { font-size: 14px; color: #a8a8a8; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: var(--c-accent); }
.footer__bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #7a7a7a;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 10px 26px -8px rgba(90,129,105,0.6), 0 0 0 6px rgba(90,129,105,0.12);
  transition: all 0.25s ease;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  background: var(--c-deep);
}
@media (max-width: 600px) {
  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}

/* ---------- Tweaks ---------- */
.tweaks {
  position: fixed;
  bottom: 92px;
  right: 22px;
  width: 280px;
  background: var(--c-page);
  border: 1px solid var(--c-rule);
  border-radius: 8px;
  padding: 20px;
  z-index: 60;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.25);
  font-size: 13px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.tweaks__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-rule);
}
.tweaks__head h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--c-ink);
}
.tweaks__head button {
  font-size: 18px;
  color: var(--c-muted);
  padding: 4px 8px;
}
.tweaks__group { margin-bottom: 18px; }
.tweaks__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.tweaks__seg {
  display: flex;
  border: 1px solid var(--c-rule);
  border-radius: 999px;
  overflow: hidden;
}
.tweaks__seg button {
  flex: 1;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--c-muted);
  transition: all 0.2s;
}
.tweaks__seg button.is-active {
  background: var(--c-primary);
  color: #fff;
}
.tweaks__palettes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tweaks__pal {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--c-rule);
  border-radius: 6px;
  font-size: 11px;
  color: var(--c-ink);
  transition: all 0.2s;
}
.tweaks__pal.is-active {
  border-color: var(--c-primary);
  background: var(--c-accent);
}
.tweaks__pal span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  display: inline-block;
}
.tweaks__pal em {
  font-style: normal;
  font-size: 11px;
  line-height: 1.2;
  flex: 1;
  text-align: left;
}

@media (max-width: 500px) {
  .tweaks { right: 10px; left: 10px; width: auto; bottom: 82px; }
}

/* ---------- scroll ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* ---------- fade-in on load ---------- */
.app { animation: fadeIn 0.5s ease; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
