/* ===================================================================
   Andréia Ishihara — Personal Organizer
   Design: nude/terracotta + white. Fundo majoritariamente branco, com
   um único acento — um terracota "cor de pele" quente — usado em
   texto de destaque, botões e na faixa Hara Organizadores. --ink e
   --ink-soft são a mesma família de matiz (quente, terroso) em baixa
   luminosidade, para o texto continuar acessível sobre branco.
   Every text/background pairing below is checked to WCAG AA
   (4.5:1 body, 3:1 large text/UI).
   Type: Outfit (display, sans) + Karla (body). One radius rule:
   buttons/pills = full radius, everything else = 20px — arredondado
   de propósito para uma leitura mais leve e menos "quadrada".
   =================================================================== */

:root {
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;

  --bg: #ffffff; /* white — page background */
  --surface: #ffffff; /* white — cards, distinguished by border + shadow only */
  --surface-muted: #f7efe8; /* faint nude tint — zebra sections only */
  --ink: #35261d; /* warm near-black, terracotta family — 14.5:1 on white */
  --ink-soft: #624737; /* warm brown — secondary text, 8.5:1 on white */
  --ink-faint: #624737;
  --border: #caa891; /* soft nude, lightened for a white ground */
  --accent: #8f5832; /* terracota "cor de pele" — 5.8:1 on white */
  --accent-strong: #6b4024;
  --accent-contrast: #ffffff;
  --accent-soft: #f1ddd0; /* pale nude tint (badges/soft fills) */

  /* Dedicated tokens for large color-block sections (e.g. Hara band),
     kept separate from --accent so dark mode doesn't turn a whole
     section into a bright fill just because --accent gets lighter. */
  --band: #37251b;
  --band-contrast: #f7f2ed;

  --radius-sharp: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(53, 38, 29, 0.08);
  --shadow-md: 0 16px 36px -18px rgba(53, 38, 29, 0.35);

  --maxw: 1200px;
  --maxw-narrow: 760px;

  --section-pad: clamp(4.5rem, 3.6rem + 4vw, 7.5rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #281d15;
    --surface: #34271d;
    --surface-muted: #403026;
    --ink: #f5efea;
    --ink-soft: #d3c5bb;
    --ink-faint: #d3c5bb;
    --border: #5d493c;
    --accent: #daa781;
    --accent-strong: #e8c8b0;
    --accent-contrast: #281d15;
    --accent-soft: #4e3a2c;
    --shadow-md: 0 16px 36px -18px rgba(0, 0, 0, 0.6);

    --band: #17110c;
    --band-contrast: #f4efeb;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.75rem, 1.5rem + 1.4vw, 2.5rem);
  font-weight: 400;
}

h3 {
  font-size: 1.15rem;
  font-weight: 500;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 1rem + 2vw, 2.5rem);
}

.wrap--narrow {
  max-width: var(--maxw-narrow);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sharp) 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Utility ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.85rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

.section-head__sub {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.link-inline {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

@media (prefers-color-scheme: dark) {
  .link-inline {
    color: var(--accent-strong);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  border: 1px solid var(--accent);
}

.btn--primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--small {
  padding: 0.7rem 1.35rem;
  font-size: 0.76rem;
}

.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--accent-strong);
  white-space: nowrap;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.5rem + 1.5vw, 1.9rem);
}

