:root {
  --essex-green: #1F3D2F;
  --essex-green-deep: #17301F;
  --velvet-plum: #3D2B4A;
  --bone: #F2EDE3;
  --bone-warm: #EBE4D4;
  --candle-gold: #B8894A;
  --candle-gold-bright: #D4A55E;

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 72px;
  --max-width: 1200px;
  --content-width: 720px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bone);
  background: var(--essex-green);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

section { scroll-margin-top: var(--nav-height); }

p { margin: 0 0 1.25rem; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
a { color: inherit; }

img, svg { display: block; max-width: 100%; }

/* Shared tokens */
.kicker {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--candle-gold);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--essex-green);
  border-bottom: 1px solid var(--candle-gold);
  height: var(--nav-height);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--bone);
  text-decoration: none;
}
.nav__sigil {
  color: var(--candle-gold);
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.nav__wordmark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.nav__links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav__link {
  color: var(--bone);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
  opacity: 0.88;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--candle-gold);
  opacity: 1;
  outline: none;
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--bone);
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--essex-green);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: var(--velvet-plum);
  z-index: 1;
}

/* Ceremonial cover — one composed unit, sigil through sub-tagline */
.hero__cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem 3.5rem;
  position: relative;
}
.hero__sigil {
  color: var(--candle-gold);
  width: 108px;
  height: 108px;
  margin: 0 auto 1rem;
}
.hero__wordmark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 5.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0 0 1rem;
}
.hero__category {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.3vw, 1.5rem);
  line-height: 1.45;
  color: var(--bone);
  margin: 0 auto;
  max-width: 640px;
}
.hero__rule {
  width: 90px;
  height: 1px;
  background: var(--candle-gold);
  opacity: 0.75;
  border: 0;
  margin: 1.5rem auto;
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  line-height: 1.3;
  color: var(--candle-gold);
  margin: 0 auto;
  max-width: 26ch;
}

/* ---------- INTRODUCTION ---------- */
.intro {
  background: var(--essex-green);
  padding: 0 2rem 5rem;
  text-align: center;
}
.intro__inner {
  max-width: 680px;
  margin: 0 auto;
}
.intro p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--bone);
  opacity: 0.93;
  margin: 0 0 1.25rem;
}
.intro p:last-child { margin-bottom: 0; }

/* ---------- ABOUT ---------- */
.about {
  background: var(--bone);
  color: var(--essex-green);
  padding: 6rem 2rem 0;
}
.about__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.about__sigil {
  color: var(--essex-green);
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
  display: block;
}
.about__kicker {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--candle-gold);
}
.about__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  color: var(--essex-green);
  margin: 0 0 2.75rem;
  letter-spacing: -0.015em;
  text-align: center;
}
.about p {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--essex-green);
  margin: 0 0 1.5rem;
}
.about h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--velvet-plum);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.about__close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.3vw, 1.5rem);
  line-height: 1.45;
  color: var(--velvet-plum);
  margin-top: 3rem !important;
  padding-top: 2.5rem;
  border-top: 1px solid var(--candle-gold);
  max-width: 40ch;
}

/* Star divider — row of 4-pointed stars between About subsections */
.star-divider {
  display: flex;
  justify-content: center;
  color: var(--candle-gold);
  margin: 3.25rem 0;
}
.star-divider svg { display: block; max-width: 100%; height: auto; }

/* Transition divider between About and Experience — both sections share bone bg.
   About padding-bottom is 0 and Experience padding-top is 3.25rem, so this divider's
   top margin + Experience top padding give ~3.25rem above and below the stars. */
.star-divider.star-divider--transition { margin-bottom: 0; }

/* Pull quote — The Disco Ball */
.pullquote {
  background: var(--bone-warm);
  color: var(--essex-green);
  border-left: 6px solid var(--velvet-plum);
  padding: 2.75rem 2.75rem 2rem;
  margin: 0;
  border-radius: 0 2px 2px 0;
}
.pullquote h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  line-height: 1.15;
  color: var(--velvet-plum);
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--essex-green);
  margin: 0 0 1.25rem;
}
.pullquote p:last-child { margin-bottom: 0; }

/* ---------- EXPERIENCE ---------- */
.experience {
  background: var(--bone);
  color: var(--essex-green);
  padding: 3.25rem 2rem 7rem;
}
.experience__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}
.experience__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.125rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  color: var(--velvet-plum);
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}
.experience__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.4;
  color: var(--velvet-plum);
  margin: 0 auto 3rem;
  max-width: 42ch;
  opacity: 0.9;
}
.experience__theme {
  text-align: left;
}
.experience__theme-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--velvet-plum);
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.experience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}
.exp-card {
  padding: 0;
}
.exp-card__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--velvet-plum);
  margin: 0 0 0.6rem;
  letter-spacing: -0.005em;
}
.exp-card__body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--essex-green);
  margin: 0;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--velvet-plum);
  padding: 6.5rem 2rem;
  color: var(--bone);
}
.services__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.services__kicker {
  margin-bottom: 1.5rem;
  color: var(--candle-gold);
}
.services__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  color: var(--bone);
  margin: 0 0 3.5rem;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}
