:root {
  --ink: #20342d;
  --leaf: #365e4d;
  --leaf-dark: #33421a;
  --sage: #97a99a;
  --paper: #f5f0e6;
  --paper-deep: #e8dfcf;
  --cream: #fffdf8;
  --gold: #c39a36;
  --line: rgba(32, 52, 45, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 18px 50px rgba(28, 48, 40, .12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  color: var(--cream);
  background: var(--leaf-dark);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 1.35rem max(1.5rem, calc((100% - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  color: var(--leaf-dark);
  background: #fff;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: .035em;
  text-decoration: none;
}

nav { display: flex; gap: clamp(1rem, 3vw, 2.25rem); }

nav a {
  border-bottom: 1px solid transparent;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover, nav a:focus-visible { border-color: currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--leaf-dark);
}

.hero-image {
  width: 100%;
  height: clamp(380px, 53vw, 720px);
  object-fit: cover;
  object-position: center;
}

.hero-content {
  width: min(900px, calc(100% - 3rem));
  margin: auto;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.2rem;
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 850px;
  margin-right: auto;
  margin-bottom: 1.25rem;
  margin-left: auto;
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-intro {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, .9);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .75rem 1.4rem;
  border: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-light:hover { color: var(--leaf-dark); background: #fff; }

main { overflow: hidden; }

.intro-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1120px, calc(100% - 3rem));
  margin: auto;
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  align-items: center;
}

.section-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: .08em;
}

.intro-section h2, .collection h2, .newsletter h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  letter-spacing: -.025em;
}

.intro-copy p { max-width: 38rem; margin: 0 0 1rem; }

.pull-quote {
  margin: 0;
  padding: clamp(2rem, 5vw, 3.6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--leaf);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  line-height: 1.35;
}

.collection {
  color: var(--cream);
  background: var(--leaf-dark);
}

.collection-inner {
  width: min(1120px, calc(100% - 3rem));
  margin: auto;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.collection-header {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: end;
}

.collection-header p { max-width: 34rem; margin: 0 0 .5rem auto; color: rgba(255, 253, 248, .72); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.pillar { padding: 2.4rem 2.25rem 1rem 0; }
.pillar + .pillar { padding-left: 2.25rem; border-left: 1px solid rgba(255, 255, 255, .22); }
.pillar h3 { margin-bottom: .8rem; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.pillar p { margin: 0; color: rgba(255, 253, 248, .7); }

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  width: min(1120px, calc(100% - 3rem));
  margin: auto;
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  align-items: center;
}

.newsletter h2 { max-width: 600px; }
.newsletter p { max-width: 34rem; }

.note-card {
  padding: clamp(2rem, 5vw, 3.25rem);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.note-card .eyebrow { color: var(--gold); }
.note-card h3 { margin-bottom: 1rem; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.note-card p { margin: 0 0 1.5rem; }

.text-link {
  display: inline-block;
  padding-bottom: .2rem;
  border-bottom: 1px solid var(--leaf);
  color: var(--leaf);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

footer { color: rgba(255, 253, 248, .76); background: var(--leaf-dark); }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 3rem));
  margin: auto;
  padding: 2.25rem 0;
  font-size: .8rem;
  letter-spacing: .04em;
}

.footer-brand { color: var(--cream); font-family: var(--serif); font-size: 1.2rem; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 760px) {
  .site-header {
    position: relative;
    flex-direction: column;
    width: 100%;
    gap: .55rem;
    padding: .9rem 1rem .8rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: clamp(.7rem, 4vw, 1.25rem);
  }
  nav a {
    font-size: .7rem;
    letter-spacing: .09em;
    white-space: nowrap;
  }
  .hero-content, .intro-section, .collection-inner, .newsletter, .footer-inner { width: min(100% - 2rem, 1120px); }
  .hero-image {
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .hero-content { padding: 3.75rem 0 4.25rem; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.5rem); }
  .intro-section, .newsletter, .collection-header { grid-template-columns: 1fr; }
  .pull-quote { padding-right: 0; padding-left: 0; }
  .collection-header { gap: 1rem; }
  .collection-header p { margin-left: 0; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 2rem 0; }
  .pillar + .pillar { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .22); border-left: 0; }
  .footer-inner { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Discovery journey: retain the original palette, type and spacing. */
.journey { margin: 0; padding: 0; list-style: none; }
.format-list { font-weight: 600; }
.slogan { margin: 0 0 1.25rem; font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
nav a, .eyebrow, .button, .text-link { font-size: .875rem; }
.site-header { gap: 1rem; flex-wrap: wrap; }
nav { flex-wrap: wrap; }
.hero h1 { font-size: clamp(2.75rem, 6.5vw, 5.5rem); }
@media (max-width: 760px) { nav a { font-size: .875rem; } }

/* Mobile navigation; desktop retains its three visible links. */
.menu-toggle { display: none; }

@media (max-width: 760px) {
  .site-header.has-mobile-menu {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: .5rem;
    padding: .65rem 1rem;
    z-index: 10;
  }
  .has-mobile-menu .brand {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
  }
  .has-mobile-menu .menu-toggle {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: var(--leaf-dark);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: currentColor;
  }
  .menu-toggle:hover, .menu-toggle[aria-expanded="true"] {
    background: var(--paper);
  }
  .has-mobile-menu #primary-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: .5rem 1rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px rgba(28, 48, 40, .1);
  }
  .has-mobile-menu.menu-open #primary-navigation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  #primary-navigation a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: .65rem .75rem;
    white-space: normal;
  }
}

