:root {
  --brand-camel: #aa713e;
  --brand-cream: #f6e6d7;
  --brand-teal: #3d6a6c;
  --brand-blue: #86aeb1;
  --brand-ink: #2c3a3a;
  --white: #ffffff;
  --page: var(--white);
  --surface: var(--white);
  --lead: var(--brand-teal);
  --deep: var(--brand-ink);
  --soft: var(--brand-cream);
  --pop: var(--brand-camel);
  --quiet: var(--brand-blue);
  --wash: #f8faf9;
  --on-lead: var(--white);
  --on-deep: var(--white);
  --ink-display: var(--brand-ink);
  --ink-body: #455252;
  --ink-muted: #687474;
  --hairline: rgba(44, 58, 58, 0.17);
  --shadow: 0 24px 70px rgba(44, 58, 58, 0.12);
  --radius: 22px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --wrap: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink-body);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-top: 76px;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--ink-display);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h1 { margin-bottom: 24px; font-size: clamp(2.75rem, 4.5vw, 4.75rem); }
h2 { margin-bottom: 20px; font-size: clamp(1.9rem, 3vw, 3rem); }
h3 { color: var(--ink-display); font-size: 1.12rem; line-height: 1.3; }
p { margin-bottom: 20px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: clamp(78px, 9vw, 126px) 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--lead);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lead { max-width: 720px; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--deep);
  color: var(--on-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-display);
  text-decoration: none;
}
.brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.brand span { font-size: 0.93rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.nav-links a:not(.btn):hover,
.nav-links a[aria-current="page"] { color: var(--lead); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink-display);
  cursor: pointer;
  place-items: center;
  gap: 4px;
}
.nav-toggle { position: relative; }
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 2px;
  margin: -1px 0 0 -9.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::before { transform: rotate(45deg); }
.nav-open .nav-toggle::after { transform: rotate(-45deg); }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lead); color: var(--on-lead); }
.btn-primary:hover { background: var(--deep); }
.btn-dark { background: var(--deep); color: var(--on-deep); }
.btn-dark:hover { background: var(--lead); }
.btn-ghost { border-color: var(--hairline); background: transparent; color: var(--ink-display); }
.btn-ghost:hover { border-color: var(--lead); color: var(--lead); }
.btn-lg { min-height: 54px; padding-inline: 26px; }
.page-hero { padding: clamp(56px, 7vw, 96px) 0; background: var(--white); overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: clamp(48px, 9vw, 110px); }
.page-hero-copy { max-width: 780px; }
.page-hero h1 em { color: var(--lead); font-style: italic; }
.page-hero-art {
  position: relative;
  padding: 26px;
  border-radius: 48% 48% var(--radius) var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}
.page-hero-art img { width: 100%; border-radius: 46% 46% var(--radius-sm) var(--radius-sm); }
.photo { margin: 30px 0 0; }
.photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo figcaption { margin-top: 12px; color: var(--ink-muted); font-size: 0.82rem; }
/* Portrait-orientation photos read as an inset beside copy, not a slab that
   dwarfs it. Narrowing (not cropping) keeps the full composition intact. */
.photo-portrait { max-width: 360px; }
/* Where a tall photo column outruns a short text column, centre the copy so the
   leftover space reads as intentional margin instead of a bottom-heavy gap. */
