:root {
  --ink: #17212a;
  --ink-soft: #26333d;
  --paper: #fbf9f5;
  --ivory: #f3efe8;
  --stone: #d8d1c7;
  --mist: #dce1e2;
  --bronze: #a7835f;
  --bronze-light: #c7ad90;
  --white: #ffffff;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1240px;
  --shadow: 0 26px 80px rgba(10, 17, 23, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.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; top: -50px; left: 24px; z-index: 1000; background: var(--white); padding: 10px 16px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}
.site-header.scrolled { background: rgba(251,249,245,.95); color: var(--ink); box-shadow: 0 8px 36px rgba(10,17,23,.08); backdrop-filter: blur(16px); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo { width: 46px; height: 46px; flex: 0 0 auto; object-fit: cover; border: 1px solid rgba(199,173,144,.45); }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: .01em; }
.brand-copy small { margin-top: 5px; opacity: .72; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; letter-spacing: .04em; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: currentColor; transition: width .2s ease; }
.main-nav > a:hover::after { width: 100%; }
.nav-cta { border: 1px solid currentColor; padding: 11px 18px; transition: background .2s ease, color .2s ease; }
.nav-cta:hover { background: currentColor; color: var(--ink); }
.site-header.scrolled .nav-cta:hover { color: var(--paper); }
.menu-toggle { display: none; border: 0; background: none; color: inherit; padding: 12px; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px 0; }

.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--ivory); }
.section-paper { background: var(--paper); }
.hero { min-height: 870px; position: relative; overflow: hidden; padding: 148px 0 86px; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 9% 18%, rgba(167,131,95,.17), transparent 32%), linear-gradient(120deg, rgba(255,255,255,.015), transparent 55%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr); align-items: center; gap: 90px; }
.hero-copy { padding-top: 42px; }
.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--bronze-light); }
.eyebrow.dark { color: #82684e; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: .99; }
h1 { max-width: 770px; margin-bottom: 28px; font-size: clamp(58px, 7.2vw, 104px); }
h2 { margin-bottom: 28px; font-size: clamp(43px, 5vw, 72px); }
h3 { line-height: 1.25; }
.hero-lead { max-width: 690px; margin-bottom: 38px; color: rgba(255,255,255,.72); font-size: clamp(18px, 2vw, 21px); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 14px 24px; border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--bronze-light); }
.text-link { font-size: 13px; letter-spacing: .04em; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link.light { color: rgba(255,255,255,.86); }
.credentials { display: flex; gap: 0; margin-top: 62px; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.credentials span { padding: 0 18px; border-left: 1px solid rgba(255,255,255,.18); }
.credentials span:first-child { padding-left: 0; border-left: 0; }
.hero-portrait { position: relative; padding: 0 0 46px 34px; }
.hero-portrait::before { display: none; }
.portrait-frame { position: relative; width: 100%; aspect-ratio: 1122 / 1402; overflow: hidden; box-shadow: var(--shadow); }
.portrait-frame picture { display: block; width: 100%; height: 100%; }
.portrait-frame img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: saturate(.96) contrast(1.01); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(23,33,42,.32)); }
.portrait-caption { position: absolute; z-index: 2; left: 0; bottom: 0; max-width: 310px; margin: 0; padding: 20px 22px; color: var(--ink); background: var(--paper); font-family: var(--serif); font-size: 17px; line-height: 1.35; }
.hero-index { position: absolute; bottom: 32px; left: max(24px, calc((100% - var(--max))/2)); color: rgba(255,255,255,.16); font-family: var(--serif); font-size: 22px; }

