:root {
  --ink: #1d1d1b;
  --paper: #f5f5f0;
  --white: #fff;
  --lemon: #dfff3f;
  --line: rgba(29, 29, 27, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist, Arial), Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
[data-parallax] { transform: translate3d(0, var(--parallax-y, 0), 0); }
.parallax-ready [data-parallax] { will-change: transform; }
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  align-items: center;
  background: rgba(245, 245, 240, 0.93);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 88px;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 3.3vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.header-logo-link { display: block; height: 36px; width: 170px; }
.header-logo-full {
  display: block;
  height: 36px;
  overflow: hidden;
  width: 170px;
}
.header-logo-full img {
  display: block;
  height: auto;
  width: 170px;
}
.header-logo-mobile { display: none; }
.site-header nav {
  align-items: center;
  display: flex;
  font-size: clamp(.96rem, 1.05vw, 1.08rem);
  font-weight: 700;
  gap: clamp(1.5rem, 3vw, 3.2rem);
  letter-spacing: -.025em;
}
.site-header nav a { position: relative; }
.site-header nav a:not(.nav-contact)::after {
  background: var(--ink);
  bottom: -.4rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-contact {
  background: var(--lemon);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: .82rem 1.45rem;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.nav-contact:hover, .nav-contact:focus-visible { box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px, -2px); }
.menu-toggle {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  gap: .65rem;
  padding: .82rem 1.25rem;
}
.menu-toggle:hover, .menu-toggle:focus-visible { background: var(--lemon); color: var(--ink); }
body.menu-open { overflow: hidden; }
.site-menu {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-rows: auto 1fr auto;
  inset: 0;
  opacity: 0;
  overflow-y: auto;
  padding: clamp(1.4rem, 3vw, 3rem) clamp(1.25rem, 4vw, 5rem);
  position: fixed;
  transform: translateY(-100%);
  transition: opacity 380ms ease, transform 420ms cubic-bezier(.76,0,.24,1);
  z-index: 500;
}
.site-menu.is-open { opacity: 1; transform: translateY(0); }
.site-menu-top, .site-menu-bottom { align-items: center; display: flex; justify-content: space-between; }
.site-menu-top > span { font-size: .7rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.site-menu-top button {
  background: var(--lemon);
  border: 1px solid var(--white);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  padding: .8rem 1.2rem;
}
.site-menu-top button span { font-size: 1.2rem; margin-left: .5rem; }
.site-menu-links {
  align-self: center;
  border-top: 1px solid rgba(255,255,255,.28);
  display: grid;
  margin: clamp(2rem, 4vh, 4rem) 0;
}
.site-menu-links a {
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,.28);
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.3vw, 5.8rem);
  font-style: italic;
  gap: 1rem;
  grid-template-columns: 42px 1fr;
  letter-spacing: -.055em;
  line-height: .86;
  opacity: 0;
  padding: .48rem 0;
  transform: translateY(28px);
  transition: color 180ms ease, opacity 350ms ease, padding 200ms ease, transform 450ms cubic-bezier(.2,.8,.2,1);
}
.site-menu.is-open .site-menu-links a { opacity: 1; transform: translateY(0); }
.site-menu.is-open .site-menu-links a:nth-child(1) { transition-delay: 90ms; }
.site-menu.is-open .site-menu-links a:nth-child(2) { transition-delay: 130ms; }
.site-menu.is-open .site-menu-links a:nth-child(3) { transition-delay: 170ms; }
.site-menu.is-open .site-menu-links a:nth-child(4) { transition-delay: 210ms; }
.site-menu.is-open .site-menu-links a:nth-child(5) { transition-delay: 250ms; }
.site-menu.is-open .site-menu-links a:nth-child(6) { transition-delay: 290ms; }
.site-menu.is-open .site-menu-links a:nth-child(7) { transition-delay: 330ms; }
.site-menu-links a:hover, .site-menu-links a:focus-visible { color: var(--lemon); padding-left: 1rem; }
.site-menu-links a span { font-family: var(--font-geist, Arial), sans-serif; font-size: .65rem; font-style: normal; font-weight: 750; letter-spacing: .06em; }
.site-menu-bottom { border-top: 1px solid rgba(255,255,255,.28); flex-wrap: wrap; font-size: .78rem; gap: .8rem 2rem; padding-top: 1rem; }
.site-menu-bottom a:hover, .site-menu-bottom a:focus-visible { color: var(--lemon); }

.hero {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: calc(100svh - 88px);
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.25rem, 3.3vw, 4rem) 1.8rem;
  position: relative;
}
.hero > :not(.fluid-bg) { position: relative; z-index: 2; }
.fluid-bg {
  background: #f5f5f0;
  inset: -18% -12%;
  opacity: .92;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.fluid-flow {
  filter: blur(58px);
  height: 42%;
  left: -18%;
  position: absolute;
  width: 138%;
  will-change: transform;
}
.fluid-flow-ink {
  animation: liquid-ink 10s cubic-bezier(.45,.05,.55,.95) infinite;
  background: linear-gradient(90deg, transparent 2%, rgba(18,18,17,.12) 16%, rgba(18,18,17,.62) 42%, rgba(18,18,17,.18) 68%, transparent 96%);
  border-radius: 32% 68% 38% 62% / 72% 36% 64% 28%;
  mix-blend-mode: multiply;
  top: 2%;
}
.fluid-flow-smoke {
  animation: liquid-smoke 13s cubic-bezier(.45,.05,.55,.95) infinite reverse;
  background: linear-gradient(90deg, transparent 4%, rgba(110,110,105,.08) 18%, rgba(80,80,76,.42) 48%, rgba(155,155,148,.18) 78%, transparent 98%);
  border-radius: 68% 32% 64% 36% / 34% 66% 30% 70%;
  mix-blend-mode: multiply;
  top: 38%;
}
.fluid-flow-light {
  animation: liquid-light 8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent 4%, rgba(255,255,255,.2) 20%, rgba(255,255,255,.96) 50%, rgba(255,255,255,.28) 82%, transparent 98%);
  border-radius: 44% 56% 72% 28% / 60% 32% 68% 40%;
  mix-blend-mode: screen;
  top: 68%;
}
@keyframes liquid-ink {
  0%, 100% { border-radius: 32% 68% 38% 62% / 72% 36% 64% 28%; transform: translate3d(-8%, -18%, 0) rotate(-7deg) scaleX(.92) scaleY(.72); }
  32% { border-radius: 62% 38% 70% 30% / 34% 68% 32% 66%; transform: translate3d(10%, 26%, 0) rotate(5deg) scaleX(1.08) scaleY(1.12); }
  67% { border-radius: 44% 56% 28% 72% / 66% 30% 70% 34%; transform: translate3d(-3%, 8%, 0) rotate(-2deg) scaleX(1.18) scaleY(.88); }
}
@keyframes liquid-smoke {
  0%, 100% { border-radius: 68% 32% 64% 36% / 34% 66% 30% 70%; transform: translate3d(8%, 22%, 0) rotate(6deg) scaleX(1.12) scaleY(.82); }
  45% { border-radius: 30% 70% 42% 58% / 72% 28% 64% 36%; transform: translate3d(-12%, -24%, 0) rotate(-5deg) scaleX(.9) scaleY(1.18); }
  76% { border-radius: 58% 42% 34% 66% / 40% 62% 38% 60%; transform: translate3d(5%, -2%, 0) rotate(2deg) scaleX(1.22) scaleY(.94); }
}
@keyframes liquid-light {
  0%, 100% { border-radius: 44% 56% 72% 28% / 60% 32% 68% 40%; transform: translate3d(-5%, 18%, 0) rotate(-4deg) scaleX(.96) scaleY(.76); }
  50% { border-radius: 70% 30% 36% 64% / 28% 72% 42% 58%; transform: translate3d(9%, -28%, 0) rotate(4deg) scaleX(1.15) scaleY(1.22); }
}
.hero-label {
  align-items: center;
  display: flex;
  font-size: .73rem;
  font-weight: 750;
  gap: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.status-dot { animation: status-pulse 2.2s ease-in-out infinite; background: var(--lemon); border: 1px solid var(--ink); border-radius: 50%; height: .8rem; width: .8rem; }
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 29, 27, .25); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(29, 29, 27, 0); transform: scale(1.12); }
}
.hero h1 {
  align-self: center;
  font-size: clamp(3.9rem, 8.2vw, 9.6rem);
  font-weight: 760;
  letter-spacing: -.085em;
  line-height: .84;
  margin: 3rem 0;
  max-width: 1400px;
}
.hero h1 span {
  display: block;
  margin-left: 10vw;
  position: relative;
  width: fit-content;
  z-index: 1;
}
.hero h1 span::after {
  background: var(--lemon);
  bottom: -.04em;
  content: "";
  height: .22em;
  left: -.02em;
  position: absolute;
  animation: underline-flow 3.6s ease-in-out infinite;
  transform-origin: left center;
  width: 102%;
  z-index: -1;
}
@keyframes underline-flow {
  0%, 100% { transform: scaleX(.92) skewX(-4deg); }
  50% { transform: scaleX(1.03) skewX(3deg); }
}
.hero-details {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(260px, 600px) auto;
  justify-content: space-between;
}
.hero-details p {
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  letter-spacing: -.03em;
  line-height: 1.42;
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: .88rem;
  font-weight: 700;
  justify-content: center;
  min-width: 126px;
  padding: .9rem 1.3rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button-dark { background: var(--ink); color: var(--white); }
.button-line { background: transparent; }
.button:hover, .button:focus-visible { background: var(--lemon); color: var(--ink); transform: translateY(-3px); }
.scroll-note {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: .72rem;
  font-weight: 650;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-top: 1.2rem;
}
.scroll-note span { font-size: 1.25rem; }

.section-tag {
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .14em;
  margin: 0;
  text-transform: uppercase;
}
.model, .direction, .how, .fit, .experience, .contact {
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 3.3vw, 4rem);
}
.model {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 3rem;
  grid-template-columns: .3fr 1.45fr .65fr;
  overflow: hidden;
  position: relative;
}
.model::after {
  background: var(--lemon);
  bottom: clamp(2rem, 5vw, 5rem);
  content: "";
  height: clamp(10px, 1.4vw, 20px);
  opacity: .9;
  position: absolute;
  right: -2rem;
  transform: rotate(-5deg);
  width: clamp(180px, 28vw, 430px);
}
.model > * { position: relative; z-index: 1; }
.model-main h2, .direction-heading h2, .how-intro h2, .fit h2, .experience h2, .contact h2 {
  font-size: clamp(3rem, 6.6vw, 7.6rem);
  font-weight: 730;
  letter-spacing: -.075em;
  line-height: .92;
  margin: 0;
}
.model-main h2 span { color: var(--lemon); display: block; }
.model-lead {
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.45;
  margin: clamp(3rem, 7vw, 7rem) 0 0;
  max-width: 700px;
}
.model-note { align-self: end; border-top: 1px solid rgba(255,255,255,.35); padding-top: 1rem; }
.model-note span { color: var(--lemon); font-size: .76rem; font-weight: 750; text-transform: uppercase; }
.model-note p { font-size: 1rem; line-height: 1.55; margin: 1.1rem 0 0; }

