/* ============ TOKENS ============ */
:root {
  /* Palette — clássico institucional */
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --ink-mute: #4a4a4a;

  --paper: #faf8f3;
  --paper-warm: #f3ede0;
  --paper-line: #e7e0cf;

  --bronze: #8b7355;
  --bronze-deep: #6b5740;
  --bronze-soft: #b59a73;

  --cream: #d4d4d4;
  --gold: #c9a961;

  --whats: #25d366;

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 12vw, 144px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5 { margin: 0; font-weight: 400; }
p { margin: 0; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

::selection { background: var(--ink); color: var(--paper); }

/* ============ ANNOUNCE ============ */
.announce {
  background: var(--ink);
  color: var(--paper-warm);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 0;
}
.announce__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
}
.announce__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,169,97,0.6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,169,97,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(201,169,97,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); }
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--paper-line); }
.nav__inner {
  display: flex; align-items: center; gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  flex: none;
}
.brand__mark--lg {
  width: 56px; height: 56px;
  font-size: 26px;
}
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name-top {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand__name-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.nav__links {
  margin-left: auto;
  display: none;
  align-items: center; gap: 28px;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__cta > .btn--ghost { display: none; }
@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__cta { margin-left: 0; }
  .nav__cta > .btn--ghost { display: inline-flex; }
}

.nav__toggle {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  position: relative;
}
.nav__toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); position: absolute;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle span:nth-child(1) { transform: translateY(-6px); }
.nav__toggle span:nth-child(3) { transform: translateY(6px); }
.nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }
@media (min-width: 880px) { .nav__toggle { display: none; } }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--pad-x) 32px;
  gap: 4px;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-line);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-line);
  font-size: 18px;
  font-family: var(--serif);
}
.nav__mobile .btn { margin-top: 16px; align-self: flex-start; }
.nav__mobile-wa {
  margin-top: 24px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px var(--bronze);
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav__mobile-wa:hover {
  background: var(--bronze-deep);
  box-shadow: inset 0 0 0 1px var(--bronze-soft);
}

.nav__backdrop {
  position: fixed; inset: 0;
  z-index: 49;
  background: rgba(15, 17, 16, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.nav__backdrop.is-open { opacity: 1; visibility: visible; }
@media (min-width: 880px) { .nav__backdrop { display: none; } }
body.nav-open { overflow: hidden; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--bronze-deep); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--text {
  padding: 14px 0;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ink);
  text-transform: none;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.01em;
}
.btn--text:hover { color: var(--bronze-deep); border-color: var(--bronze-deep); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 16px; font-size: 12px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 76px - 34px);
  padding: clamp(48px, 10vw, 120px) 0 80px;
  overflow: hidden;
  background: var(--paper);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(139,115,85,0.10), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(26,26,26,0.04), transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(26,26,26,0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(26,26,26,0.04) 95%);
  background-size: 80px 80px;
  opacity: .5;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}
.hero__inner { position: relative; z-index: 1; }
.hero__meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.hero__meta .rule { flex: none; }
.hero__estab { line-height: 1.5; white-space: nowrap; }
@media (min-width: 540px) {
  .hero__meta { font-size: 12px; letter-spacing: 0.18em; gap: 14px; }
}
.rule { display: inline-block; width: 48px; height: 1px; background: var(--bronze); }
.rule--light { background: rgba(212,212,212,0.4); }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 9vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  text-wrap: balance;
}
.hero__line { display: block; }
.hero__line--italic {
  font-style: italic;
  font-weight: 300;
  color: var(--bronze-deep);
}
.hero__line--small {
  font-size: 0.7em;
  font-weight: 300;
  color: var(--ink-mute);
}

.hero__lede {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 40px;
  font-weight: 400;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex; flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: clamp(56px, 10vw, 120px);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  padding-top: 40px;
  border-top: 1px solid var(--paper-line);
  max-width: 920px;
}
@media (min-width: 720px) {
  .hero__facts { grid-template-columns: repeat(4, 1fr); }
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact__num {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.fact__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-wrap: balance;
}

.hero__scroll {
  position: absolute;
  bottom: 24px; right: var(--pad-x);
  display: none;
  flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink-mute);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
  animation: scrollline 2s var(--ease) infinite;
}
@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (min-width: 1100px) { .hero__scroll { display: flex; } }

