/* ════════════════════════════════════════════
   GRAIL OF FASHION — Global Stylesheet
   ════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --black:       #0E0E0C;
  --off-black:   #1A1A17;
  --white:       #F8F5EF;
  --off-white:   #F0EBE1;
  --muted:       #888880;
  --green:       #2A5C3F;
  --green-light: #3D8A5C;
  --green-pale:  #C8DDD0;
  --bd-dark:     rgba(248,245,239,0.07);
  --bd-light:    rgba(0,0,0,0.09);
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(248,245,239,.96);
  backdrop-filter: blur(16px);
  border-color: rgba(42,92,63,.12);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; letter-spacing: .07em;
  transition: color .4s;
}
.nav--dark .nav-logo { color: var(--white); }
.nav--dark.scrolled .nav-logo,
.nav--light .nav-logo { color: var(--black); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 400; transition: color .3s;
}
.nav--dark .nav-links a { color: rgba(248,245,239,.55); }
.nav--dark.scrolled .nav-links a,
.nav--light .nav-links a { color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--green) !important; }
.nav-links .nav-cta {
  padding: .5rem 1.1rem;
  border: 1px solid var(--green-light);
  color: var(--green-light) !important;
  transition: all .3s;
}
.nav--dark.scrolled .nav-links .nav-cta,
.nav--light .nav-links .nav-cta { border-color: var(--green); color: var(--green) !important; }
.nav-links .nav-cta:hover { background: var(--green); color: var(--white) !important; border-color: var(--green); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: background .4s; }
.nav--dark.scrolled .nav-hamburger span,
.nav--light .nav-hamburger span { background: var(--black); }

.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem;
  font-weight: 300; color: var(--white); letter-spacing: .04em; transition: color .25s;
}
.mobile-overlay a:hover { color: var(--green-light); }
.mobile-close {
  position: absolute; top: 1.8rem; right: 2.5rem;
  background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 12rem 3rem 6rem;
  background: var(--black);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(42,92,63,.15);
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-kicker {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--green-light); font-weight: 400; margin-bottom: 1.5rem;
}
.page-kicker::before { content: ''; width: 28px; height: 1px; background: var(--green-light); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,7vw,6rem); font-weight: 300;
  line-height: 1.02; color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--green-light); }
.page-hero p {
  margin-top: 1.5rem; font-size: .95rem; color: rgba(248,245,239,.45);
  font-weight: 300; line-height: 1.8; max-width: 500px;
}

/* ─── MARQUEE ─── */
.marquee { overflow: hidden; background: var(--green); }
.marquee-track {
  display: flex; animation: mq 26s linear infinite; white-space: nowrap;
}
.marquee-track span {
  font-size: .66rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(248,245,239,.65); font-weight: 300; flex-shrink: 0;
  padding: .85rem 2rem; border-right: 1px solid rgba(248,245,239,.12);
}
.marquee-track span.hi { color: var(--white); font-weight: 400; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .9rem 2rem; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 400; transition: all .3s;
}
.btn svg { width: 13px; height: 13px; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-green  { background: var(--green); color: var(--white); border: 1px solid var(--green); }
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); }
.btn-dark   { border: 1px solid rgba(0,0,0,.15); color: var(--black); }
.btn-dark:hover { background: var(--black); color: var(--white); }
.btn-light  { border: 1px solid rgba(248,245,239,.25); color: rgba(248,245,239,.75); }
.btn-light:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.btn-white  { background: var(--white); color: var(--green); border: 1px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

/* ─── SECTION LABEL ─── */
.lbl {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .65rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 1.4rem; color: var(--green);
}
.lbl::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.lbl--light { color: var(--green-light); }

/* ─── PROSE (legal) ─── */
.prose { padding: 7rem 3rem; background: var(--white); }
.prose-inner { max-width: 760px; margin: 0 auto; }
.prose-inner h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300;
  color: var(--black); margin: 2.5rem 0 1rem; padding-top: 2.5rem;
  border-top: 1px solid var(--bd-light);
}
.prose-inner h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose-inner p { font-size: .92rem; line-height: 1.9; color: var(--muted); margin-bottom: 1rem; font-weight: 300; }
.prose-inner a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.prose-inner strong { color: var(--black); font-weight: 500; }

/* ─── FOOTER ─── */
.footer { background: var(--black); padding: 5rem 3rem 2.5rem; }
.footer-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--bd-dark); margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600; letter-spacing: .06em;
  color: var(--white); display: block; margin-bottom: 1rem;
}
.footer-brand p { font-size: .85rem; color: rgba(248,245,239,.35); font-weight: 300; line-height: 1.8; max-width: 240px; }
.footer-col h4 { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--green-light); font-weight: 400; margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .85rem; color: rgba(248,245,239,.4); font-weight: 300; transition: color .25s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col address { font-style: normal; font-size: .85rem; color: rgba(248,245,239,.4); font-weight: 300; line-height: 1.8; }
.footer-col address strong { color: var(--white); font-weight: 400; display: block; margin-bottom: .3rem; }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .7rem; color: rgba(248,245,239,.2); letter-spacing: .06em; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: .7rem; color: rgba(248,245,239,.3); letter-spacing: .1em; text-transform: uppercase; transition: color .25s; }
.footer-legal a:hover { color: var(--green-light); }
.footer-socials { display: flex; gap: .5rem; }
.footer-socials a {
  width: 32px; height: 32px; border: 1px solid rgba(248,245,239,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,245,239,.3); transition: all .3s;
}
.footer-socials a:hover { border-color: var(--green-light); color: var(--green-light); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 9rem 1.5rem 4rem; }
  .prose { padding: 4rem 1.5rem; }
  .footer { padding: 4rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