.service {
  padding: 2rem 0 0.5rem;
  border-top: 1px solid rgba(184, 137, 74, 0.55);
}
.service__sigil {
  color: var(--candle-gold);
  width: 30px;
  height: 30px;
  margin: 0 0 1.25rem;
  display: block;
}
.service__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--candle-gold);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.service__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bone);
  opacity: 0.92;
  margin: 0;
}

/* ---------- THE CIRCLE ---------- */
.circle {
  background: var(--bone);
  color: var(--essex-green);
  padding: 6.5rem 2rem;
}
.circle__inner {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--candle-gold);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
}
.circle__motif {
  color: var(--candle-gold);
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: block;
}
.circle__kicker {
  color: var(--candle-gold);
  margin-bottom: 1.25rem;
  display: block;
}
.circle__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  color: var(--velvet-plum);
  margin: 0 0 1.5rem;
  letter-spacing: -0.015em;
}
.circle__body {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--essex-green);
  margin: 0 auto 1.5rem;
  max-width: 52ch;
}
.circle__coming {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--candle-gold);
  margin: 1.75rem 0 0;
}

/* ---------- CONTACT (ceremonial bookend, Essex green) ---------- */
.contact {
  background: var(--essex-green);
  color: var(--bone);
  padding: 6rem 2rem 7rem;
  text-align: center;
}
.contact__sigil {
  color: var(--candle-gold);
  width: 88px;
  height: 88px;
  margin: 0 auto 2.25rem;
}
.contact__headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  line-height: 1.2;
  color: var(--bone);
  margin: 0 0 1.75rem;
  letter-spacing: -0.01em;
}
.contact__email {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  color: var(--candle-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--candle-gold);
  padding-bottom: 0.25rem;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.contact__email:hover,
.contact__email:focus-visible {
  color: var(--candle-gold-bright);
  border-color: var(--candle-gold-bright);
  outline: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--essex-green-deep);
  color: var(--bone);
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.85;
  letter-spacing: 0.01em;
  border-top: 1px solid var(--candle-gold);
}
.footer__link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer__link:hover {
  color: var(--candle-gold);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--candle-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .service {
    padding: 1.75rem 0;
  }
  .experience__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 720px) {
  :root { --nav-height: 60px; }

  .nav__inner { padding: 0 1.25rem; }
  .nav__wordmark { font-size: 1.1875rem; }
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--essex-green);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(184, 137, 74, 0.25);
  }
  .nav__links.is-open { display: flex; }
  .nav__link { font-size: 1.0625rem; opacity: 1; }

  .hero::before { width: 10px; }
  .hero__cover { padding: 4rem 1.5rem 4rem; }
  .hero__sigil { width: 88px; height: 88px; margin-bottom: 1.25rem; }
  .hero__wordmark { margin-bottom: 1.25rem; }
  .hero__category { max-width: 40ch; }
  .hero__rule { margin: 1.75rem auto; width: 80px; }
  .hero__sub { max-width: 22ch; margin: 0 auto; }
  .intro { padding: 0 1.5rem 4.5rem; }

  .about { padding: 4.5rem 1.5rem 0; }
  .about__sigil { width: 60px; height: 60px; margin-bottom: 1.5rem; }

  .star-divider { margin: 2.5rem 0; }

  .pullquote {
    padding: 2rem 1.75rem 1.5rem;
    margin: 0 -0.25rem;
  }

  .experience { padding: 2.5rem 1.5rem 5rem; }
  .experience__subtitle { margin-bottom: 2.25rem; }
  .experience__theme-title { margin-bottom: 1.5rem; }

  .services { padding: 4.5rem 1.5rem; }
  .services__title { margin-bottom: 2rem; }

  .circle { padding: 4.5rem 1.25rem; }
  .circle__inner { padding: 2.5rem 1.5rem; }
  .circle__motif { width: 64px; height: 64px; }

  .contact { padding: 4.5rem 1.25rem 5rem; }
  .contact__sigil { width: 72px; height: 72px; margin-bottom: 1.75rem; }
}

@media (max-width: 480px) {
  .hero__cover { padding: 3.25rem 1.25rem 3.25rem; }
  .hero__wordmark { font-size: clamp(2.5rem, 11vw, 3.25rem); }
  .hero__category { font-size: 1.125rem; line-height: 1.5; max-width: 32ch; }
  .hero__rule { margin: 1.5rem auto; width: 72px; }
  .hero__sub { font-size: 1.3125rem; max-width: 20ch; }
  .intro { padding: 0 1.25rem 3.75rem; }
  .intro p { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
