/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

:root {
  --bg: #EDE7DB;
  --bg-soft: #F5F0E5;
  --bg-card: #FAF6EC;
  --ink: #1A1A17;
  --ink-soft: #3A3A33;
  --muted: #75756B;
  --line: rgba(26, 26, 23, 0.12);
  --sage: #6F7E5E;
  --sage-deep: #4F5C44;
  --sage-light: #A4B097;
  --cream: #E8DFCB;
  --dark: #20221C;
  --shadow: 0 30px 60px -20px rgba(26, 26, 23, 0.15);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 18px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: clip;
  letter-spacing: -0.005em;
}

/* ----- Grain texture overlay ----- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ----- Reveal animations ----- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ----- Nav ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad);
  background: rgba(237, 231, 219, 0.65);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.nav.is-scrolled {
  padding: 14px var(--pad);
  border-bottom-color: var(--line);
  background: rgba(237, 231, 219, 0.85);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
}
.nav__brand-mark {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage); color: var(--bg);
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
}
.nav__links {
  display: flex; gap: 32px;
  font-size: 14px; letter-spacing: 0.02em;
}
.nav__links a {
  position: relative; padding: 6px 0; color: var(--ink-soft);
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--sage); transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
@media (max-width: 720px) { .nav__links { display: none; } }

/* ----- Language toggle ----- */
.lang-toggle {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 4px; border-radius: 999px;
  background: rgba(26, 26, 23, 0.06);
  border: 1px solid var(--line);
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
}
.lang-toggle__pill {
  position: absolute; top: 4px; left: 4px;
  width: calc(50% - 4px); height: calc(100% - 8px);
  background: var(--ink); border-radius: 999px;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.lang-toggle[data-active="en"] .lang-toggle__pill { transform: translateX(100%); }
.lang-toggle__option {
  position: relative; z-index: 1;
  padding: 6px 14px; min-width: 38px; text-align: center;
  color: var(--ink-soft); transition: color 0.4s ease;
}
.lang-toggle[data-active="es"] .lang-toggle__option[data-lang="es"],
.lang-toggle[data-active="en"] .lang-toggle__option[data-lang="en"] { color: var(--bg); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.btn--lg { padding: 18px 34px; font-size: 15px; }
.btn--primary {
  background: var(--ink); color: var(--bg);
}
.btn--primary:hover {
  background: var(--sage-deep); transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(79, 92, 68, 0.55);
}
.btn--ghost {
  border-color: var(--line); color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink); background: var(--ink); color: var(--bg);
  transform: translateY(-2px);
}

/* ----- Sections shared ----- */
section { padding: clamp(80px, 12vw, 160px) var(--pad); }
.section__head { max-width: var(--container); margin: 0 auto clamp(40px, 6vw, 80px); }
.section__eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 6vw, 76px); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--ink);
  max-width: 14ch;
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh; padding-top: clamp(140px, 18vh, 200px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero__inner { max-width: var(--container); margin: 0 auto; width: 100%; }
.hero__eyebrow {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(54px, 10vw, 148px); line-height: 0.96;
  letter-spacing: -0.035em; margin-bottom: 36px;
}
.hero__title span { display: block; }
.hero__title-accent {
  font-style: italic; font-weight: 300; color: var(--sage-deep);
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55;
  color: var(--ink-soft); max-width: 56ch; margin-bottom: 44px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(60px, 8vw, 100px); max-width: var(--container); width: 100%;
  margin-left: auto; margin-right: auto;
  font-size: 13px; letter-spacing: 0.06em; color: var(--muted);
  text-transform: uppercase;
}
.hero__meta-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
}
.hero__scroll {
  position: absolute; right: var(--pad); bottom: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px; height: 50px; background: var(--ink);
  transform-origin: top; animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ----- Marquee ----- */
.marquee {
  padding: 26px 0 !important;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; background: var(--bg-soft);
}
.marquee__track {
  display: flex; align-items: center; gap: 40px;
  white-space: nowrap; width: max-content;
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 38px);
  font-style: italic; font-weight: 300; letter-spacing: -0.01em;
  animation: marquee 28s linear infinite;
}
.marquee__dot { color: var(--sage); font-style: normal; font-size: 0.5em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Services / Pillars ----- */
.services { background: var(--bg); }
.pillars {
  max-width: var(--container); margin: 0 auto;
  border-top: 1px solid var(--line);
}
.pillar {
  display: grid; grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) {
  .pillar { grid-template-columns: 1fr; gap: 20px; }
}
.pillar__aside { display: flex; flex-direction: column; gap: 14px; }
.pillar__num {
  font-family: var(--font-display); font-size: 14px;
  color: var(--sage-deep); letter-spacing: 0.04em;
}
.pillar__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 50px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--ink);
}
.pillar__lead {
  font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-soft);
  max-width: 50ch; margin-bottom: 26px;
}
.pillar__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
}
@media (max-width: 520px) { .pillar__list { grid-template-columns: 1fr; } }
.pillar__list li {
  display: flex; align-items: center; gap: 11px;
  font-size: 14px; color: var(--ink-soft);
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.pillar__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage); flex: none;
}

