:root {
  --xanadu: #687564;
  --forest: #273c32;
  --terracotta: #b96342;
  --clay: #d89673;
  --cream: #f3eee4;
  --paper: #fffdf8;
  --ink: #28302b;
  --muted: #6e756f;
  --line: rgba(39, 60, 50, .16);
}

* { box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
button, input, textarea { font: inherit; }
a { color: inherit; }

.site-shell { height: 100vh; height: 100dvh; display: grid; grid-template-rows: 76px minmax(0, 1fr) 60px; overflow: hidden; }
.site-header { position: relative; z-index: 20; display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); padding: 0 clamp(24px, 4vw, 68px); background: var(--cream); border-bottom: 1px solid var(--line); }
.brand { width: 116px; height: 58px; display: grid; place-items: center; margin-right: auto; overflow: hidden; }
.brand img { width: 94px; height: 94px; object-fit: contain; }
.language { display: flex; align-items: center; gap: 6px; color: #8c8c82; font-size: 10px; font-weight: 800; }
.language button { padding: 6px 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.language button.active { color: var(--terracotta); }
.menu-button { display: none; }
nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 28px); }
nav a { position: relative; color: var(--forest); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--terracotta); transform: scaleX(0); transition: transform .2s ease; }
nav a:hover::after, nav a:focus-visible::after, nav a.active::after { transform: scaleX(1); }