/* ============ QUOTE ============ */
.quote {
  background: var(--paper-warm);
  padding: clamp(64px, 10vw, 120px) 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}
.quote__text {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ink);
  max-width: 980px;
  letter-spacing: -0.01em;
  text-wrap: balance;
  position: relative;
}
.quote__mark {
  font-size: 1.4em;
  color: var(--bronze);
  font-style: italic;
  margin-right: 6px;
}
.quote__attr {
  margin-top: 24px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ SECTION HEAD ============ */
.section-head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
}
.section-head--center {
  margin-left: auto; margin-right: auto;
  text-align: center; align-items: center;
}
.eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
}
.eyebrow--light { color: var(--bronze-soft); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--bronze-deep); font-weight: 300; }
.section-title--light { color: var(--paper); }
.section-title--light em { color: var(--gold); }
.section-lede {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-mute);
  text-wrap: pretty;
  max-width: 620px;
  font-weight: 400;
}

/* ============ AREAS ============ */
.areas { padding: var(--section-y) 0; }
.areas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--paper-line);
}
@media (min-width: 720px) {
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .areas__grid { grid-template-columns: repeat(4, 1fr); }
}
.area {
  position: relative;
  padding: 36px 28px 36px 0;
  border-bottom: 1px solid var(--paper-line);
  transition: background .3s var(--ease);
}
@media (min-width: 720px) {
  .area { padding: 44px 28px; border-right: 1px solid var(--paper-line); }
  .area:nth-child(2n) { border-right: none; }
}
@media (min-width: 1080px) {
  .area:nth-child(2n) { border-right: 1px solid var(--paper-line); }
  .area:nth-child(4n) { border-right: none; }
}
.area:hover { background: var(--paper-warm); }
.area__num {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--bronze);
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.area__name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.area__desc {
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.area__link {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.area__link span { transition: transform .25s var(--ease); }
.area__link:hover { color: var(--bronze-deep); border-bottom-color: var(--bronze); }
.area__link:hover span { transform: translateX(4px); }

.area--cta {
  background: var(--ink);
  color: var(--paper);
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
}
.area--cta:hover { background: var(--ink-soft); }
.area--cta .area__name { color: var(--paper); }
.area--cta .area__desc { color: rgba(250,248,243,0.72); }

/* ============ APPROACH ============ */
.approach {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}
.approach__head { margin-bottom: clamp(56px, 8vw, 96px); max-width: 800px; }
.approach__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 880px) {
  .approach__cols { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.pillar {
  border-top: 1px solid rgba(212,212,212,0.18);
  padding-top: 32px;
  position: relative;
}
.pillar__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--bronze);
  color: var(--bronze-soft);
  margin-bottom: 28px;
}
.pillar__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.pillar__text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250,248,243,0.78);
  margin-bottom: 28px;
  font-weight: 300;
  text-wrap: pretty;
}
.pillar__list {
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14.5px;
  color: rgba(250,248,243,0.7);
  line-height: 1.5;
}
.pillar__list li {
  position: relative;
  padding-left: 22px;
}
.pillar__list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--bronze);
}
.approach__note {
  display: flex; align-items: center; gap: 16px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,212,212,0.12);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(250,248,243,0.65);
  font-weight: 300;
  text-wrap: pretty;
}

/* ============ METHOD ============ */
.method { padding: var(--section-y) 0; background: var(--paper); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--paper-line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--paper-line); }
@media (min-width: 720px) {
  .step { grid-template-columns: 200px 1fr; gap: 56px; padding: 44px 0; }
}
.step__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--bronze);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.step__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step__body p {
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.65;
  max-width: 680px;
  text-wrap: pretty;
}