.direction { background: var(--white); overflow: hidden; position: relative; }
.direction::after {
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  height: clamp(180px, 28vw, 460px);
  opacity: .13;
  position: absolute;
  right: -12vw;
  top: clamp(2rem, 6vw, 6rem);
  width: clamp(180px, 28vw, 460px);
}
.direction > * { position: relative; z-index: 1; }
.direction-heading {
  display: grid;
  gap: 3rem;
  grid-template-columns: .3fr 2.1fr;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.direction-heading h2 span { display: block; font-family: Georgia, serif; font-size: .55em; font-style: italic; font-weight: 400; letter-spacing: -.05em; margin-top: .4em; }
.direction-list { border-top: 1px solid var(--ink); }
.direction-item {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 45px 1fr minmax(260px, .85fr);
  min-height: 125px;
  padding: 1.4rem 0;
  transition: background 180ms ease, padding 180ms ease;
}
.direction-item:hover { background: var(--lemon); padding-left: 1.2rem; padding-right: 1.2rem; }
.direction-item > span { font-size: .67rem; font-weight: 750; }
.direction-item h3 { font-size: clamp(1.8rem, 3.3vw, 3.8rem); font-weight: 680; letter-spacing: -.06em; margin: 0; }
.direction-item p { font-size: 1rem; line-height: 1.5; margin: 0; }

.how {
  background-color: var(--lemon);
  background-image: radial-gradient(rgba(29, 29, 27, .22) 1px, transparent 1px);
  background-position: -4px -4px;
  background-size: 24px 24px;
}
.how-intro {
  display: grid;
  gap: 3rem;
  grid-template-columns: .3fr 2.1fr;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.how-intro h2 { max-width: 1100px; }
.steps { border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.step { border-left: 1px solid var(--ink); min-height: 300px; padding: 1.5rem; }
.step:first-child { border-left: 0; }
.step > span { font-size: .68rem; font-weight: 750; }
.step h3 { font-size: clamp(1.6rem, 2.5vw, 2.8rem); letter-spacing: -.055em; margin: 4rem 0 1.2rem; }
.step p { line-height: 1.5; margin: 0; }

.fit { background: #d9d9d2; display: grid; gap: 3rem; grid-template-columns: .3fr 1.15fr .75fr; overflow: hidden; position: relative; }
.fit::before {
  bottom: -.2em;
  color: var(--ink);
  content: "W_";
  font-size: clamp(14rem, 35vw, 42rem);
  font-weight: 900;
  left: -.08em;
  letter-spacing: -.13em;
  line-height: .7;
  opacity: .045;
  pointer-events: none;
  position: absolute;
}
.fit > * { position: relative; z-index: 1; }
.fit h2 { font-size: clamp(2.8rem, 5.5vw, 6.2rem); }
.fit ul { align-self: end; list-style: none; margin: 0; padding: 0; }
.fit li { border-top: 1px solid var(--ink); font-size: 1rem; line-height: 1.4; padding: 1.15rem 0; }
.fit li:last-child { border-bottom: 1px solid var(--ink); }

.experience {
  align-items: start;
  background: var(--paper);
  border-top: 1px solid var(--ink);
  display: grid;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: .55fr 1.45fr;
}
.experience-aside { display: grid; gap: 2rem; }
.experience-years {
  background: var(--lemon);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  padding: 1rem 1.25rem;
  width: fit-content;
}
.experience h2 { font-size: clamp(3rem, 6vw, 7rem); margin: 0 0 3rem; }
.experience-copy > p { font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.5; max-width: 700px; }

.local-seo { background: var(--white); padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 3.3vw, 4rem); }
.local-intro { display: grid; gap: 3rem; grid-template-columns: .3fr 2.1fr; }
.local-intro h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6.6vw, 7.6rem); font-style: italic; font-weight: 400; letter-spacing: -.055em; line-height: .92; margin: 0; max-width: 1200px; }
.local-intro > div > p { font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.55; margin: 3rem 0 0; max-width: 780px; }
.faq-list { border-top: 1px solid var(--ink); margin: clamp(4rem, 8vw, 8rem) auto 0; max-width: 1050px; }
.faq-list details { border-bottom: 1px solid var(--ink); overflow: clip; }
.faq-list summary {
  cursor: pointer;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  isolation: isolate;
  list-style: none;
  padding: 1.4rem 3rem 1.4rem 0;
  position: relative;
  transition: padding 280ms cubic-bezier(.2,.8,.2,1);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before {
  background: var(--lemon);
  content: "";
  inset: .42rem 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.faq-list summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  position: absolute;
  right: .7rem;
  top: 1.2rem;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1.2);
}
.faq-list details:hover summary,
.faq-list details[open] summary { padding-left: 1rem; }
.faq-list details:hover summary::before,
.faq-list details[open] summary::before { transform: scaleX(1); }
.faq-list details[open] summary::after { transform: rotate(135deg); }
.faq-list details p {
  animation: faq-answer-in 380ms cubic-bezier(.2,.8,.2,1) both;
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
  padding: .35rem 3rem 1.8rem 1rem;
}
@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1,
.model-main h2,
.direction-heading h2,
.direction-item h3,
.how-intro h2,
.step h3,
.fit h2,
.experience h2,
.contact h2,
.legal-page h1,
.legal-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.055em;
}