.split-balanced > div:last-child { align-self: center; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.soft { background: var(--wash); }
.dark { background: var(--deep); color: rgba(255, 255, 255, 0.78); }
.dark h2, .dark h3 { color: var(--white); }
.dark .eyebrow { color: var(--pop); }
.statement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.statement-card {
  padding: 32px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
}
.statement-card p { margin-bottom: 0; color: var(--ink-muted); }
.dark .statement-card { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.05); }
.dark .statement-card p { color: rgba(255, 255, 255, 0.72); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.value-card { padding: 26px; border-top: 3px solid var(--pop); background: var(--surface); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.value-card p { margin: 0; color: var(--ink-muted); font-size: 0.9rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { padding: 30px; border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--surface); }
.service-card span { display: block; margin-bottom: 42px; color: var(--lead); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; }
.service-card p { margin: 0; color: var(--ink-muted); font-size: 0.92rem; }
.example-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.example-list li { padding: 18px 20px; border-left: 3px solid var(--pop); background: var(--wash); color: var(--ink-display); font-weight: 600; }
.process-grid { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1.5px solid var(--pop);
  border-radius: 50%;
  color: var(--pop);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { margin: 0; color: var(--ink-muted); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.contact-card { padding: clamp(30px, 5vw, 54px); border-radius: var(--radius); background: var(--soft); }
.contact-card dl { margin: 30px 0 0; }
.contact-card dt { color: var(--ink-muted); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-card dd { margin: 5px 0 24px; color: var(--ink-display); font-weight: 600; }
.prompt-list { counter-reset: prompt; display: grid; gap: 14px; padding: 0; list-style: none; }
.prompt-list li { position: relative; padding: 18px 20px 18px 54px; border: 1px solid var(--hairline); border-radius: var(--radius-sm); }
.prompt-list li::before {
  counter-increment: prompt;
  content: counter(prompt);
  position: absolute;
  top: 17px;
  left: 18px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lead);
  color: var(--on-lead);
  font-size: 0.7rem;
  font-weight: 700;
}
.event-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}
.revival-details { margin: 0 0 30px; display: grid; gap: 20px; }
.revival-details dt {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.revival-details dd {
  margin: 0;
  color: var(--ink-display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
}
.revival-note {
  max-width: 460px;
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.event-art { max-width: 420px; margin: 0; }
.event-art img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.cta-inline {
  margin-top: 34px;
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: var(--radius);
  background: var(--soft);
}
.cta-inline p { margin: 0; max-width: 640px; }
.cta { border-top: 1px solid var(--hairline); background: var(--white); text-align: center; }
.cta h2 { max-width: 820px; margin-inline: auto; }
.cta p { max-width: 650px; margin-inline: auto; }
.cta .btn { margin-top: 18px; }
.site-footer { padding: 64px 0 24px; border-top: 3px solid var(--pop); background: var(--deep); color: rgba(255, 255, 255, 0.7); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img { width: 96px; border-radius: 50%; margin-bottom: 20px; }
.footer-brand p { max-width: 330px; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.86rem; line-height: 1.65; }
.footer-tagline {
  margin-top: 18px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer h4 {
  margin: 0 0 18px;
  color: var(--quiet);
  font-family: "DM Sans", sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 0; font-size: 0.88rem; }
.site-footer li a,
.footer-contact a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer li a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; }
.footer-contact a,
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-contact div { margin-bottom: 14px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.78); }
.footer-contact .label {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--quiet); text-decoration: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--lead); outline-offset: 3px; border-radius: 4px; }

@media (hover: hover) {
  .service-card,
  .service-card span,
  .value-card,
  .statement-card,
  .example-list li,
  .prompt-list li,
  .page-hero-art,
  .contact-card,
  .process-step::before {
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease, color 280ms ease;
  }
  .service-card:hover {
    transform: translateY(-4px);
    border-color: var(--pop);
    box-shadow: 0 18px 44px rgba(44, 58, 58, 0.10);
  }
  .service-card:hover span { color: var(--pop); }
  .value-card:hover,
  .statement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(44, 58, 58, 0.10);
  }
  .example-list li:hover { transform: translateX(5px); background: var(--soft); }
  .prompt-list li:hover { border-color: var(--pop); }
  .process-step:hover::before { background: var(--pop); color: var(--white); }
  .page-hero-art:hover { transform: translateY(-5px); }
  .btn-primary:hover, .btn-dark:hover { box-shadow: 0 14px 30px rgba(44, 58, 58, 0.18); }
  .nav-links a:not(.btn) { position: relative; }
  .nav-links a:not(.btn)::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    border-radius: 2px;
    background: var(--lead);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
  }
  .nav-links a:not(.btn):hover::after,
  .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
  .brand img { transition: transform 280ms ease; }
  .brand:hover img { transform: scale(1.07); }
  .site-footer a { transition: color 220ms ease; }
  .site-footer li a:hover,
  .footer-contact a:hover,
  .footer-bottom a:hover { color: var(--pop); }
}

@media (max-width: 900px) {
  :root { --wrap: min(100% - 36px, 720px); }
  .nav-toggle { display: grid; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 76px 0 auto;
    min-height: calc(100svh - 76px);
    padding: 38px 24px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; font-size: 1.05rem; }
  .nav-links .btn { justify-content: center; }
  .page-hero-grid, .split, .contact-grid, .event-feature { grid-template-columns: 1fr; }
  .event-art { max-width: min(420px, 100%); margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .page-hero-art { width: min(500px, 92%); margin-inline: auto; }
  .values-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  :root { --wrap: calc(100% - 32px); }
  .brand span { font-size: 0.78rem; }
  .statement-grid, .values-grid, .service-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