/* ============ TEAM ============ */
.team {
  padding: var(--section-y) 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-line);
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 720px) { .team__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.member__photo {
  aspect-ratio: 4 / 5;
  background: var(--paper);
  margin-bottom: 24px;
  overflow: hidden;
}
.placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(139,115,85,0.05) 12px 13px),
    var(--paper);
  border: 1px solid var(--paper-line);
  position: relative;
}
.placeholder__label {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--bronze);
  text-transform: lowercase;
  background: var(--paper);
  padding: 4px 10px;
  border: 1px solid var(--paper-line);
}
.member__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.member__role {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 16px;
}
.member__bio {
  font-size: 14.5px;
  color: var(--ink-mute);
  line-height: 1.6;
  text-wrap: pretty;
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* ============ FOUNDER (single titular) ============ */
.founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 820px) {
  .founder {
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 64px;
  }
}
.founder__photo {
  aspect-ratio: 4 / 5;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.founder__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--paper-line);
  pointer-events: none;
}
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: grayscale(1) sepia(0.45) hue-rotate(-8deg) contrast(1.05);
}
.founder__body { padding-top: 8px; }
.founder__eyebrow {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  display: inline-block;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--paper-line);
}
.founder__name {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.founder__role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 24px;
}
.founder__bio {
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.7;
  text-wrap: pretty;
  margin-bottom: 32px;
  max-width: 56ch;
}
.founder__facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--paper-line);
}
@media (min-width: 600px) {
  .founder__facts { grid-template-columns: repeat(3, 1fr); }
}
.founder__facts li {
  padding: 16px 0;
  border-bottom: 1px solid var(--paper-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 600px) {
  .founder__facts li {
    padding: 18px 20px 18px 0;
    border-bottom: none;
  }
  .founder__facts li + li {
    padding-left: 24px;
    border-left: 1px solid var(--paper-line);
  }
}
.founder__fact-label {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}
.founder__fact-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* ============ TESTIMONIALS ============ */
.testi { padding: var(--section-y) 0; background: var(--paper); }
.testi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) { .testi__grid { grid-template-columns: repeat(3, 1fr); } }
.testi__card {
  margin: 0;
  background: var(--paper-warm);
  padding: 36px 32px;
  border: 1px solid var(--paper-line);
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
}
.testi__card::before {
  content: '"';
  position: absolute; top: 12px; right: 24px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--bronze-soft);
  font-weight: 400;
}
.testi__card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  text-wrap: pretty;
  font-style: italic;
}
.testi__card figcaption {
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--paper-line);
  padding-top: 18px;
  margin-top: auto;
}
.testi__name { font-size: 14px; font-weight: 500; color: var(--ink); }
.testi__case {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bronze-deep);
}

/* ============ FAQ ============ */
.faq { padding: var(--section-y) 0; background: var(--paper-warm); border-top: 1px solid var(--paper-line); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1000px) {
  .faq__inner { grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
  .faq .section-head { position: sticky; top: 100px; }
}
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-top: 1px solid var(--paper-line);
  padding: 4px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--paper-line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .2s var(--ease);
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  position: absolute; right: 6px; top: 50%;
  width: 14px; height: 14px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item:hover summary { color: var(--bronze-deep); }
.faq__body {
  padding: 0 40px 24px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 720px;
  text-wrap: pretty;
}
.faq__item[open] .faq__body { animation: fadein .4s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ============ CONTACT ============ */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 20% 10%, rgba(139,115,85,0.16), transparent 70%),
    radial-gradient(40% 50% at 90% 90%, rgba(201,169,97,0.06), transparent 70%);
  pointer-events: none;
}
.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 980px) {
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.contact__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 24px;
  margin-top: 16px;
  text-wrap: balance;
}
.contact__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.contact__lede {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(250,248,243,0.7);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
  text-wrap: pretty;
}
.contact__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  border-top: 1px solid rgba(212,212,212,0.16);
  padding-top: 32px;
}
.contact__channels li { display: flex; flex-direction: column; gap: 6px; }
.contact__label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze-soft);
}
.contact__value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--paper);
  line-height: 1.4;
  font-weight: 400;
}

.contact__form {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid rgba(212,212,212,0.2);
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  font: inherit;
  font-size: 15px;
  padding: 12px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--paper-line);
  color: var(--ink);
  transition: border-color .2s var(--ease);
  border-radius: 0;
  outline: none;
  font-family: var(--sans);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--ink);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%231a1a1a' stroke-width='1.4'><path d='M1 1l4 4 4-4'/></svg>");
  background-position: right 4px center;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  padding-right: 22px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 80px; line-height: 1.5; padding-top: 12px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 540px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-row--3 {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px 12px;
}