.contact { background: var(--ink); color: var(--white); }
.contact h2 { color: var(--lemon); margin: 2.5rem 0; max-width: 1200px; }
.contact > p:not(.section-tag) { font-size: clamp(1.05rem, 1.6vw, 1.4rem); line-height: 1.5; max-width: 650px; }
.contact-links { border-top: 1px solid rgba(255,255,255,.4); margin-top: clamp(4rem, 8vw, 8rem); }
.contact-links a { align-items: center; border-bottom: 1px solid rgba(255,255,255,.4); display: flex; font-size: clamp(1.35rem, 3vw, 3.2rem); justify-content: space-between; padding: 1.2rem 0; transition: color 180ms ease, padding 180ms ease; }
.contact-links a:hover, .contact-links a:focus-visible { color: var(--lemon); padding-left: 1rem; padding-right: 1rem; }

footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  display: grid;
  font-size: .72rem;
  gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.5rem clamp(1.25rem, 3.3vw, 4rem);
  padding-right: clamp(12rem, 17vw, 14rem);
}
.footer-logo {
  display: block;
  filter: invert(1);
  height: 27px;
  overflow: hidden;
  width: 120px;
}
.footer-logo img { display: block; height: auto; width: 120px; }
footer p { margin: 0; text-align: center; }
footer a { text-align: right; }
.footer-links { align-items: center; display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; justify-content: flex-end; }
.footer-links button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.footer-links button:disabled { cursor: wait; opacity: .65; }
.footer-links a, .footer-links button { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: .25em; transition: color 160ms ease, text-decoration-color 160ms ease; }
.footer-links a:hover, .footer-links button:hover, .footer-links a:focus-visible, .footer-links button:focus-visible { color: var(--lemon); text-decoration-color: currentColor; }
.whatsapp-float {
  align-items: center;
  background: var(--lemon);
  border: 1px solid var(--ink);
  border-radius: 999px;
  bottom: 1.25rem;
  box-shadow: 4px 4px 0 var(--ink);
  display: inline-flex;
  font-size: .9rem;
  font-weight: 750;
  gap: .55rem;
  padding: .9rem 1.25rem;
  position: fixed;
  right: 1.25rem;
  transition: box-shadow 180ms ease, transform 180ms ease;
  z-index: 60;
}
.whatsapp-arrow { font-size: 1.05rem; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { box-shadow: 7px 7px 0 var(--ink); transform: translate(-2px, -2px); }

[hidden] { display: none !important; }
.cookie-banner {
  background: var(--paper);
  border: 1px solid var(--ink);
  bottom: 1rem;
  box-shadow: 8px 8px 0 var(--ink);
  left: 1rem;
  max-width: 660px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  position: fixed;
  width: calc(100% - 2rem);
  z-index: 1000;
}
.cookie-kicker { font-size: .72rem; font-weight: 750; letter-spacing: .08em; margin: 0 0 .75rem; text-transform: uppercase; }
.cookie-banner h2, .cookie-modal h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.055em; margin: 0; }
.cookie-banner > p:not(.cookie-kicker), .cookie-modal-card > p { line-height: 1.55; max-width: 60ch; }
.cookie-banner > a, .cookie-modal-card > a { display: inline-block; font-size: .8rem; margin-top: 1rem; text-decoration: underline; text-underline-offset: .2em; }
.cookie-actions, .cookie-modal-actions { display: grid; gap: .6rem; grid-template-columns: repeat(3, 1fr); margin-top: 1.4rem; }
.cookie-actions button, .cookie-modal-actions button {
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  min-height: 46px;
  padding: .7rem 1rem;
}
.cookie-actions button:hover, .cookie-actions button:focus-visible, .cookie-modal-actions button:hover, .cookie-modal-actions button:focus-visible { background: var(--ink); color: var(--white); }
.cookie-actions .cookie-primary, .cookie-modal-actions .cookie-primary { background: var(--lemon); }
.cookie-modal {
  align-items: center;
  background: rgba(27, 27, 26, .72);
  display: flex;
  inset: 0;
  justify-content: center;
  overflow-y: auto;
  padding: 1rem;
  position: fixed;
  z-index: 1001;
}
.cookie-modal-card { background: var(--paper); border: 1px solid var(--ink); max-width: 760px; padding: clamp(1.4rem, 4vw, 3rem); width: 100%; }
.cookie-modal-head { align-items: start; display: flex; gap: 2rem; justify-content: space-between; }
.cookie-modal-close { background: var(--lemon); border: 1px solid var(--ink); border-radius: 50%; cursor: pointer; flex: 0 0 auto; font-size: 1.5rem; height: 42px; line-height: 1; width: 42px; }
.cookie-category-list { border-top: 1px solid var(--ink); margin-top: 1.5rem; }
.cookie-category { align-items: center; border-bottom: 1px solid var(--ink); cursor: pointer; display: flex; gap: 1.5rem; justify-content: space-between; padding: 1rem 0; }
.cookie-category strong, .cookie-category small { display: block; }
.cookie-category small { line-height: 1.4; margin-top: .25rem; }
.cookie-category input { accent-color: var(--ink); height: 24px; width: 24px; }
.cookie-category input:disabled { cursor: not-allowed; }
.cookie-modal-actions { grid-template-columns: 1fr 1fr; }
.cookie-modal-actions button { background: var(--lemon); }

