:root {
  --ivory: #f2efe8;
  --paper: #e8e3da;
  --ink: #171714;
  --muted: #6f6c65;
  --bronze: #9a7850;
  --line: rgba(23, 23, 20, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Helvetica Neue", "Noto Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { width: 100%; height: 100%; display: block; object-fit: cover; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 96px;
  padding: 0 4vw;
  color: white;
  transition: background .35s, color .35s, height .35s;
}
.site-header.scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(242, 239, 232, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand, .footer-brand { display: inline-flex; flex-direction: column; width: max-content; }
.brand-name { font-size: 17px; font-weight: 700; letter-spacing: .19em; line-height: 1; }
.brand-sub { margin-top: 6px; font-size: 7px; font-weight: 500; letter-spacing: .42em; }
.desktop-nav { display: flex; gap: 42px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px; background: currentColor;
  transition: right .25s;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.header-cta { font-size: 10px; font-weight: 700; letter-spacing: .18em; border-bottom: 1px solid; padding-bottom: 4px; text-transform: uppercase; }
.language-switcher { position: relative; }
.language-current {
  color: inherit; border: 0; background: transparent; cursor: pointer;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; padding: 8px;
}
.chevron { margin-left: 4px; }
.language-menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 180px;
  padding: 8px; background: var(--ivory); color: var(--ink);
  box-shadow: 0 18px 50px rgba(0,0,0,.16); opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: .2s;
}
.language-menu.open { opacity: 1; visibility: visible; transform: none; }
.language-menu button {
  width: 100%; display: flex; justify-content: space-between; padding: 10px;
  border: 0; background: none; cursor: pointer; text-align: left; font-size: 12px;
}
.language-menu button:hover { background: var(--paper); }
.language-menu span { font-size: 9px; color: var(--muted); }
.menu-toggle { display: none; background: none; border: 0; width: 32px; padding: 5px; }
.menu-toggle span { display: block; height: 1px; background: currentColor; margin: 6px 0; }

.hero { min-height: 100vh; display: grid; grid-template-columns: 46% 54%; position: relative; background: #1b1916; color: white; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 140px 6vw 90px; position: relative; z-index: 2; }
.hero-image { position: relative; overflow: hidden; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(27,25,22,.35), transparent 30%); }
.hero-image img { object-position: center 32%; transform: scale(1.015); animation: heroZoom 1.5s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.eyebrow { margin: 0 0 26px; font-size: 10px; font-weight: 700; letter-spacing: .24em; color: var(--bronze); text-transform: uppercase; }
h1, h2 { margin: 0; font-weight: 300; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(54px, 5.2vw, 92px); }
h2 { font-size: clamp(43px, 4.6vw, 76px); }
.hero-text { max-width: 510px; margin: 34px 0 36px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.7; }
.text-link { display: flex; align-items: center; justify-content: space-between; width: 245px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.text-link i, .solid-button i { font-style: normal; font-size: 16px; transition: transform .2s; }
.text-link:hover i, .solid-button:hover i { transform: translate(3px, -3px); }
.image-caption { position: absolute; z-index: 2; right: 38px; bottom: 28px; display: flex; gap: 22px; font-size: 8px; letter-spacing: .2em; }
.scroll-cue { position: absolute; z-index: 3; bottom: 26px; left: 4vw; display: flex; align-items: center; gap: 15px; font-size: 8px; letter-spacing: .22em; color: rgba(255,255,255,.6); }
.scroll-cue i { width: 44px; height: 1px; background: currentColor; }

.section-pad { padding: 10vw 7vw; }
.section-index { margin: 0; font-size: 9px; letter-spacing: .18em; color: var(--muted); }
.statement { display: grid; grid-template-columns: 24% 1fr; min-height: 680px; align-items: start; }
.statement-content { max-width: 970px; }
.statement h2 { margin-bottom: 42px; }
.statement-content > p:last-child { max-width: 620px; margin: 0 0 0 auto; color: var(--muted); font-size: 17px; line-height: 1.8; }

.heritage { display: grid; grid-template-columns: 50% 50%; min-height: 900px; background: var(--paper); }
.heritage-image { min-height: 900px; position: relative; overflow: hidden; }
.heritage-image img { filter: grayscale(100%); object-position: center 25%; }
.vertical-note { position: absolute; left: 24px; bottom: 30px; color: white; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 8px; letter-spacing: .18em; }
.heritage-copy { display: grid; grid-template-columns: 18% 1fr; align-content: center; }
.heritage-copy h2 { margin-bottom: 42px; }
.heritage-copy div > p:not(.eyebrow) { max-width: 560px; color: var(--muted); line-height: 1.8; }
.heritage-stat { display: flex; gap: 22px; align-items: flex-end; margin-top: 70px; padding-top: 30px; border-top: 1px solid var(--line); }
.heritage-stat strong { font-size: 72px; line-height: .8; font-weight: 300; letter-spacing: -.06em; }
.heritage-stat span { font-size: 9px; line-height: 1.5; letter-spacing: .16em; }

.method { background: var(--ink); color: var(--ivory); }
.method-heading { display: grid; grid-template-columns: 17% 1fr; margin-bottom: 80px; }
.method .section-index { color: rgba(255,255,255,.4); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.method-card { min-height: 360px; padding: 24px 28px 34px; border-right: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; }
.method-card:last-child { border-right: 0; }
.method-card > span { color: rgba(255,255,255,.4); font-size: 9px; letter-spacing: .15em; }
.method-icon { margin: auto 0; color: var(--bronze); font-size: 38px; font-weight: 200; }
.method-card h3 { margin: 0 0 13px; font-size: 22px; font-weight: 400; }
.method-card p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.7; }

.gallery { height: 74vh; min-height: 600px; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery img { transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s; }
.gallery:hover img { filter: brightness(.72); }
.gallery figure:hover img { transform: scale(1.035); filter: brightness(1); }

.centres { display: grid; grid-template-columns: 50% 50%; min-height: 940px; }
.centres-image { overflow: hidden; }
.centres-image img { object-position: center 30%; }
.centres-copy { display: grid; grid-template-columns: 18% 1fr; align-content: center; }
.centres-copy h2 { margin-bottom: 36px; }
.centres-intro { color: var(--muted); max-width: 570px; line-height: 1.8; }
.centres ul { list-style: none; padding: 0; margin: 50px 0; border-top: 1px solid var(--line); }
.centres li { display: flex; gap: 28px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.centres li span { font-size: 9px; color: var(--bronze); }
.centres li p { margin: 0; font-size: 13px; }
.solid-button { display: inline-flex; justify-content: space-between; align-items: center; width: 235px; padding: 18px 20px; border: 1px solid var(--ink); background: var(--ink); color: white; font-size: 9px; font-weight: 700; letter-spacing: .17em; cursor: pointer; }

.contact { background: #c9bba9; display: grid; grid-template-columns: 42% 58%; gap: 8vw; }
.contact-heading h2 { font-size: clamp(42px, 4vw, 68px); }
form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 28px; align-content: start; }
label { display: block; }
label span { display: block; font-size: 8px; font-weight: 700; letter-spacing: .18em; margin-bottom: 8px; }
input, textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(23,23,20,.45); background: transparent; padding: 8px 0; outline: none; border-radius: 0; resize: none; }
input:focus, textarea:focus { border-color: var(--ink); }
.full-field { grid-column: 1 / -1; }
form .solid-button { grid-column: 1 / -1; }
.form-status { grid-column: 1 / -1; margin: 0; font-size: 12px; }

footer { min-height: 170px; padding: 55px 4vw; background: var(--ink); color: rgba(255,255,255,.65); display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; align-items: center; gap: 30px; font-size: 8px; letter-spacing: .16em; }
footer .footer-brand { color: white; }
footer a { word-break: break-word; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

[dir="rtl"] { text-align: right; }
[dir="rtl"] .language-menu { right: auto; left: 0; }
[dir="rtl"] .language-menu button { text-align: right; }
[dir="rtl"] .heritage-stat, [dir="rtl"] .centres li { flex-direction: row-reverse; }
[dir="rtl"] .statement-content > p:last-child { margin-left: 0; margin-right: auto; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .desktop-nav.mobile-open {
    display: flex; position: fixed; inset: 0; z-index: -1; background: var(--ink); color: white;
    flex-direction: column; align-items: center; justify-content: center; gap: 35px; font-size: 18px;
  }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { position: absolute; inset: 0; justify-content: flex-end; padding-bottom: 100px; background: linear-gradient(0deg, rgba(15,13,12,.8), transparent 70%); }
  .hero-image { min-height: 100vh; }
  .hero-image::after { background: rgba(0,0,0,.1); }
  .hero-image img { object-position: 60% center; }
  .heritage, .centres { grid-template-columns: 1fr; }
  .heritage-image, .centres-image { min-height: 75vh; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-card:nth-child(2) { border-right: 0; }
  .method-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .gallery { grid-template-columns: repeat(2, 1fr); height: auto; }
  .gallery figure { height: 55vh; }
  .contact { grid-template-columns: 1fr; }
  footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .site-header { height: 74px; padding: 0 20px; }
  .brand-name { font-size: 14px; }
  .brand-sub { font-size: 6px; }
  .header-actions { gap: 8px; }
  .section-pad { padding: 90px 24px; }
  h1 { font-size: 49px; }
  h2 { font-size: 42px; }
  .hero-copy { padding: 100px 24px 76px; }
  .hero-text { margin: 25px 0; font-size: 14px; }
  .image-caption { display: none; }
  .scroll-cue { left: auto; right: 24px; }
  .statement { display: block; min-height: auto; }
  .statement .section-index { margin-bottom: 65px; }
  .statement-content > p:last-child { margin-top: 35px; font-size: 15px; }
  .heritage-image { min-height: 610px; }
  .heritage-copy, .centres-copy { display: block; }
  .heritage-copy .section-index, .centres-copy .section-index { margin-bottom: 65px; }
  .method-heading { display: block; }
  .method-heading .section-index { margin-bottom: 65px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 300px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .gallery figure { height: 43vh; }
  .centres-image { min-height: 620px; }
  .contact { gap: 65px; }
  form { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  footer { grid-template-columns: 1fr; padding: 55px 24px; gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