.content-region { min-height: 0; overflow-y: auto; overscroll-behavior: contain; scroll-behavior: smooth; scrollbar-gutter: stable; }
.content-region > section { min-height: 100%; scroll-margin-top: 0; }
.eyebrow { margin: 0 0 18px; color: var(--terracotta); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.hero { position: relative; min-height: 100%; display: grid; align-items: end; overflow: hidden; background: var(--forest); color: #fff; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,39,31,.82) 0%, rgba(22,39,31,.46) 42%, rgba(22,39,31,.08) 78%), linear-gradient(0deg, rgba(22,39,31,.58), transparent 52%); }
.hero-copy { position: relative; z-index: 1; width: min(760px, 82vw); padding: clamp(54px, 9vh, 105px) clamp(28px, 7vw, 112px); }
.hero .eyebrow { color: #f1b18e; }
.hero h1 { margin: 0; font-size: clamp(52px, 6vw, 88px); line-height: .98; letter-spacing: -.035em; }
.hero-copy > p:last-child { max-width: 590px; margin: 25px 0 0; color: rgba(255,255,255,.84); font-size: 15px; line-height: 1.7; }
.scroll-cue { position: absolute; right: clamp(28px, 5vw, 74px); bottom: 38px; z-index: 2; display: flex; align-items: center; gap: 11px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.scroll-cue::after { content: "\2193"; width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 18px; }

.feature { display: grid; grid-template-columns: minmax(310px, .86fr) minmax(420px, 1.14fr); background: var(--paper); }
.feature.reverse { grid-template-columns: minmax(420px, 1.14fr) minmax(310px, .86fr); }
.feature-media { min-height: 520px; overflow: hidden; background: var(--forest); }
.feature-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(62px, 8vw, 124px) clamp(34px, 7vw, 105px); }
.feature h2, .cards-section h2, .faq-section h2, .social-section h2, .microsite-section h2, .contact-section h2 { margin: 0; color: var(--forest); font-size: clamp(43px, 4.8vw, 70px); line-height: 1.02; letter-spacing: -.035em; }
.lead { margin: 26px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.stat { margin: 34px 0 0; padding-top: 25px; border-top: 1px solid var(--line); }
.stat strong { display: block; color: var(--terracotta); font-family: Georgia, serif; font-size: clamp(34px, 4vw, 53px); font-weight: 400; }
.stat span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.primary-link { align-self: flex-start; margin-top: 30px; padding: 14px 19px; border: 1px solid var(--terracotta); background: var(--terracotta); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.primary-link:hover, .primary-link:focus-visible { background: #984c31; border-color: #984c31; }

.cards-section { padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 110px); background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 45px; align-items: end; margin-bottom: 50px; }
.section-heading .lead { margin: 0; max-width: 570px; }
.section-description { display: flex; flex-direction: column; align-items: flex-start; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(39,60,50,.3); }
.card { padding: 29px clamp(20px, 2.6vw, 40px) 8px 0; }
.card + .card { padding-left: clamp(20px, 2.6vw, 40px); border-left: 1px solid var(--line); }
.card-number { color: var(--terracotta); font-family: Georgia, serif; font-size: 13px; }
.card h3 { min-height: 58px; margin: 16px 0 0; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: var(--forest); font-size: 25px; line-height: 1.1; }
.card p { margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.check-list { margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 21px; border-bottom: 1px solid var(--line); color: #4d554f; font-size: 13px; line-height: 1.5; }
.check-list li::before { content: ""; position: absolute; top: 20px; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

.faq-section { padding: clamp(70px, 8vw, 120px) clamp(28px, 8vw, 130px); background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(450px, 1.3fr); gap: clamp(48px, 8vw, 130px); }
.faq-list { border-top: 1px solid rgba(39,60,50,.3); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 22px; padding: 23px 0; border: 0; background: transparent; color: var(--forest); cursor: pointer; text-align: left; font-family: Georgia, serif; font-size: 20px; }
.faq-item button span:last-child { color: var(--terracotta); font-family: Arial, sans-serif; font-size: 24px; transition: transform .2s ease; }
.faq-item.open button span:last-child { transform: rotate(45deg); }
.faq-answer { display: none; max-width: 720px; padding: 0 35px 24px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.social-section { padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 110px); background: var(--cream); }
.social-intro { max-width: 760px; margin-bottom: 42px; }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); align-items: start; }
.social-feed { min-width: 0; padding: 20px; background: var(--paper); border: 1px solid var(--line); }
.feed-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.feed-heading strong { color: var(--forest); font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.feed-heading a { color: var(--terracotta); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.social-feed iframe { width: 100%; max-width: 500px; display: block; margin: 0 auto; border: 0; }
.instagram-profile-card { position: relative; display: flex; min-height: 620px; overflow: hidden; flex-direction: column; align-items: center; justify-content: center; padding: 74px 28px 34px; border: 1px solid rgba(31,58,49,.12); background: linear-gradient(145deg, #fff 0%, #fffaf6 58%, #f7eee7 100%); color: var(--forest); text-align: center; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.instagram-profile-card:hover, .instagram-profile-card:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(31,58,49,.13); }
.instagram-profile-card:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }
.instagram-card-accent { position: absolute; inset: 0 0 auto; height: 9px; background: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.instagram-avatar { display: grid; width: 112px; height: 112px; margin-bottom: 24px; place-items: center; border: 4px solid transparent; border-radius: 50%; background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #feda75, #d62976 55%, #4f5bd5) border-box; box-shadow: 0 10px 30px rgba(31,58,49,.1); }
.instagram-avatar img { width: 82px; height: auto; display: block; }
.instagram-profile-copy { display: flex; flex-direction: column; align-items: center; }
.instagram-profile-label { margin-bottom: 10px; color: var(--terracotta); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.instagram-profile-copy strong { max-width: 100%; overflow-wrap: anywhere; font-family: Georgia, serif; font-size: clamp(20px, 2vw, 27px); font-weight: 400; }
.instagram-profile-name { margin-top: 7px; color: var(--muted); font-size: 13px; }
.instagram-profile-action { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; padding: 14px 19px; background: var(--forest); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.instagram-profile-action span { font-size: 14px; }

.microsite-section { display: grid; grid-template-columns: minmax(420px, 1.14fr) minmax(310px, .86fr); background: var(--paper); }
.microsite-media { min-height: 520px; overflow: hidden; background: var(--forest); }
.microsite-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.microsite-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(62px, 8vw, 124px) clamp(34px, 7vw, 105px); }
.microsite-logo { width: clamp(110px, 12vw, 150px); height: auto; display: block; align-self: flex-start; margin-top: 28px; }

.contact-section { display: grid; grid-template-columns: minmax(290px, .82fr) minmax(450px, 1.18fr); background: var(--forest); color: #fff; }
.contact-intro { padding: clamp(65px, 8vw, 120px) clamp(34px, 7vw, 105px); }
.contact-section h2 { color: #fff; }
.contact-section .lead { color: rgba(255,255,255,.7); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; align-content: center; gap: 20px; padding: clamp(65px, 8vw, 120px) clamp(34px, 7vw, 105px); background: rgba(255,255,255,.045); }
.contact-form label { display: grid; gap: 8px; }
.contact-form label span { color: #e8c8b5; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 0; outline: 0; background: rgba(255,255,255,.06); color: #fff; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(216,150,115,.14); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .full { grid-column: 1 / -1; }
.contact-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 11px; }
.contact-actions button { min-height: 45px; padding: 0 20px; border: 1px solid var(--clay); background: var(--terracotta); color: #fff; cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-actions .secondary { background: transparent; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 clamp(24px, 4vw, 68px); background: var(--terracotta); color: #fff; }
footer p { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

@media (max-width: 1040px) {
  nav { gap: 10px; }
  nav a { font-size: 7px; }
  .site-header { gap: 15px; padding-inline: 20px; }
}

@media (max-width: 800px) {
  .site-shell { grid-template-rows: 72px minmax(0, 1fr) 58px; }
  .site-header { height: 72px; padding: 0 18px; }
  .brand { width: 93px; height: 58px; order: 2; margin: 0 auto; }
  .brand img { width: 78px; height: 78px; }
  .menu-button { position: relative; z-index: 30; order: 1; width: 34px; height: 34px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 5px; border: 0; background: transparent; cursor: pointer; }
  .menu-button span { width: 23px; height: 3px; display: block; background: var(--terracotta); }
  .language { order: 3; margin-left: auto; }
  nav { position: absolute; top: 72px; right: 0; left: 0; display: none; padding: 20px; background: var(--cream); border-top: 1px solid var(--line); box-shadow: 0 12px 25px rgba(39,60,50,.12); }
  nav.open { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  nav a { color: var(--forest); font-size: 10px; }
  nav a::after { bottom: -6px; transform-origin: left; }
  .content-region { scrollbar-gutter: auto; }
  .content-region > section { min-height: auto; }
  .hero { min-height: 100%; }
  .hero::after { background: linear-gradient(0deg, rgba(22,39,31,.83), rgba(22,39,31,.1) 72%); }
  .hero-copy { width: 100%; padding: 48px 20px 95px; }
  .hero h1 { font-size: clamp(47px, 14vw, 66px); }
  .scroll-cue { right: 20px; bottom: 22px; }
  .feature, .feature.reverse { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
  .feature.reverse .feature-copy { order: 1; }
  .feature-media { min-height: 330px; max-height: 55vh; }
  .feature-copy { padding: 64px 20px 72px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .cards-section { padding: 66px 20px 72px; }
  .card-grid { grid-template-columns: 1fr; }
  .card { padding: 27px 0 5px; }
  .card + .card { padding-left: 0; border-left: 0; }
  .card h3 { min-height: auto; }
  .faq-section { padding: 66px 20px 76px; }
  .faq-layout { grid-template-columns: 1fr; gap: 43px; }
  .social-section { padding: 66px 20px 72px; }
  .social-grid { grid-template-columns: 1fr; }
  .social-feed { padding: 14px; }
  .instagram-profile-card { min-height: 420px; padding: 62px 18px 28px; }
  .microsite-section { grid-template-columns: 1fr; }
  .microsite-media { min-height: 330px; max-height: 55vh; }
  .microsite-copy { padding: 64px 20px 72px; }
  .microsite-logo { width: 120px; margin-top: 24px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-intro, .contact-form { padding: 64px 20px; }
  .contact-form { grid-template-columns: 1fr; padding-top: 0; }
  .contact-form label, .contact-form .full, .contact-actions { grid-column: 1; }
  footer { padding: 0 18px; }
  footer p { max-width: 190px; font-size: 7px; }
  .footer-links { gap: 10px; }
  .footer-links a { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html, .content-region { scroll-behavior: auto; }
}