.manifesto, .about, .indications, .process, .ethics, .faq { padding: 140px 0; }
.manifesto-grid, .ethics-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.section-heading h2 { max-width: 560px; }
.large-text { font-family: var(--serif); font-size: clamp(27px, 3vw, 39px); line-height: 1.35; letter-spacing: -.02em; }
.principles { margin-top: 74px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; }
.principles article { border-top: 1px solid var(--stone); padding-top: 20px; }
.principles span, .editorial-list span { color: #876f58; font-family: var(--serif); font-size: 15px; }
.principles h3 { margin: 22px 0 12px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.principles p { color: #53606a; font-size: 14px; }

.about-grid { display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: 110px; }
.about-image { position: relative; max-width: 510px; }
.about-image picture { display: block; }
.about-image img { display: block; width: 100%; height: auto; aspect-ratio: 1122 / 1402; object-fit: contain; object-position: center; filter: saturate(.97) contrast(1.01); }
.image-note { position: absolute; right: -55px; bottom: 32px; width: 220px; background: var(--ink); color: var(--white); padding: 23px; font-size: 11px; letter-spacing: .1em; line-height: 1.55; text-transform: uppercase; }
.about-copy { max-width: 650px; }
.about-copy h2 { font-size: clamp(42px, 4.5vw, 66px); }
.about-copy > p:not(.eyebrow) { color: #4b5861; font-size: 17px; }
.profile-facts { margin: 46px 0 0; border-top: 1px solid var(--stone); }
.profile-facts > div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--stone); }
.profile-facts dt { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #7c6a59; }
.profile-facts dd { margin: 0; font-family: var(--serif); font-size: 18px; }

.split-heading { display: grid; grid-template-columns: 1.2fr .55fr; align-items: end; gap: 100px; margin-bottom: 80px; }
.split-heading h2 { max-width: 780px; margin-bottom: 0; }
.split-heading > p { color: #53606a; }
.editorial-list { border-top: 1px solid #bcb4a9; }
.editorial-list article { display: grid; grid-template-columns: 70px 1.1fr .9fr; gap: 30px; align-items: start; padding: 30px 0; border-bottom: 1px solid #cfc7bc; }
.editorial-list h3 { margin: 0; font-family: var(--serif); font-size: clamp(23px, 2.1vw, 31px); font-weight: 500; }
.editorial-list p { margin: 0; color: #5a6670; }

.light-heading > p { color: rgba(255,255,255,.58); }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.process-steps li { display: grid; grid-template-columns: 80px 1fr; padding: 31px 0; border-bottom: 1px solid rgba(255,255,255,.19); }
.process-steps span { color: var(--bronze-light); font-family: var(--serif); }
.process-steps div { display: grid; grid-template-columns: .55fr 1fr; gap: 60px; }
.process-steps h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.process-steps p { margin: 0; max-width: 650px; color: rgba(255,255,255,.62); }

.ethics-content { padding-top: 12px; }
.clean-list { margin: 44px 0 0; padding: 0; list-style: none; }
.clean-list li { position: relative; padding: 17px 0 17px 32px; border-top: 1px solid var(--stone); color: #4f5c65; }
.clean-list li::before { content: "—"; position: absolute; left: 0; color: var(--bronze); }
.clean-list li:last-child { border-bottom: 1px solid var(--stone); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 105px; }
.accordion { border-top: 1px solid #bdb5aa; }
details { border-bottom: 1px solid #cfc7bc; }
summary { cursor: pointer; list-style: none; position: relative; padding: 26px 48px 26px 0; font-family: var(--serif); font-size: 24px; line-height: 1.3; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 2px; top: 23px; color: #7f6750; font-family: var(--sans); font-size: 24px; font-weight: 300; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 720px; padding: 0 48px 25px 0; color: #56636c; }

.final-cta { padding: 130px 0; text-align: center; }
.final-cta-inner { max-width: 890px; }
.final-cta h2 { margin-inline: auto; }
.final-cta-inner > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 38px; color: rgba(255,255,255,.65); font-size: 18px; }
.centered { justify-content: center; }

.site-footer { padding: 80px 0 34px; background: #10181f; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .65fr; gap: 90px; }
.footer-grid > div:first-child p { max-width: 470px; margin-top: 25px; }
.footer-grid h3 { color: var(--white); margin: 0 0 20px; font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin: 9px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { color: var(--white); }
.legal-row { display: flex; justify-content: space-between; gap: 50px; margin-top: 70px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); font-size: 11px; }
.legal-row p:first-child { max-width: 760px; }

.privacy-settings { display: block; margin: 9px 0; padding: 0; border: 0; background: none; color: inherit; font: inherit; font-size: 14px; cursor: pointer; text-align: left; }
.privacy-settings:hover { color: var(--white); }
.whatsapp-float { position: fixed; z-index: 190; right: 24px; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #1fa855; color: #fff; box-shadow: 0 12px 35px rgba(17, 86, 48, .3); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(17, 86, 48, .38); }
.whatsapp-float svg { width: 31px; height: 31px; fill: currentColor; }
.cookie-banner { position: fixed; z-index: 200; right: 24px; bottom: 24px; width: min(590px, calc(100% - 48px)); display: none; align-items: center; gap: 24px; padding: 22px; background: var(--paper); box-shadow: var(--shadow); border: 1px solid var(--stone); font-size: 12px; line-height: 1.5; }
.cookie-banner.show { display: flex; }
.cookie-banner strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 20px; color: var(--ink); }
.cookie-banner p { margin: 0; }
.cookie-banner a { text-decoration: underline; }
.cookie-actions { display: flex; flex-direction: column-reverse; flex: 0 0 auto; gap: 8px; }
.cookie-banner button { min-width: 156px; border: 1px solid var(--ink); background: var(--ink); color: var(--white); padding: 11px 14px; cursor: pointer; }
.cookie-banner .cookie-secondary { background: transparent; color: var(--ink); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .13s; }

@media (max-width: 1040px) {
  .main-nav { gap: 17px; }
  .hero-grid { gap: 50px; }
  .portrait-frame { height: auto; }
  .manifesto-grid, .about-grid, .ethics-grid, .faq-grid { gap: 65px; }
  .principles { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 36px), var(--max)); }
  .header-inner { min-height: 76px; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .main-nav { position: fixed; inset: 0; display: none; flex-direction: column; justify-content: center; align-items: flex-start; padding: 90px 38px; background: var(--paper); color: var(--ink); font-family: var(--serif); font-size: 32px; }
  .main-nav.open { display: flex; }
  .main-nav .nav-cta { margin-top: 16px; font-family: var(--sans); font-size: 12px; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { padding-top: 0; }
  .hero-portrait { max-width: 600px; justify-self: end; }
  .manifesto, .about, .indications, .process, .ethics, .faq { padding: 100px 0; }
  .manifesto-grid, .about-grid, .ethics-grid, .faq-grid, .split-heading { grid-template-columns: 1fr; gap: 48px; }
  .about-image { margin-left: 0; }
  .editorial-list article { grid-template-columns: 55px 1fr; }
  .editorial-list article p { grid-column: 2; }
  .process-steps div { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }
  .brand-logo { width: 40px; height: 40px; }
  .hero { padding: 116px 0 70px; }
  h1 { font-size: 56px; }
  h2 { font-size: 44px; }
  .hero-lead { font-size: 17px; }
  .credentials { flex-wrap: wrap; gap: 8px 0; }
  .credentials span { padding: 0 10px; }
  .credentials span:nth-child(3) { width: 100%; border-left: 0; padding-left: 0; }
  .hero-portrait { padding-left: 18px; }
  .portrait-frame { height: auto; }
  .portrait-caption { max-width: 245px; font-size: 15px; }
  .manifesto, .about, .indications, .process, .ethics, .faq { padding: 78px 0; }
  .large-text { font-size: 28px; }
  .about-image { padding-right: 18px; }
  .image-note { right: 0; bottom: -28px; width: 190px; }
  .about-copy { padding-top: 35px; }
  .profile-facts > div { grid-template-columns: 100px 1fr; }
  .editorial-list article { grid-template-columns: 38px 1fr; gap: 18px; }
  .process-steps li { grid-template-columns: 48px 1fr; gap: 10px; }
  .final-cta { padding: 90px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .legal-row { display: block; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .cookie-banner { right: 16px; bottom: 16px; width: calc(100% - 32px); flex-direction: column; align-items: stretch; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-banner button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