/* Identity examples (Karteria / Fastfin) */
.pillar__examples { margin-top: 34px; }
.pillar__examples-label {
  display: block; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.identity-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 480px;
}
@media (max-width: 480px) { .identity-grid { grid-template-columns: 1fr; } }
.identity-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-card);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.identity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.identity-card__mark {
  position: relative; height: 128px;
  display: grid; place-items: center;
}
.identity-card[data-brand="karteria"] .identity-card__mark {
  background: linear-gradient(150deg, #6F7E5E 0%, #4F5C44 100%);
}
.identity-card[data-brand="fastfin"] .identity-card__mark {
  background: linear-gradient(150deg, #C2C9A8 0%, #6F7E5E 100%);
}
.identity-card__monogram {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 64px; color: rgba(255, 255, 255, 0.92); letter-spacing: -0.02em;
}
.identity-card__swatches {
  position: absolute; left: 16px; bottom: 14px;
  display: flex; gap: 5px;
}
.identity-card__swatches i {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.identity-card[data-brand="karteria"] .identity-card__swatches i:nth-child(1) { background: #EDE7DB; }
.identity-card[data-brand="karteria"] .identity-card__swatches i:nth-child(2) { background: #A4B097; }
.identity-card[data-brand="karteria"] .identity-card__swatches i:nth-child(3) { background: #20221C; }
.identity-card[data-brand="fastfin"] .identity-card__swatches i:nth-child(1) { background: #FAF6EC; }
.identity-card[data-brand="fastfin"] .identity-card__swatches i:nth-child(2) { background: #4F5C44; }
.identity-card[data-brand="fastfin"] .identity-card__swatches i:nth-child(3) { background: #1A1A17; }
.identity-card__meta {
  padding: 14px 16px; display: flex; flex-direction: column; gap: 3px;
}
.identity-card__name {
  font-family: var(--font-display); font-size: 19px; letter-spacing: -0.01em;
}
.identity-card__tag {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ----- Momento Gio (sticky scroll narrative) ----- */
.momento {
  position: relative; height: 420vh;
  padding: 0; background: var(--dark); color: var(--bg);
}
.momento__sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding: 96px var(--pad) 56px;
}
.momento__stage {
  position: relative; width: 100%; max-width: 1000px; flex: 1;
  display: flex; align-items: center; justify-content: center;
}
.momento__step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  opacity: 0; transform: translateY(46px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.momento__step.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.momento__tag {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage-light); margin-bottom: 26px;
}
.momento__quote {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(34px, 6vw, 88px); line-height: 1.08;
  letter-spacing: -0.025em; color: var(--bg); max-width: 17ch;
}
.momento__quote-mark { color: var(--sage); }
.momento__line {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 5vw, 74px); line-height: 1.12;
  letter-spacing: -0.025em; color: var(--bg); max-width: 19ch;
}
.momento__line em { font-style: italic; font-weight: 300; color: var(--sage-light); }

.momento__step--final { gap: clamp(18px, 3vw, 34px); }
.momento__payoff {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px); color: var(--sage-light);
  letter-spacing: -0.01em;
}
.calendar {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 10px; width: 100%; max-width: 760px;
}
.calendar__col {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.momento__step--final.is-active .calendar__col { opacity: 1; transform: translateY(0); }
.momento__step--final.is-active .calendar__col:nth-child(1) { transition-delay: 0.10s; }
.momento__step--final.is-active .calendar__col:nth-child(2) { transition-delay: 0.16s; }
.momento__step--final.is-active .calendar__col:nth-child(3) { transition-delay: 0.22s; }
.momento__step--final.is-active .calendar__col:nth-child(4) { transition-delay: 0.28s; }
.momento__step--final.is-active .calendar__col:nth-child(5) { transition-delay: 0.34s; }
.momento__step--final.is-active .calendar__col:nth-child(6) { transition-delay: 0.40s; }
.momento__step--final.is-active .calendar__col:nth-child(7) { transition-delay: 0.46s; }
.calendar__dow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237, 231, 219, 0.5);
}
.calendar__chip {
  width: 100%; padding: 18px 6px; border-radius: 10px; min-height: 78px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
  display: grid; place-items: center; text-align: center;
  background: rgba(237, 231, 219, 0.08);
  border: 1px solid rgba(237, 231, 219, 0.14); color: var(--bg);
}
.calendar__chip[data-type="reel"]      { background: var(--sage); border-color: var(--sage); }
.calendar__chip[data-type="tiktok"]    { background: var(--sage-deep); border-color: var(--sage-deep); }
.calendar__chip[data-type="carousel"]  { background: var(--sage-light); border-color: var(--sage-light); color: var(--ink); }
.calendar__chip[data-type="flyer"]     { background: rgba(164, 176, 151, 0.2); border-color: rgba(164, 176, 151, 0.34); }
.calendar__chip[data-type="story"]     { background: rgba(164, 176, 151, 0.2); border-color: rgba(164, 176, 151, 0.34); }
.calendar__chip[data-type="community"] { background: transparent; border-style: dashed; color: var(--sage-light); }

.momento__cta { margin-top: 6px; }

.momento__dots { display: flex; gap: 10px; margin-top: 22px; }
.momento__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(237, 231, 219, 0.22);
  transition: background 0.4s ease, transform 0.4s ease;
}
.momento__dot.is-active { background: var(--sage-light); transform: scale(1.4); }

@media (max-width: 640px) {
  .calendar { grid-template-columns: 1fr; gap: 8px; max-width: 380px; }
  .calendar__col { flex-direction: row; align-items: center; gap: 14px; }
  .calendar__dow { width: 44px; flex: none; text-align: left; }
  .calendar__chip {
    min-height: 0; padding: 13px 16px;
    place-items: center start; text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .momento { height: auto; }
  .momento__sticky { position: relative; height: auto; padding: 80px var(--pad); }
  .momento__stage { flex-direction: column; gap: 64px; }
  .momento__step {
    position: relative; inset: auto;
    opacity: 1; transform: none; pointer-events: auto;
  }
  .momento__step--final.is-active .calendar__col { opacity: 1; transform: none; }
  .momento__dots { display: none; }
}

/* ----- Brands ----- */
.brands { background: var(--bg); }
.brands__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 880px) { .brands__grid { grid-template-columns: repeat(2, 1fr); } }
.brand-cell {
  background: var(--bg-soft); padding: 40px 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 130px; position: relative; text-align: center;
  font-family: var(--font-display); font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 400; letter-spacing: -0.01em; color: var(--ink-soft);
  transition: background 0.5s ease, color 0.4s ease;
}
.brand-cell span { position: relative; z-index: 1; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.brand-cell:hover { background: var(--bg-card); color: var(--ink); }
.brand-cell:hover span { transform: translateY(-4px); }
.brand-cell::after {
  content: ''; position: absolute; left: 28px; right: 28px; bottom: 22px;
  height: 1px; background: var(--sage); transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-cell:hover::after { transform: scaleX(1); }
.brands__note {
  max-width: var(--container); margin: 36px auto 0;
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(16px, 1.5vw, 19px); color: var(--muted);
  text-align: center;
}

/* ----- Portfolio ----- */
.portfolio { background: var(--bg-soft); }
.portfolio__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 980px) { .portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio__grid { grid-template-columns: 1fr; } }

.work-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: block; aspect-ratio: 4 / 5;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card:hover { transform: translateY(-6px); }
.work-card__media {
  position: absolute; inset: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card:hover .work-card__media { transform: scale(1.06); }

.work-card[data-tone="sage"] .work-card__media { background: linear-gradient(135deg, #A4B097 0%, #6F7E5E 100%); }
.work-card[data-tone="sage-deep"] .work-card__media { background: linear-gradient(135deg, #6F7E5E 0%, #4F5C44 100%); }
.work-card[data-tone="cream"] .work-card__media { background: linear-gradient(135deg, #F5F0E5 0%, #E8DFCB 100%); }
.work-card[data-tone="dark"] .work-card__media { background: linear-gradient(135deg, #2B2D26 0%, #1A1A17 100%); }

.work-card__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
  font-weight: 300; font-style: italic;
  color: rgba(255, 255, 255, 0.25); letter-spacing: 0.1em;
}
.work-card[data-tone="cream"] .work-card__placeholder { color: rgba(26, 26, 23, 0.18); }

.work-card__info {
  position: absolute; inset: 0; padding: clamp(20px, 3vw, 28px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
  color: #fff;
}
.work-card[data-tone="cream"] .work-card__info {
  background: linear-gradient(to top, rgba(26, 26, 23, 0.25) 0%, transparent 60%);
  color: var(--ink);
}
.work-card__tag {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.85; margin-bottom: 6px;
}
.work-card__info h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.01em;
}
.work-card__arrow {
  position: absolute; top: clamp(20px, 3vw, 28px); right: clamp(20px, 3vw, 28px);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(6px);
  display: grid; place-items: center; font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.work-card[data-tone="cream"] .work-card__arrow {
  background: rgba(26, 26, 23, 0.1); color: var(--ink);
}
.work-card:hover .work-card__arrow {
  background: var(--sage); color: #fff; transform: rotate(-45deg);
}

/* ----- About ----- */
.about {
  background: var(--bg); display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  max-width: var(--container); margin: 0 auto;
}
@media (max-width: 880px) { .about { grid-template-columns: 1fr; } }

.about__visual { position: relative; }
.about__photo {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #A4B097 0%, #6F7E5E 55%, #4F5C44 100%);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: clamp(80px, 12vw, 160px);
  font-weight: 300; font-style: italic; color: rgba(255, 255, 255, 0.25);
}
.about__sticker {
  position: absolute; right: -12px; bottom: -24px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic;
  animation: spin 16s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about__content p { color: var(--ink-soft); font-size: 16px; margin-bottom: 18px; max-width: 52ch; }
.about__content .section__title { margin-bottom: 30px; }
.about__list {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.about__list li { display: flex; flex-direction: column; gap: 6px; }
.about__list span {
  font-family: var(--font-display); font-size: 38px; font-weight: 400;
  color: var(--sage-deep); line-height: 1;
}
.about__list p { font-size: 13px; color: var(--muted); max-width: 18ch; margin: 0; letter-spacing: 0.02em; }

/* ----- Contact ----- */
.contact { background: var(--dark); color: var(--bg); }
.contact__inner {
  max-width: var(--container); margin: 0 auto; text-align: center;
}
.contact .section__eyebrow { color: var(--sage-light); }
.contact__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 7vw, 96px); line-height: 1.02;
  letter-spacing: -0.03em; margin-bottom: 26px;
}
.contact__title span { display: block; }
.contact__title-accent { font-style: italic; font-weight: 300; color: var(--sage-light); }
.contact__sub {
  font-size: clamp(16px, 1.6vw, 19px); color: rgba(237, 231, 219, 0.7);
  max-width: 52ch; margin: 0 auto 44px;
}
.contact__buttons {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}
.contact .btn--primary { background: var(--bg); color: var(--ink); }
.contact .btn--primary:hover { background: var(--sage-light); color: var(--ink); }
.contact .btn--ghost { border-color: rgba(237, 231, 219, 0.3); color: var(--bg); }
.contact .btn--ghost:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.contact__handle {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.contact__handle a {
  color: var(--sage-light); margin-left: 8px;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color 0.3s ease;
}
.contact__handle a:hover { color: var(--bg); }

/* ----- Footer ----- */
.footer { background: var(--dark); color: rgba(237, 231, 219, 0.6); padding: 40px var(--pad); border-top: 1px solid rgba(237, 231, 219, 0.08); }
.footer__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer__brand { font-family: var(--font-display); color: var(--bg); font-size: 15px; }
.footer__links { display: flex; gap: 22px; }
.footer__links a:hover { color: var(--sage-light); }

/* ----- Floating WhatsApp ----- */
.float-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: 0.4;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}
.float-wa svg { position: relative; z-index: 1; }
.float-wa:hover { transform: scale(1.08); }

/* ----- Responsive tweaks ----- */
@media (max-width: 600px) {
  .nav__brand-name { display: none; }
  .hero__scroll { display: none; }
  .about__sticker { width: 110px; height: 110px; right: 0; bottom: -16px; }
  .about__list { gap: 20px; }
  .footer__inner { flex-direction: column; text-align: center; }
}