.legal-page { background: var(--paper); min-height: 100vh; padding: clamp(8rem, 14vw, 12rem) clamp(1.25rem, 7vw, 8rem) 6rem; }
.legal-page > h1 { font-size: clamp(3.5rem, 9vw, 9rem); margin: 0 0 clamp(3rem, 7vw, 7rem); }
.legal-content { max-width: 900px; }
.legal-content section { border-top: 1px solid var(--ink); padding: 2rem 0; }
.legal-content h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 1rem; }
.legal-content p { line-height: 1.65; }
.legal-content li { line-height: 1.6; margin-bottom: .55rem; }
.legal-content a { text-decoration: underline; text-underline-offset: .18em; }
.legal-updated { margin: -2rem 0 clamp(3rem, 6vw, 5rem); }
.legal-content table { border-collapse: collapse; display: block; margin: 1.5rem 0; overflow-x: auto; width: 100%; }
.legal-content th, .legal-content td { border: 1px solid var(--ink); min-width: 140px; padding: .8rem; text-align: left; vertical-align: top; }
.legal-content .button { background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; color: var(--white); cursor: pointer; display: inline-block; font: inherit; font-weight: 700; margin-top: .75rem; padding: .9rem 1.25rem; }

.insights { background: var(--paper); padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 3.3vw, 4rem); }
.insights-heading { align-items: end; display: grid; gap: 3rem; grid-template-columns: .3fr 2.1fr; margin-bottom: clamp(3rem, 6vw, 6rem); }
.insights-heading h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6.6vw, 7rem); font-style: italic; font-weight: 400; letter-spacing: -.055em; line-height: .9; margin: 0; }
.insights-grid { border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); }
.insight-card { border-left: 1px solid var(--ink); display: flex; flex-direction: column; min-height: 380px; padding: 1.5rem; transition: background 180ms ease, color 180ms ease; }
.insight-card:first-child { border-left: 0; }
.insight-card:hover, .insight-card:focus-visible { background: var(--lemon); }
.insight-card > span { font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.3vw, 3.6rem); font-style: italic; font-weight: 400; letter-spacing: -.055em; line-height: .95; margin: 2.5rem 0 1.2rem; }
.insight-card p { line-height: 1.5; margin: 0; }
.insight-card strong { margin-top: auto; padding-top: 2rem; }