.nav__list a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.nav__list a:hover {
  color: var(--accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 1.25rem clamp(1.25rem, 1rem + 2vw, 2.5rem) 1.75rem;
  background: var(--bg);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.mobile-nav__list a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--ink);
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 1023px) {
  .nav,
  .site-header__actions {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  padding-bottom: clamp(3rem, 2.5rem + 2vw, 5rem);
  background: var(--surface-muted);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.25rem, 1.7rem + 2.4vw, 3.4rem);
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.hero__subtitle {
  margin-top: 1.5rem;
  max-width: 42ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.hero__meta {
  margin-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.hero__media {
  position: relative;
  max-width: 20rem;
  margin-inline: auto;
}

@media (min-width: 901px) {
  .hero__media {
    max-width: none;
    margin-inline: 0;
  }
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sharp);
  background: var(--surface);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video frame mirrors .photo-frame but keeps the video's own portrait
   ratio (it's a real vertical clip) instead of forcing a 4:5 crop —
   showing it whole, not stretched or awkwardly cut, is the point. */
.video-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sharp);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.video-frame--hero {
  aspect-ratio: 480 / 704;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-note {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: var(--ink-faint);
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 901px) {
  .photo-note {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
}

/* ---------- Pains ---------- */
.pains {
  background: var(--surface-muted);
  padding-block: var(--section-pad);
}

.pains__inner {
  max-width: 44rem;
  text-align: center;
  margin-inline: auto;
}

.pains__lead {
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.pains__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pains__list li {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 400;
  line-height: 1.3;
}

.pains__resolve {
  max-width: 38rem;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- Services ---------- */
.services {
  padding-block: var(--section-pad);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  font-size: 1.15rem;
  color: var(--accent-strong);
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- About ---------- */
.about {
  padding-block: var(--section-pad);
  background: var(--surface-muted);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  align-items: stretch;
}

/* On desktop the text column runs much taller than a fixed 4:5 crop, so
   the portrait stretches to match the text's own height instead of
   leaving a short photo beside a tall column. */
@media (min-width: 901px) {
  .photo-frame--portrait {
    aspect-ratio: auto;
    height: 100%;
    min-height: 28rem;
  }
}

.about__content .eyebrow {
  margin-bottom: 0.6rem;
}

.about__content h2 {
  margin-bottom: 1.4rem;
}

.about__pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--accent);
  max-width: 30ch;
  margin-bottom: 1.75rem;
  padding-bottom: 0.2rem; /* descender clearance for italic */
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 62ch;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 2rem;
}

.chip-list li {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .photo-frame--portrait {
    max-width: 22rem;
  }
}

/* ---------- Hara Organizadores ---------- */
.hara {
  padding-block: var(--section-pad);
  background: var(--band);
  color: var(--band-contrast);
}

.hara__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  row-gap: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.hara__intro {
  grid-column: 1;
  grid-row: 1;
}

.photo-frame--hara {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  height: 100%;
  min-height: 20rem;
  border-radius: var(--radius-sharp);
}

.photo-frame--hara img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hara h2 {
  color: var(--band-contrast);
  font-size: clamp(1.9rem, 1.6rem + 1.4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.hara__lead {
  font-size: 1.1rem;
  max-width: 44ch;
  margin-bottom: 1.1rem;
  color: color-mix(in srgb, var(--band-contrast) 92%, transparent);
}

.hara__intro p {
  color: color-mix(in srgb, var(--band-contrast) 78%, transparent);
  line-height: 1.75;
  max-width: 56ch;
}

.hara__intro p + p {
  margin-top: 1.1rem;
}

.hara__cta-note {
  margin-top: 1.75rem !important;
  font-size: 0.92rem;
}

.hara__cta-note .link-inline {
  color: var(--band-contrast);
}

.hara__tiles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hara__tile {
  border: 1px solid color-mix(in srgb, var(--band-contrast) 22%, transparent);
  padding: 1.75rem;
  border-radius: var(--radius-sharp);
}

.hara__tile h3 {
  color: var(--band-contrast);
  margin: 0.9rem 0 0.6rem;
}

.hara__tile p {
  color: color-mix(in srgb, var(--band-contrast) 74%, transparent);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card__icon--light {
  color: var(--band-contrast);
}

@media (max-width: 900px) {
  .hara__inner {
    grid-template-columns: 1fr;
  }
  .hara__intro {
    grid-column: 1;
    grid-row: 1;
  }
  .photo-frame--hara {
    grid-column: 1;
    grid-row: 2;
    min-height: 16rem;
    max-width: 26rem;
  }
  .hara__tiles {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
}

/* ---------- Process / timeline ---------- */
.process {
  padding-block: var(--section-pad);
}

.process__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 2rem + 3vw, 4rem);
}

.process__intro h2 {
  margin-bottom: 1.1rem;
  max-width: 16ch;
}

.process__intro p {
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 34ch;
}

.timeline {
  border-left: 1px solid var(--border);
}

.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 2.25rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline__number {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.timeline__item h3 {
  margin-bottom: 0.4rem;
}

.timeline__item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 40ch;
}

@media (max-width: 900px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Works ---------- */
.works {
  padding-block: var(--section-pad);
  background: var(--surface-muted);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.works__item {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  border-radius: var(--radius-sharp);
  overflow: hidden;
}

.works__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.works__item:hover img {
  transform: scale(1.04);
}

.works__tag {
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  color: var(--bg);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
}

.works__note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

@media (max-width: 640px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 85vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sharp);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.75rem;
  display: inline-flex;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox__nav--prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding-block: var(--section-pad);
}

.testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.testimonial-card {
  margin: 0;
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__icon {
  font-size: 1.4rem;
  color: var(--accent);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ---------- FAQ ---------- */
.faq {
  padding-block: var(--section-pad);
  background: var(--surface-muted);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__item:first-child {
  border-top: 1px solid var(--border);
}

.accordion__item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0.1rem;
  text-align: left;
}

.accordion__icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--accent);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__panel {
  padding: 0 0.1rem 1.35rem;
}

.accordion__panel p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 58ch;
}

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--section-pad);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}

.contact__lead {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 34ch;
}

.contact__channels {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact__channel-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.2rem;
}

.contact__channels a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.contact__channels a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

.field__optional {
  color: var(--ink-faint);
  font-weight: 400;
}

.field input,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  background: var(--bg);
  color: var(--ink);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.field__error {
  min-height: 1.1em;
  font-size: 0.78rem;
  color: #b3492f;
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .field__error {
    color: #e08a6f;
  }
}

.field.has-error input,
.field.has-error textarea {
  border-color: #b3492f;
}

.contact__form-note {
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0;
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--accent-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 2.75rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__brand p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-footer__brand .brand__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__social {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.site-footer__social:hover {
  color: var(--accent);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
