:root {
  --green: #043927;
  --green-2: #0b4a36;
  --ivory: #f7f3ea;
  --sand: #ded4c7;
  --charcoal: #22221f;
  --gold: #b89a68;
  --white: #fff;
  --line: rgba(34, 34, 31, .16);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.splash {
  align-items: center;
  background: var(--green);
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  transition: opacity .8s ease, visibility .8s ease;
  z-index: 100;
}
.splash img { width: min(52vw, 390px); }
.site-ready .splash { opacity: 0; visibility: hidden; }

.site-header {
  color: var(--white);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
  z-index: 50;
}
.site-header.is-scrolled {
  background: rgba(247, 243, 234, .96);
  box-shadow: 0 1px 0 rgba(34, 34, 31, .08);
  color: var(--charcoal);
}
.header-inner {
  align-items: center;
  display: flex;
  height: 86px;
  justify-content: space-between;
  margin: auto;
  max-width: var(--max);
  padding: 0 30px;
}
.brand {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav { align-items: center; display: flex; gap: 26px; }
.nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  position: relative;
  text-transform: uppercase;
}
.nav a::after {
  background: currentColor;
  bottom: -6px;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
  width: 100%;
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { background: none; border: 0; color: currentColor; display: none; padding: 6px; }
.menu-toggle span { background: currentColor; display: block; height: 1px; margin: 5px 0; width: 24px; }

.hero {
  align-items: flex-end;
  background-image: linear-gradient(90deg, rgba(0,0,0,.47), rgba(0,0,0,.03) 72%), url('../assets/hero-ear.webp');
  background-position: center 36%;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 100svh;
  position: relative;
}
.hero-content { margin: 0 auto; max-width: var(--max); padding: 160px 30px 72px; width: 100%; }
.hero h1, .section-title, .editorial h2, .contact h2, .world h2, .modal h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 0;
}
.hero h1 { font-size: clamp(58px, 8vw, 112px); line-height: .9; max-width: 710px; }
.hero p { font-size: 16px; line-height: 1.7; margin: 24px 0 32px; max-width: 510px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .15em;
  min-height: 50px;
  padding: 0 21px;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { background: var(--green-2); border-color: var(--green-2); transform: translateY(-2px); }
.button--light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }
.button--light:hover { background: var(--white); border-color: var(--white); color: var(--green); }
.button--outline { background: transparent; color: var(--green); }
.button--outline:hover { color: var(--white); }

.marquee {
  background: var(--green);
  color: var(--ivory);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track { animation: marquee 20s linear infinite; display: inline-flex; gap: 46px; padding: 13px 0; }
.marquee-track span { font-family: var(--serif); font-size: 22px; letter-spacing: .08em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 120px 30px; }
.container { margin: 0 auto; max-width: var(--max); }
.section-head { align-items: flex-end; display: flex; gap: 24px; justify-content: space-between; margin-bottom: 48px; }
.section-title { font-size: clamp(48px, 6vw, 78px); line-height: .96; }
.section-copy { line-height: 1.75; max-width: 460px; }
.eyebrow {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--green);
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.piece-grid { display: grid; gap: 26px 18px; grid-template-columns: repeat(4, 1fr); }
.archive-grid { grid-template-columns: repeat(4, 1fr); }
.piece-card { cursor: pointer; outline: none; }
.piece-card__image-wrap { aspect-ratio: .78; background: var(--sand); overflow: hidden; }
.piece-card__image { height: 100%; object-fit: cover; transition: transform .55s ease; width: 100%; }
.piece-card:hover .piece-card__image, .piece-card:focus .piece-card__image { transform: scale(1.045); }
.piece-card__body { padding: 18px 2px 0; }
.piece-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1; margin: 0; }
.piece-card__category { color: rgba(34,34,31,.68); font-size: 12px; letter-spacing: .08em; margin: 10px 0 0; text-transform: uppercase; }

.editorial { background: var(--sand); display: grid; grid-template-columns: 1fr 1fr; }
.editorial-media { min-height: 720px; }
.editorial-media img { height: 100%; object-fit: cover; width: 100%; }
.editorial-copy { align-self: center; padding: 70px clamp(35px, 8vw, 120px); }
.editorial h2, .world h2, .contact h2 { font-size: clamp(52px, 6vw, 84px); line-height: .92; }
.editorial p, .world p, .contact p { line-height: 1.8; margin: 24px 0 30px; }

.archive { background: #fbf8f1; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-chip { background: transparent; border: 1px solid var(--line); color: var(--charcoal); font-size: 10px; letter-spacing: .14em; padding: 10px 14px; text-transform: uppercase; }
.filter-chip.is-active, .filter-chip:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.world { padding: 0; }
.world-grid { display: grid; grid-template-columns: 1.05fr .95fr; }
.world-copy { align-self: center; padding: 100px clamp(30px, 7vw, 110px); }
.world-media { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.world-media img { height: 100%; object-fit: cover; width: 100%; }
.world-media img:first-child { grid-row: span 2; }
.quote {
  color: var(--green);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.06;
  margin-top: 44px;
}

.bespoke { background: var(--green); color: var(--ivory); padding: 120px 30px; text-align: center; }
.bespoke h2 { font-family: var(--serif); font-size: clamp(58px, 8vw, 112px); font-weight: 500; line-height: .9; margin: 0 auto; max-width: 880px; }
.bespoke p { line-height: 1.8; margin: 25px auto 32px; max-width: 620px; }

.contact { display: grid; gap: 80px; grid-template-columns: .85fr 1.15fr; padding: 120px 30px; }
.contact-inner { margin: 0 auto; max-width: var(--max); width: 100%; }
.contact-details a { color: var(--green); display: block; margin: 8px 0; }
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.field--full { grid-column: 1 / -1; }
label { color: rgba(34,34,31,.72); display: block; font-size: 10px; font-weight: 700; letter-spacing: .13em; margin-bottom: 8px; text-transform: uppercase; }
input, select, textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  outline: none;
  padding: 13px 0;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-bottom-color: var(--green); }
textarea { min-height: 120px; resize: vertical; }
.form-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.form-note { color: rgba(34,34,31,.6); font-size: 11px; line-height: 1.6; }

.footer { background: var(--green); color: var(--ivory); padding: 55px 30px 24px; }
.footer-inner { margin: 0 auto; max-width: var(--max); }
.footer-top { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr 1fr; padding-bottom: 45px; }
.footer-brand { font-family: var(--serif); font-size: 38px; line-height: .9; margin: 0; }
.footer h4 { font-size: 10px; letter-spacing: .17em; margin: 0 0 16px; text-transform: uppercase; }
.footer a { display: block; font-size: 13px; margin: 9px 0; opacity: .88; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); display: flex; flex-wrap: wrap; font-size: 11px; gap: 16px; justify-content: space-between; opacity: .68; padding-top: 18px; }

.modal {
  align-items: stretch;
  background: rgba(0,0,0,.48);
  display: flex;
  inset: 0;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .25s ease;
  z-index: 90;
}
.modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.modal-panel {
  background: var(--ivory);
  display: grid;
  grid-template-rows: minmax(360px, 47vh) auto;
  max-width: 610px;
  overflow: auto;
  transform: translateX(25px);
  transition: transform .28s ease;
  width: 100%;
}
.modal[aria-hidden="false"] .modal-panel { transform: translateX(0); }
.modal-image { height: 100%; object-fit: cover; width: 100%; }
.modal-copy { padding: 34px 34px 42px; }
.modal h2 { font-size: 54px; line-height: .92; }
.modal ul { line-height: 1.8; margin: 22px 0; padding-left: 18px; }
.modal p { line-height: 1.75; }
.modal-close { background: rgba(247,243,234,.94); border: 0; border-radius: 50%; font-size: 25px; height: 42px; position: absolute; right: 18px; top: 18px; width: 42px; }

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

.legal { margin: 0 auto; max-width: 900px; padding: 140px 30px 90px; }
.legal h1 { font-family: var(--serif); font-size: 76px; font-weight: 500; margin: 0 0 30px; }
.legal h2 { font-family: var(--serif); font-size: 34px; font-weight: 500; margin: 40px 0 10px; }
.legal p { line-height: 1.75; }

@media (max-width: 980px) {
  .piece-grid, .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial, .world-grid, .contact { grid-template-columns: 1fr; }
  .editorial-media { min-height: 580px; }
  .world-media { min-height: 520px; order: -1; }
  .contact { gap: 40px; padding: 90px 30px; }
}

@media (max-width: 760px) {
  .header-inner { height: 72px; padding: 0 18px; }
  .brand { font-size: 21px; }
  .menu-toggle { display: block; }
  .nav {
    align-items: flex-start;
    background: var(--ivory);
    color: var(--charcoal);
    display: none;
    flex-direction: column;
    gap: 23px;
    left: 0;
    padding: 30px 20px 36px;
    position: absolute;
    right: 0;
    top: 72px;
  }
  .nav.is-open { display: flex; }
  .hero { background-position: 56% center; min-height: 90svh; }
  .hero-content { padding: 130px 20px 48px; }
  .hero h1 { font-size: 68px; max-width: 340px; }
  .hero p { font-size: 14px; max-width: 330px; }
  .section { padding: 82px 20px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 15px; margin-bottom: 30px; }
  .section-title { font-size: 56px; }
  .piece-grid, .archive-grid { gap: 24px 12px; }
  .piece-card h3 { font-size: 23px; }
  .piece-card__body { padding-top: 14px; }
  .editorial-media { min-height: 430px; }
  .editorial-copy, .world-copy { padding: 62px 20px; }
  .world-media { min-height: 380px; }
  .quote { font-size: 31px; }
  .bespoke { padding: 92px 20px; }
  .bespoke h2 { font-size: 70px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer { padding-inline: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .modal-panel { max-width: 100%; }
  .modal-copy { padding: 28px 22px 36px; }
  .modal h2 { font-size: 46px; }
}

/* Legal, privacy and quick-contact additions */
:root {
  --serif: Didot, 'Bodoni 72', 'Iowan Old Style', Georgia, serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}
.form-note a { color: var(--green); text-decoration: underline; }
.footer-link-button, .link-button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
}
.footer-link-button { display: block; font-size: 13px; margin: 9px 0; opacity: .88; text-decoration: none; }
.social-dock {
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: fixed;
  right: 18px;
  z-index: 55;
}
.social-dock a {
  background: rgba(4,57,39,.95);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  padding: 12px 14px;
  text-align: center;
  text-transform: uppercase;
}
.cookie-banner {
  align-items: center;
  background: rgba(247,243,234,.98);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -8px 26px rgba(0,0,0,.08);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  padding: 18px 24px;
  position: fixed;
  right: 0;
  z-index: 110;
}
.cookie-banner[hidden], .cookie-preferences[hidden] { display: none; }
.cookie-banner p { font-size: 12px; line-height: 1.55; margin: 0; max-width: 760px; }
.cookie-title { color: var(--green); font-size: 11px !important; font-weight: 700; letter-spacing: .15em; margin-bottom: 4px !important; text-transform: uppercase; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding: 0 14px; }
.cookie-preferences {
  align-items: center;
  background: rgba(0,0,0,.52);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 120;
}
.cookie-preferences__panel {
  background: var(--ivory);
  max-width: 620px;
  padding: 34px;
  position: relative;
  width: 100%;
}
.cookie-preferences h2 { font-family: var(--serif); font-size: 54px; font-weight: 500; margin: 0 0 20px; }
.cookie-choice { align-items: center; border-top: 1px solid var(--line); display: flex; gap: 14px; justify-content: space-between; margin: 0; padding: 16px 0; text-transform: none; }
.cookie-choice span { display: grid; gap: 5px; }
.cookie-choice small { color: rgba(34,34,31,.68); font-size: 12px; font-weight: 400; letter-spacing: normal; line-height: 1.5; }
.cookie-choice input { width: auto; }
.legal { max-width: 980px; }
.legal h3 { font-family: var(--serif); font-size: 25px; font-weight: 500; margin: 26px 0 8px; }
.legal a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 70px 0; }
.legal-intro { color: rgba(34,34,31,.75); font-size: 17px; }
.legal-summary { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 15px 22px; margin: 30px 0 45px; padding: 18px 0; }
.legal-summary a { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.legal-note, .legal-box { background: #efe8dc; border-left: 3px solid var(--green); padding: 16px 18px; }
.legal-todo { background: #fff1c9; color: #5c3c00; display: inline; padding: 2px 4px; }
.legal ul { line-height: 1.8; }
@media (max-width: 760px) {
  .social-dock { bottom: 12px; right: 10px; }
  .social-dock a { font-size: 9px; padding: 10px; }
  .cookie-banner { align-items: stretch; flex-direction: column; padding: 16px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .button { width: 100%; }
  .cookie-preferences__panel { padding: 28px 20px; }
  .cookie-preferences h2 { font-size: 44px; }
  .legal h1 { font-size: 58px; }
  .legal-nav a:first-child { display: none; }
}