.field__suggest {
  background: none;
  border: none;
  padding: 0;
  color: var(--bronze-deep);
  font: inherit;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}
.field__suggest:hover { color: var(--ink); }

.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 12px; line-height: 1.5; color: var(--ink-mute);
  margin-top: 4px;
}
.check input { margin-top: 3px; accent-color: var(--ink); flex: none; }
.check a { text-decoration: underline; color: var(--ink); }

.contact__or {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 14px;
  margin: 4px 0;
}

/* ============ FOOTER ============ */
.foot {
  background: #0e0e0e;
  color: rgba(250,248,243,0.7);
  padding-top: clamp(64px, 8vw, 96px);
}
.foot__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (min-width: 880px) { .foot__inner { grid-template-columns: 1.2fr 2fr; gap: 80px; } }
.foot__brand .brand__mark {
  border-color: var(--bronze-soft);
  color: var(--paper);
  margin-bottom: 20px;
}
.foot__name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}
.foot__name span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  font-weight: 400;
  display: inline-block;
  margin-top: 6px;
}
.foot__manifesto {
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 380px;
  color: rgba(250,248,243,0.45);
  text-wrap: pretty;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (min-width: 600px) { .foot__cols { grid-template-columns: repeat(3, 1fr); } }
.foot__cols h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot__cols ul { display: flex; flex-direction: column; gap: 10px; }
.foot__cols a { font-size: 14px; transition: color .2s var(--ease); }
.foot__cols a:hover { color: var(--paper); }
.foot__cols li { font-size: 14px; }
.foot__base { border-top: 1px solid rgba(250,248,243,0.08); padding: 24px 0; }
.foot__base-inner {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(250,248,243,0.4);
}

/* ============ POLICY (Política de Privacidade) ============ */
.policy { padding: clamp(48px, 8vw, 96px) 0 clamp(72px, 10vw, 120px); background: var(--paper); }
.policy__inner {
  max-width: 820px;
  margin: 0 auto;
}
.policy__head { margin-bottom: clamp(40px, 6vw, 64px); padding-bottom: 32px; border-bottom: 1px solid var(--paper-line); }
.policy__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 12px 0 20px;
  color: var(--ink);
}
.policy__lede {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.policy__updated {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.policy__section { margin-bottom: 40px; scroll-margin-top: 100px; }
.policy__section h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--ink);
}
.policy__section h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
  margin: 22px 0 10px;
}
.policy__section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 12px;
  text-wrap: pretty;
}
.policy__section a { color: var(--bronze-deep); text-decoration: underline; text-underline-offset: 2px; }
.policy__section a:hover { color: var(--ink); }
.policy__data, .policy__list {
  margin: 8px 0 16px;
  padding-left: 0;
}
.policy__data li, .policy__list li {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  text-wrap: pretty;
}
.policy__data li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1px;
  background: var(--bronze);
}
.policy__list { counter-reset: pol; }
.policy__list li::before {
  counter-increment: pol;
  content: counter(pol) ".";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
  font-size: 15px;
}
.policy__note {
  font-size: 14px;
  font-style: italic;
  color: var(--ink-mute);
  border-left: 2px solid var(--bronze);
  padding: 8px 0 8px 16px;
  margin: 14px 0 8px;
  background: var(--paper-warm);
  padding-right: 16px;
}
.policy__foot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--paper-line);
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.policy__foot a { color: var(--bronze-deep); text-decoration: none; border-bottom: 1px solid var(--bronze); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px 0;
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.cookie-banner.is-shown { transform: none; }
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 820px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; gap: 32px; }
}
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__text strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  text-wrap: pretty;
}
.cookie-banner__text a { color: var(--bronze-deep); border-bottom: 1px solid var(--bronze); }
.cookie-banner__text a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: none;
}
.cookie-banner__btn {
  padding: 11px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  font-family: var(--sans);
}
.cookie-banner__btn--solid {
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
}
.cookie-banner__btn--solid:hover { background: var(--bronze-deep); border-color: var(--bronze-deep); }
.cookie-banner__btn--ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.cookie-banner__btn--ghost:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 540px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; padding: 12px 14px; }
}

