:root {
  --ink: #211d1a;
  --paper: #f2eee8;
  --accent: #bc5f4a;
  --soft: #d9cfc4;
  --white: #fffdf9;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --header-height: 4.75rem;
  --gutter: clamp(1.15rem, 4vw, 4rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); scroll-behavior: smooth; }
body { margin: 0; min-width: 18rem; font-family: var(--body); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.035em; line-height: .95; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: .75rem; left: .75rem; padding: .7rem 1rem; background: var(--white); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: none; }
.content-wrap { width: min(100%, 92rem); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow { margin-bottom: 1rem; font-size: .67rem; font-weight: 600; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: var(--header-height); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: .8rem; padding: .65rem var(--gutter); color: var(--white); transition: color .35s, background .35s, box-shadow .35s; }
.site-header.scrolled, html:not([data-page="home"]) .site-header { color: var(--ink); background: color-mix(in srgb, var(--paper) 92%, transparent); box-shadow: 0 1px 0 rgba(33,29,26,.1); backdrop-filter: blur(15px); }
body.menu-open .site-header { color: var(--ink); background: transparent; box-shadow: none; backdrop-filter: none; }
.brand { position: relative; z-index: 2; display: inline-flex; width: auto; align-items: center; gap: .62rem; }
.brand img, .footer-logo img { display: block; width: 3.35rem; aspect-ratio: 1; flex: 0 0 auto; object-fit: contain; color: currentColor; filter: brightness(0) invert(1); transition: filter .35s; }
.brand-wordmark { white-space: nowrap; font-family: var(--display); font-size: 1.2rem; font-weight: 500; letter-spacing: -.025em; line-height: 1; }
.site-header.scrolled .brand img, html:not([data-page="home"]) .brand img, .footer-logo img { filter: none; }
body.menu-open .brand img { filter: none; }
.menu-toggle { position: relative; z-index: 2; width: 2.75rem; height: 2.75rem; display: grid; align-content: center; gap: 5px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { width: 1.7rem; height: 1px; display: block; margin-inline: auto; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.primary-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: stretch; padding: calc(var(--header-height) + 4rem) var(--gutter) 3rem; color: var(--ink); background: radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 20rem), var(--paper); visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.primary-nav.open { visibility: visible; opacity: 1; }
.primary-nav a { display: flex; align-items: center; min-height: 4.4rem; padding: .65rem 0; border-top: 1px solid rgba(33,29,26,.18); font-family: var(--display); font-size: clamp(2.45rem, 11vw, 4.25rem); line-height: .95; opacity: 0; transform: translateY(1.2rem); transition: opacity .35s var(--ease), transform .45s var(--ease), color .2s; }
.primary-nav a:last-child { border-bottom: 1px solid rgba(33,29,26,.18); }
.primary-nav.open a { opacity: 1; transform: none; }
.primary-nav.open a:nth-child(2) { transition-delay: .04s; }
.primary-nav.open a:nth-child(3) { transition-delay: .08s; }
.primary-nav.open a:nth-child(4) { transition-delay: .12s; }
.primary-nav a[aria-current="page"] { color: var(--accent); }
.language-switcher { position: relative; z-index: 2; }
.language-switcher > button { width: 2.5rem; height: 2.5rem; border: 0; background: transparent; font-size: .68rem; font-weight: 600; letter-spacing: .12em; cursor: pointer; }
.language-options { position: absolute; top: calc(100% + .5rem); right: 0; min-width: 4rem; display: grid; padding: .35rem; color: var(--ink); background: var(--white); box-shadow: 0 14px 40px rgba(31,24,18,.14); visibility: hidden; opacity: 0; transform: translateY(-.4rem); transition: .2s; }
.language-options.open { visibility: visible; opacity: 1; transform: none; }
.language-options button { padding: .5rem; border: 0; background: transparent; font-size: .72rem; cursor: pointer; }
.language-options button:hover, .language-options button[aria-selected="true"] { color: var(--accent); }

.page { display: none; }
.page.active { display: block; }

.hero { position: relative; height: 100svh; min-height: 38rem; overflow: hidden; color: var(--white); background: #302b27; }
.hero-slides, .hero-shade { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: -2%; width: 104%; height: 104%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .75s ease, transform 5s linear; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-shade { background: linear-gradient(180deg, rgba(16,13,12,.38) 0%, rgba(16,13,12,.03) 38%, rgba(16,13,12,.54) 100%); }
.hero-copy { position: absolute; z-index: 1; left: var(--gutter); right: var(--gutter); bottom: clamp(6.5rem, 15vh, 9rem); max-width: 57rem; }
.hero-copy h1 { max-width: 12ch; margin-bottom: .05em; font-size: clamp(4rem, 19vw, 10.5rem); font-style: italic; }
.hero-signature { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(1.55rem, 7vw, 3.4rem); letter-spacing: -.02em; }
.hero-intro { max-width: 31rem; margin: 0; font-size: clamp(.88rem, 2.6vw, 1.08rem); }
.scroll-cue { position: absolute; z-index: 1; right: var(--gutter); bottom: 2rem; width: 2.2rem; height: 3.6rem; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; }
.scroll-cue span { width: 3px; height: 3px; border-radius: 50%; background: white; animation: scroll-dot 1.8s infinite; }
@keyframes scroll-dot { 0% { transform: translateY(-.55rem); opacity: 0; } 30% { opacity: 1; } 80%, 100% { transform: translateY(.55rem); opacity: 0; } }

.choose-section { padding-top: clamp(5rem, 14vw, 10rem); padding-bottom: clamp(6rem, 14vw, 11rem); }
.section-intro { max-width: 43rem; margin-bottom: 4rem; }
.section-intro h2, .home-contact h2 { margin-bottom: 1.2rem; font-size: clamp(3rem, 11vw, 7.4rem); }
.section-intro > p:last-child { max-width: 34rem; }
.choice-grid { display: grid; gap: 3rem; }
.choice-card { position: relative; display: block; }
.choice-image { aspect-ratio: .83; overflow: hidden; background: var(--soft) center/cover; }
.choice-image::after { content: ""; display: block; height: 100%; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.16)); }
.choice-number { position: absolute; top: .85rem; left: .85rem; display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; color: var(--ink); background: var(--white); font-size: .68rem; }
.choice-card h3 { margin: 1rem 0 .4rem; font-size: clamp(2.4rem, 8vw, 4.6rem); }
.choice-link { display: inline-block; padding-bottom: .15rem; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.home-contact { padding-bottom: clamp(6rem, 14vw, 11rem); }
.text-link { display: inline-flex; align-items: center; gap: 1.2rem; padding-bottom: .3rem; border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.button-link { border-top: 0; border-left: 0; border-right: 0; background: transparent; cursor: pointer; }

.page-heading { padding-top: calc(var(--header-height) + clamp(4.5rem, 12vw, 9rem)); padding-bottom: clamp(4rem, 11vw, 7rem); }
.page-heading h1 { max-width: 13ch; margin-bottom: 1.4rem; font-size: clamp(4rem, 15vw, 10rem); font-style: italic; }
.page-heading > p:last-child { max-width: 40rem; font-size: clamp(1rem, 2.5vw, 1.25rem); }
.story-feed { width: min(100%, 105rem); margin-inline: auto; padding: 0 var(--gutter) clamp(8rem, 15vw, 13rem); }
.story-item { position: relative; margin-bottom: clamp(5rem, 18vw, 13rem); }
.story-item figure { margin: 0; }
.story-item img { width: 100%; height: auto; background: var(--soft); }
.story-caption { position: relative; z-index: 1; width: min(87%, 30rem); margin: -2.25rem 0 0 auto; padding: 1.15rem 1.25rem; color: var(--white); background: var(--ink); font-family: var(--display); font-size: clamp(1.35rem, 5vw, 2.5rem); line-height: 1.05; }

.consulting-hero { min-height: 100svh; display: grid; padding-top: var(--header-height); background: var(--soft); }
.consulting-photo { min-height: 48vh; background: center 28%/cover no-repeat; }
.consulting-heading { align-self: end; padding: 3rem var(--gutter) 4rem; }
.consulting-heading h1 { max-width: 10ch; margin-bottom: 1.4rem; font-size: clamp(4rem, 15vw, 9rem); font-style: italic; }
.consulting-heading > p:last-child { max-width: 38rem; }
.consulting-steps { display: grid; padding-top: clamp(5rem, 13vw, 10rem); padding-bottom: clamp(4rem, 10vw, 8rem); }
.consulting-steps article { padding: 2.5rem 0; border-top: 1px solid rgba(33,29,26,.24); }
.consulting-steps span { font-size: .68rem; letter-spacing: .12em; }
.consulting-steps h2 { margin: 1.2rem 0 .75rem; font-size: clamp(2.6rem, 8vw, 5rem); }
.consulting-steps p { max-width: 29rem; }
.consulting-contact { padding-bottom: clamp(7rem, 15vw, 12rem); }
.round-cta { width: min(100%, 22rem); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-inline: auto; border-radius: 50%; color: var(--white); background: var(--accent); text-align: center; font-family: var(--display); font-size: clamp(1.9rem, 7vw, 3.3rem); line-height: 1; transition: transform .35s var(--ease); }
.round-cta:hover { transform: rotate(-3deg) scale(1.02); }
.round-cta span:last-child { font-family: var(--body); font-size: 1rem; }

.legal-page { min-height: 72vh; padding-top: calc(var(--header-height) + clamp(5rem, 13vw, 9rem)); padding-bottom: 8rem; }
.legal-page h1 { margin-bottom: 2rem; font-size: clamp(4rem, 13vw, 8rem); }
.legal-page > p, .legal-placeholder { max-width: 52rem; }
.legal-page > p[data-i18n$=".body"], .legal-placeholder p { white-space: pre-line; }
.legal-placeholder { margin-top: 3rem; padding: 1.5rem; border: 1px solid rgba(33,29,26,.2); }

.contact-float { position: fixed; z-index: 80; right: .75rem; bottom: .75rem; min-height: 3.5rem; display: grid; grid-template-columns: 2.75rem 1rem; align-items: center; gap: .55rem; padding: .4rem .6rem .4rem .4rem; border-radius: 999px; color: white; background: var(--ink); box-shadow: 0 12px 35px rgba(0,0,0,.24); transition: transform .3s var(--ease); }
.contact-float:hover { transform: translateY(-3px); }
.contact-float > img { width: 2.75rem; height: 2.75rem; border-radius: 50%; object-fit: cover; filter: grayscale(1); }
.whatsapp-mark { font-size: 1.25rem; color: #82db91; }
.contact-float-copy { display: none; }

.site-footer { padding: clamp(4rem, 12vw, 8rem) 0 2rem; background: var(--soft); }
.footer-top { display: grid; gap: 2rem; padding-bottom: 4rem; }
.footer-logo { width: fit-content; display: inline-flex; align-items: center; gap: .85rem; }
.footer-logo img { width: min(5rem, 18vw); }
.footer-logo .brand-wordmark { font-size: clamp(1.55rem, 5vw, 2.45rem); }
.footer-top p { max-width: 28rem; font-family: var(--display); font-size: clamp(2rem, 7vw, 3.8rem); line-height: 1; }
.footer-grid { display: grid; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(33,29,26,.2); }
.footer-grid nav { display: grid; align-content: start; gap: .55rem; }
.footer-grid a { width: fit-content; font-size: .77rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.footer-place { font-family: var(--display); font-size: 1.4rem; line-height: 1.25; }
.footer-place span { font-family: var(--body); font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; }

.consent-banner { position: fixed; z-index: 200; left: .75rem; right: .75rem; bottom: .75rem; max-width: 44rem; margin-inline: auto; padding: 1.2rem; color: var(--white); background: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.28); }
.consent-banner p { margin-bottom: 1rem; font-size: .78rem; line-height: 1.55; }
.consent-banner > div { display: flex; flex-wrap: wrap; gap: .65rem; }
.primary-button, .secondary-button { min-height: 2.7rem; padding: .65rem 1rem; border: 1px solid var(--white); font-size: .72rem; font-weight: 600; cursor: pointer; }
.primary-button { color: var(--ink); background: var(--white); }
.secondary-button { color: var(--white); background: transparent; }
.toast { position: fixed; z-index: 250; left: 50%; bottom: 5.5rem; max-width: calc(100% - 2rem); padding: .85rem 1.1rem; color: white; background: var(--ink); font-size: .78rem; opacity: 0; pointer-events: none; transform: translate(-50%, .7rem); transition: .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 48rem) {
  :root { --header-height: 5.4rem; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .brand img { width: 4rem; }
  .brand-wordmark { font-size: 1.35rem; }
  .hero-slide { object-position: var(--desktop-focal-x, 50%) var(--desktop-focal-y, 50%); }
  .menu-toggle { display: none; }
  .primary-nav { position: static; display: flex; flex-direction: row; justify-content: center; gap: clamp(1.2rem, 3vw, 3.2rem); padding: 0; color: inherit; background: transparent; visibility: visible; opacity: 1; }
  .primary-nav a { position: relative; min-height: 0; padding: 0; border: 0; font-family: var(--body); font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: 1; transform: none; }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { content: ""; position: absolute; top: calc(100% + .35rem); left: 0; width: 100%; height: 1px; margin: 0; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
  .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .choice-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(2rem, 5vw, 6rem); }
  .choice-card:nth-child(2) { margin-top: 8rem; }
  .choice-image { aspect-ratio: .78; }
  .story-item { width: min(72vw, 72rem); }
  .story-item:nth-child(3n + 2) { width: min(51vw, 50rem); margin-left: auto; }
  .story-item:nth-child(3n) { width: min(58vw, 58rem); margin-left: 8vw; }
  .story-caption { margin-top: -3.5rem; padding: 1.6rem 1.8rem; }
  .consulting-hero { grid-template-columns: 52% 48%; }
  .consulting-photo { min-height: calc(100svh - var(--header-height)); }
  .consulting-heading { padding: 4rem clamp(2rem, 5vw, 7rem); }
  .consulting-steps { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; align-items: end; }
  .footer-grid { grid-template-columns: 1fr 1fr 1.5fr; }
  .contact-float { right: 1.3rem; bottom: 1.3rem; grid-template-columns: 3.15rem 1rem auto; }
  .contact-float > img { width: 3.15rem; height: 3.15rem; }
  .contact-float-copy { display: grid; padding-right: .6rem; }
  .contact-float-copy small { font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }
  .contact-float-copy strong { font-size: .72rem; font-weight: 500; }
}

@media (min-width: 75rem) {
  .hero-copy { left: max(var(--gutter), calc((100vw - 92rem) / 2 + var(--gutter))); }
  .choice-card:first-child { width: 88%; }
  .choice-card:nth-child(2) { width: 88%; justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero-slide { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}
