:root {
  --cream: #faf6ef;
  --ivory: #fffaf3;
  --linen: #eee7dc;
  --charcoal: #292724;
  --graphite: #272a2c;
  --muted: #292724;
  --line: #dedbd3;
  --accent: #292724;
  --gold: #a77f2b;
  --red: #8f2d24;
  --max: 1160px;
  --section-y: clamp(44px, 6vw, 68px);
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: Optima, "Avenir Next", "Gill Sans", "Segoe UI", sans-serif;
  --font-logo: "Cinzel", "Trajan Pro", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(41, 39, 36, 0.11);
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-family: var(--font-logo);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--red);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--gold);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--red);
  border-radius: 50%;
  background: transparent;
  color: var(--red);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: auto;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 5vw, 56px) clamp(28px, 4vw, 44px);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 670px) minmax(220px, 310px);
  gap: clamp(46px, 9vw, 120px);
  align-items: start;
}

.hero-primary {
  min-width: 0;
}

.hero-rule {
  width: min(100%, 760px);
  height: 1px;
  margin-bottom: clamp(30px, 4vw, 44px);
  background: linear-gradient(90deg, var(--charcoal), transparent);
  opacity: 0.38;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  color: var(--charcoal);
  font-family: var(--font-logo);
  font-size: clamp(2.25rem, 4.35vw, 4.85rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-headline {
  max-width: 860px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.45vw, 2.55rem);
  font-weight: 400;
  line-height: 1.16;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.newsletter-feature {
  justify-self: end;
  width: min(100%, 292px);
  margin-top: clamp(64px, 8vw, 90px);
  padding-top: 16px;
  border-top: 1px solid rgba(41, 39, 36, 0.22);
  transform: translateX(clamp(0px, 2.4vw, 30px));
}

.newsletter-feature-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.newsletter-feature figure {
  margin: 0;
}

.newsletter-feature img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(41, 39, 36, 0.14);
  background: var(--ivory);
  box-shadow: 0 18px 42px rgba(41, 39, 36, 0.08);
}

.newsletter-feature figcaption {
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  line-height: 1.4;
  text-align: left;
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(240px, 360px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  margin-top: clamp(42px, 6vw, 64px);
}

.article-note {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(41, 39, 36, 0.22);
}

.article-note-image {
  display: block;
  aspect-ratio: 1.32;
  overflow: hidden;
  background: var(--linen);
}

.article-note-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.article-note-content {
  align-self: start;
}

.article-note-label,
.article-note-source {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-note-label {
  color: var(--red);
}

.article-note-source {
  color: var(--gold);
}

.article-note h2 {
  max-width: 420px;
  margin: 6px 0 8px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.16;
}

.article-note h2 a {
  text-decoration: none;
}

.article-note h2 a:hover,
.article-note h2 a:focus-visible {
  color: var(--accent);
}

.article-note blockquote {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.46;
}

.hero-quote {
  margin: 0;
  transform: translateY(clamp(-74px, -7vh, -34px));
  padding-top: 18px;
  border-top: 1px solid rgba(41, 39, 36, 0.22);
}

.hero .hero-quote blockquote {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 1.7vw, 1.48rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.34;
}

.hero-quote figcaption {
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding: var(--section-y) clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  max-width: var(--max);
  margin-inline: auto;
}

.section-heading {
  min-width: 0;
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.prose {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.prose p {
  margin-bottom: 1.35em;
}

.about-section,
.fees-section {
  background: var(--ivory);
}

.about-section {
  padding-bottom: var(--section-y);
}

.about-section .section-kicker {
  color: var(--red);
}

.approach-section .section-kicker {
  color: var(--red);
}

#approach-title {
  color: var(--graphite);
}

.focus-section .section-kicker {
  color: var(--red);
}

.fees-section .section-kicker {
  color: var(--red);
}

.fees-section .section-grid {
  gap: clamp(12px, 2.6vw, 32px);
}

.fees-section .simple-list {
  margin-top: 0;
}

.fees-section .simple-list li {
  color: var(--gold);
  padding: 12px 0;
}

.hero .eyebrow {
  color: var(--red);
}

.approach-section {
  background: var(--cream);
  padding-top: clamp(28px, 4vw, 44px);
}

.approach-section .section-kicker {
  padding-top: 18px;
  border-top: 1px solid rgba(41, 39, 36, 0.18);
}

.focus-section {
  background: var(--cream);
  padding-top: var(--section-y);
}

.focus-areas {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.focus-areas li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.simple-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.simple-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.focus-image {
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.focus-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: 52% 48%;
  filter: grayscale(100%) brightness(1.02) contrast(1.05);
}

.simple-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.025em;
}

.contact-section {
  background: var(--ivory);
  color: var(--charcoal);
}

.contact-section .section-kicker,
.contact-section a {
  color: var(--charcoal);
}

.contact-section .section-kicker,
.contact-details h3 {
  color: var(--red);
}

.contact-details {
  display: grid;
  gap: 30px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.contact-details div {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-details p {
  margin-bottom: 6px;
}

.office-hours-line {
  color: var(--gold);
}

.address-line {
  color: var(--gold);
}

.contact-section .email-link {
  color: var(--gold);
}

.contact-section .phone-link {
  color: var(--gold);
}

.contact-section .booking-link {
  color: var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 56px);
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 26px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .newsletter-feature {
    justify-self: start;
    width: min(100%, 340px);
    margin-top: 0;
    transform: none;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-quote {
    transform: none;
  }

  .article-note {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 4rem);
  }

  .newsletter-feature {
    width: min(100%, 292px);
  }

  .article-note {
    grid-template-columns: 1fr;
  }

  .article-note-image {
    width: 154px;
  }

}