/* ============ TOAST ============ */
#toast-root {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}
.toast {
  pointer-events: auto;
  display: flex; align-items: flex-start; gap: 14px;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 16px 14px 18px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-left: 3px solid var(--bronze);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  transform: translateX(420px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.toast.is-shown { transform: none; opacity: 1; }
.toast.is-leaving { transform: translateX(420px); opacity: 0; }
.toast--ok { border-left-color: #2d4a3e; }
.toast--err { border-left-color: #b94c4c; }
.toast__icon {
  flex: none;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  margin-top: 1px;
}
.toast--ok .toast__icon { background: #e6efe9; color: #2d4a3e; }
.toast--err .toast__icon { background: #fdecec; color: #b94c4c; }
.toast__body {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.toast__title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.toast__text {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.toast__close {
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-mute);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.toast__close:hover { background: var(--paper-warm); color: var(--ink); }
@media (max-width: 540px) {
  #toast-root { top: 12px; right: 12px; left: 12px; }
  .toast { min-width: 0; max-width: none; }
}

/* ============ FLOATING WHATSAPP ============ */
.wa {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 48;
  display: inline-flex; align-items: center; gap: 0;
  background: var(--whats);
  color: white;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(37,211,102,0.28), 0 4px 12px rgba(0,0,0,0.18);
  transition: padding .3s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  overflow: hidden;
}
.wa:hover {
  padding: 14px 20px 14px 14px;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37,211,102,0.36), 0 6px 16px rgba(0,0,0,0.24);
}
.wa::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 999px;
  background: var(--whats);
  opacity: 0.3;
  z-index: -1;
  animation: waPulse 2.4s var(--ease) infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: max-width .3s var(--ease), margin-left .3s var(--ease);
  margin-left: 0;
}
.wa:hover .wa__label { max-width: 140px; margin-left: 10px; }

@media (min-width: 720px) {
  .wa { right: 28px; bottom: 28px; padding: 16px; }
  .wa__label { font-size: 14px; }
}

/* ============ SCHEDULE MODAL ============ */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 12px;
  animation: modalIn .35s var(--ease);
  overflow-y: auto;
}
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--paper-line);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: modalUp .45s var(--ease);
  max-height: calc(100vh - 24px);
  overflow: hidden;
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@media (min-width: 720px) {
  .modal__panel { grid-template-columns: 48px 1fr; grid-template-rows: 1fr auto; }
  .modal__rail { grid-row: 1 / span 2; }
}

.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  font-size: 24px; line-height: 1;
  color: var(--ink-mute);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--paper-warm); color: var(--ink); }

.modal__rail {
  display: none;
  background: var(--ink);
  color: var(--bronze-soft);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (min-width: 720px) { .modal__rail { display: flex; } }
.modal__rail-mark {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.04em;
  writing-mode: horizontal-tb;
  border: 1px solid var(--bronze);
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--paper);
}
.modal__rail-text {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.modal__body {
  display: flex; flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 24px);
}

.modal__head {
  padding: 20px 24px 14px;
  border-bottom: 1px solid var(--paper-line);
}
@media (min-width: 720px) { .modal__head { padding: 22px 32px 14px; } }

.modal__eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
}
.modal__title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.modal__progress {
  display: flex; gap: 6px;
  margin-top: 14px;
}
.modal__dot {
  width: 24px; height: 2px;
  background: var(--paper-line);
  transition: background .3s var(--ease);
}
.modal__dot.is-active { background: var(--ink); }

.modal__content {
  padding: 18px 24px;
  flex: 1;
  overflow-y: auto;
}
@media (min-width: 720px) { .modal__content { padding: 20px 32px; } }
.modal__content--center {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px;
}

.modal__lede {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.modal__summary {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--paper-warm);
  padding: 10px 14px;
  margin-bottom: 16px;
  border-left: 2px solid var(--bronze);
  font-size: 13px;
}
.field--invalid input { border-bottom-color: #b94c4c !important; }
.field__error {
  font-size: 11px;
  color: #b94c4c;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.field__hint {
  font-size: 11px;
  color: var(--bronze-deep);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.modal__summary strong {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
  margin-right: 8px;
}

.modal__legal {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-top: 12px;
  text-wrap: pretty;
}

.modal__error {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fdecec;
  border-left: 2px solid #b94c4c;
  color: #7a2c2c;
  font-size: 13px;
  line-height: 1.45;
}

.modal__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  border-top: 1px solid var(--paper-line);
  background: var(--paper-warm);
  gap: 16px;
  position: sticky;
  bottom: 0;
}
@media (min-width: 720px) { .modal__foot { padding: 14px 32px; } }
.modal__foot .btn { padding: 11px 18px; font-size: 12px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn--text-sm { font-size: 12px; letter-spacing: 0.08em; padding: 8px 0; }

/* Calendar */
.cal { user-select: none; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.cal__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cal__nav {
  width: 32px; height: 32px;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--ink);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.cal__nav:hover:not(:disabled) { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cal__nav:disabled { opacity: 0.3; cursor: not-allowed; }
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal__grid--days { margin-bottom: 4px; }
.cal__dow {
  font-size: 11px;
  text-align: center;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  padding: 6px 0;
  font-weight: 500;
}
.cal__cell {
  aspect-ratio: 1.4;
  font-size: 13px;
  font-family: var(--sans);
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink);
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
  display: grid; place-items: center;
  border-radius: 2px;
}
.cal__cell:hover:not(:disabled):not(.is-selected) {
  background: var(--paper-warm);
  border-color: var(--paper-line);
}
.cal__cell.is-disabled, .cal__cell:disabled {
  color: rgba(74,74,74,0.25);
  cursor: not-allowed;
}
.cal__cell--empty { pointer-events: none; }
.cal__cell.is-today { color: var(--bronze-deep); font-weight: 600; }
.cal__cell.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  font-weight: 500;
}
.cal__note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--serif);
}

/* Time slots */
.slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 540px) { .slots { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .slots { grid-template-columns: repeat(4, 1fr); } }
.slot {
  padding: 10px 6px;
  border: 1px solid var(--paper-line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 500;
  display: flex; flex-direction: column; gap: 1px; align-items: center;
  transition: all .2s var(--ease);
  border-radius: 2px;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.slot:hover:not(:disabled):not(.is-selected) {
  border-color: var(--ink);
  background: var(--paper-warm);
}
.slot.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.slot.is-busy {
  color: rgba(74,74,74,0.4);
  cursor: not-allowed;
  text-decoration: line-through;
  background: transparent;
  border-style: dashed;
}
.slot em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-decoration: none;
}

/* Modal form fields use shared .field styles but need ink color */
.modal .field input,
.modal .field textarea,
.modal .field select {
  border-bottom-color: var(--paper-line);
}
.modal .field input:focus,
.modal .field textarea:focus,
.modal .field select:focus {
  border-bottom-color: var(--ink);
}
.modal .field { margin-bottom: 4px; }
.modal .field-row { margin-bottom: 4px; }

/* Confirmation */
.confirm__seal {
  width: 64px; height: 64px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--bronze-deep);
  margin-bottom: 8px;
  animation: sealIn .6s var(--ease) .1s both;
}
@keyframes sealIn {
  from { opacity: 0; transform: scale(0.6) rotate(-12deg); }
  to { opacity: 1; transform: none; }
}
.confirm__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.confirm__lede {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 480px;
  text-wrap: pretty;
}
.confirm__card {
  width: 100%;
  background: var(--paper-warm);
  border: 1px solid var(--paper-line);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
  margin: 8px 0 16px;
}
.confirm__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--paper-line);
}
@media (min-width: 540px) { .confirm__row { grid-template-columns: 110px 1fr; gap: 12px; align-items: baseline; } }
.confirm__row:last-child { border-bottom: none; padding-bottom: 0; }
.confirm__label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bronze-deep);
  font-weight: 500;
}
.confirm__val {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  word-break: break-all;
}
.confirm__link { color: var(--bronze-deep); text-decoration: underline; text-underline-offset: 2px; }
.confirm__mono {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.confirm__actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.confirm__note {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--serif);
  margin-top: 8px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