.article-page { background: var(--paper); }
.article-hero { border-bottom: 1px solid var(--ink); padding: clamp(8rem, 14vw, 12rem) clamp(1.25rem, 7vw, 8rem) clamp(4rem, 8vw, 8rem); }
.article-kicker { font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.article-hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.8rem, 8.5vw, 9.5rem); font-style: italic; font-weight: 400; letter-spacing: -.065em; line-height: .82; margin: 2rem 0 3rem; max-width: 1500px; }
.article-deck { font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.45; max-width: 850px; }
.article-meta { display: flex; flex-wrap: wrap; font-size: .78rem; gap: 1rem 2rem; margin-top: 3rem; }
.article-layout { display: grid; gap: clamp(3rem, 8vw, 9rem); grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr); padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 8rem); }
.article-index { align-self: start; position: sticky; top: 120px; }
.article-index p { font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.article-index a { border-top: 1px solid var(--line); display: block; font-size: .85rem; padding: .75rem 0; }
.article-index a:last-child { border-bottom: 1px solid var(--line); }
.article-body { max-width: 850px; }
.article-body .answer-box { background: var(--lemon); border: 1px solid var(--ink); font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.5; margin-bottom: 4rem; padding: clamp(1.5rem, 4vw, 3rem); }
.article-body section { border-top: 1px solid var(--ink); padding: clamp(2.5rem, 5vw, 5rem) 0; }
.article-body h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5vw, 5rem); font-style: italic; font-weight: 400; letter-spacing: -.055em; line-height: .95; margin: 0 0 1.5rem; }
.article-body h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); margin: 2rem 0 .75rem; }
.article-body p, .article-body li { font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.75; }
.article-body li { margin-bottom: .65rem; }
.article-body blockquote { border-left: 8px solid var(--lemon); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 2.8rem); font-style: italic; line-height: 1.15; margin: 3rem 0; padding-left: 1.5rem; }
.article-cta { background: var(--ink); color: var(--white); padding: clamp(3rem, 6vw, 6rem); }
.article-cta h2 { color: var(--lemon); }
.article-cta .button { background: var(--lemon); color: var(--ink); margin-top: 1rem; }
.article-related { border-top: 1px solid var(--ink); padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 7vw, 8rem); }
.article-related h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 4rem); font-style: italic; font-weight: 400; }
.article-related-links { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.article-related a { border: 1px solid var(--ink); padding: 1.2rem; }
.article-related a:hover { background: var(--lemon); }

@media (max-width: 820px) {
  .site-header { height: 72px; }
  .header-logo-link { height: 42px; width: 64px; }
  .header-logo-full { display: none; }
  .header-logo-mobile {
    display: block;
    height: 42px;
    object-fit: contain;
    object-position: left center;
    width: 64px;
  }
  .site-header nav a:not(.nav-contact) { display: none; }
  .hero { min-height: calc(100svh - 72px); }
  .fluid-bg { inset: -8% -38%; opacity: .82; }
  .fluid-flow { filter: blur(42px); height: 46%; }
  .hero h1 { font-size: clamp(3.5rem, 15vw, 6.5rem); line-height: .88; }
  .hero h1 span { margin: .15em 0 0; }
  .hero-details { grid-template-columns: 1fr; }
  .model, .direction-heading, .how-intro, .fit, .local-intro, .insights-heading, .article-layout { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { border-left: 0; border-bottom: 1px solid var(--ink); min-height: 300px; }
  .article-index { display: none; }
  .model { gap: 2.5rem; }
  .model-main .model-lead { margin-top: 3rem; }
  .direction-item { gap: .8rem 1rem; grid-template-columns: 30px 1fr; padding: 1.5rem 0; }
  .direction-item p { grid-column: 2; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(3) { border-left: 0; border-top: 1px solid var(--ink); }
  .step:nth-child(4) { border-top: 1px solid var(--ink); }
  .experience { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
  .footer-links { max-width: 420px; }
  .site-menu-links a { font-size: clamp(2.1rem, 8.5vw, 4.8rem); }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 15.5vw; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; padding-right: 4.25rem; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(4) { border-left: 0; border-top: 1px solid var(--ink); min-height: auto; padding: 1.5rem 0 2.5rem; }
  .step:first-child { border-top: 0; }
  .step h3 { margin-top: 2.5rem; }
  .contact-links a { font-size: 6vw; }
  .how { background-size: 18px 18px; }
  footer { align-items: start; grid-template-columns: 1fr; padding-right: 5.25rem; }
  .footer-links { justify-content: flex-start; }
  .cookie-actions { grid-template-columns: 1fr; }
  .cookie-banner { bottom: .65rem; left: .65rem; width: calc(100% - 1.3rem); }
  .cookie-modal-actions { grid-template-columns: 1fr; }
  .whatsapp-float {
    bottom: .85rem;
    height: 56px;
    justify-content: center;
    padding: 0;
    right: .85rem;
    width: 56px;
  }
  .whatsapp-float::before { content: "WA"; font-size: .8rem; font-weight: 850; letter-spacing: -.03em; }
  .whatsapp-arrow, .whatsapp-label { display: none; }
  .site-menu { padding: 1.2rem; }
  .site-menu-top > span { display: none; }
  .site-menu-links { margin: 1.5rem 0; }
  .site-menu-links a { font-size: 10vw; grid-template-columns: 28px 1fr; padding: .65rem 0; }
  .site-menu-bottom { align-items: flex-start; flex-direction: column; }
  .article-related-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-parallax] { transform: none !important; }
  .fluid-flow { animation: none !important; }
}
body.game-overlay-open {
  overflow: hidden;
}

.game-invite[hidden],
.game-overlay[hidden] {
  display: none;
}

.game-invite,
.game-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.game-invite {
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(29, 29, 27, 0.78);
  backdrop-filter: blur(10px);
}

.game-invite-card {
  width: min(760px, 100%);
  padding: clamp(36px, 7vw, 84px);
  border: 1px solid var(--ink);
  background: var(--lemon);
  box-shadow: 14px 14px 0 var(--ink);
}

.game-invite-card > p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
}

.game-invite-card > p:first-child {
  margin-bottom: 26px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 800;
}

.game-invite-card h2 {
  max-width: 650px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.game-countdown {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.game-countdown span {
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
}

.game-countdown strong {
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.72;
  font-variant-numeric: tabular-nums;
}

.game-overlay-close {
  position: absolute;
  z-index: 3;
  top: max(16px, env(safe-area-inset-top));
  right: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}

.game-overlay-close:hover,
.game-overlay-close:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.game-overlay {
  background: var(--paper);
}

.game-overlay iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: var(--paper);
}

@media (max-width: 640px) {
  .game-invite {
    padding: 18px;
  }

  .game-invite-card {
    padding: 38px 24px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .game-invite-card h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .game-overlay-close {
    width: 43px;
    height: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-invite {
    backdrop-filter: none;
  }
}
