@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=Raleway:wght@300&display=swap');

:root {
  --cream-page: #F6EDDF;
  --cream-alt: #F8F0E2;
  --cream-raised: #F3E4D1;
  --warm-white: #FFF9F2;
  --bark-nav: #3A2314;
  --bark-footer: #3A2316;
  --bark-deep: #5A3824;
  --bark-text: #3C2517;
  --bark-muted: #6E4E3A;
  --gold: #C88A44;
  --gold-deep: #8B5A32;
  --gold-soft: #EBC987;
  --gold-nav-active: #E1B86A;
  --sand-border: #E2CDB1;
  --sand-muted: #C9B49C;
  --linen-nav: #F7EBDD;
  --linen-footer: #F4E8D8;
  --cream: var(--cream-page);
  --cream-bright: var(--warm-white);
  --bark: var(--bark-text);
  --sand: var(--sand-border);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --logo: 'Raleway', system-ui, sans-serif;
  --shadow-cta: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  --content: 72rem;
  --reading: 46rem;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--bark-muted);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold-soft); color: var(--bark-deep); }
* { scrollbar-color: var(--gold) var(--cream); }

a { color: inherit; text-underline-offset: .25em; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 4px;
}

.hero a:focus-visible, .dark a:focus-visible, footer a:focus-visible { outline-color: var(--gold-soft); }

.site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(58, 35, 20, .96);
}

.site-nav-inner {
  width: min(100% - 2rem, var(--content));
  height: 5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--linen-nav);
  font-family: var(--logo);
  font-size: 1.26rem;
  font-weight: 300;
  letter-spacing: .035em;
  text-decoration: none;
  transition: color .22s ease-out;
}

.site-brand:hover { color: var(--gold-soft); }
.site-brand img { width: 3.9rem; height: 3.9rem; object-fit: contain; }

.hero {
  position: relative;
  min-height: 48rem;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--bark-deep);
  color: var(--cream-bright);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('assets/hero-women-circle.jpg') center 42% / cover no-repeat;
  transform: scale(1.025);
  animation: settle 1.6s cubic-bezier(.22, 1, .36, 1) both;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(43,24,15,.64) 0%, rgba(43,24,15,.36) 42%, rgba(43,24,15,.88) 100%),
    linear-gradient(90deg, rgba(43,24,15,.28), transparent 55%, rgba(43,24,15,.18));
}

.hero-inner {
  width: min(100% - 2rem, 64rem);
  padding: 11rem 0 9rem;
  text-align: center;
}

.brand-mark { width: 3.75rem; height: auto; margin: 0 auto 2rem; opacity: .96; }

.hero h1 {
  max-width: 13ch;
  margin: 0 auto 1.35rem;
  color: var(--cream-bright);
  font-family: var(--serif);
  font-size: clamp(3rem, 6.25vw, 5.25rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0 auto 1.65rem;
  color: #f8ead5;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem 1.25rem;
  margin: 0 auto 2.25rem;
  color: #f7e9d5;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-meta span + span::before { content: '·'; margin-right: 1.25rem; color: var(--gold-soft); }

.host-line { display: flex; flex-wrap: wrap; justify-content: center; gap: .2rem .3rem; margin: 0 0 2.25rem; color: #f6e7d1; font-size: .96rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: .9rem 1.55rem;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: var(--shadow-cta);
  color: var(--cream);
  cursor: pointer;
  font: 600 .72rem/1 var(--sans);
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .22s ease-out, background-color .22s ease-out, box-shadow .22s ease-out;
}

.button:hover { transform: translateY(-2px); background: var(--gold-deep); box-shadow: var(--shadow-cta); }
.button.secondary { background: transparent; border: 1px solid rgba(235,201,135,.72); color: var(--gold-soft); box-shadow: none; }
.button.secondary:hover { background: rgba(235,201,135,.1); }

.wave {
  position: absolute;
  inset: auto 0 -1px;
  width: 100%;
  height: 7rem;
  fill: var(--cream);
}

main { overflow: hidden; }

.mobile-only { display: none; }

.section { padding: clamp(5rem, 9vw, 8.5rem) 1.25rem; }
.section.alt { background: var(--cream-alt); }
.section.dark { background: var(--bark); color: #ead9c4; }

.reading { max-width: var(--reading); margin: 0 auto; }
.wide { max-width: var(--content); margin: 0 auto; }

h2, h3 {
  margin: 0;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 { margin-bottom: 1.75rem; font-size: clamp(1.95rem, 3.5vw, 2.75rem); line-height: 1.16; }
h3 { margin-bottom: .9rem; font-size: clamp(1.4rem, 2.4vw, 1.75rem); line-height: 1.25; }
p { margin: 0 0 1.35rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--bark); font-weight: 600; }

.lead {
  color: var(--bark);
  font-family: var(--sans);
  font-size: clamp(1.18rem, 1.8vw, 1.38rem);
  line-height: 1.65;
}

.leaf-divider { display: block; width: 5.5rem; height: auto; margin: 3rem auto 0; opacity: .48; }

.holding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
  align-items: stretch;
  max-width: var(--content);
  margin: 0 auto;
}

.holding-image {
  min-height: 42rem;
  background: linear-gradient(rgba(60,37,23,.12), rgba(60,37,23,.34)), url('assets/bg-responding.jpg') center / cover no-repeat;
}

.holding-copy { display: flex; align-items: center; padding: clamp(3rem, 7vw, 7rem); background: var(--bark); color: #ead9c4; }
.holding-copy h2 { color: var(--gold-soft); }
.holding-copy strong { color: var(--cream-bright); }

.circle-intro { text-align: center; }

.circle-size {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
  padding: 2rem 2.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(200,138,68,.14), rgba(235,201,135,.06));
}

.circle-number { color: var(--gold-deep); font-family: var(--sans); font-size: 4.5rem; font-weight: 500; line-height: 1; }
.circle-size p { color: var(--bark); }

.details-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.details-intro { position: sticky; top: 4rem; }

.detail-list { margin: 0; }
.detail-row { display: grid; grid-template-columns: 9rem 1fr; gap: 1.5rem; padding: 1.35rem 0; border-bottom: 1px solid var(--sand); }
.detail-row:first-child { padding-top: .25rem; }
.detail-row dt { color: var(--gold-deep); font-weight: 600; }
.detail-row dd { margin: 0; color: var(--bark); }
.detail-note { margin-top: 1.5rem; font-size: .92rem; font-style: italic; }

.location-map {
  width: min(100%, 36rem);
  margin: 1.25rem 0 .25rem;
  padding: .8rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(200,138,68,.1), rgba(235,201,135,.08));
}

.location-map img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 20rem;
  border-radius: .85rem;
  object-fit: cover;
}

.location-map figcaption {
  display: grid;
  gap: .1rem;
  margin-top: .75rem;
  color: var(--bark-muted);
  font-size: .82rem;
  line-height: 1.5;
}

.location-map figcaption strong {
  color: var(--bark);
  font-weight: 600;
}

.map-attribution {
  margin-top: .25rem;
  color: var(--bark-muted);
  font-size: .72rem;
  opacity: .72;
}

.map-attribution a {
  color: inherit;
  text-decoration-color: rgba(110,78,58,.42);
}

.hosts { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2.5rem, 7vw, 6rem); }
.host {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.6rem, 4vw, 2.25rem);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(200,138,68,.1), rgba(139,90,50,.05) 55%, rgba(200,138,68,.04));
}
.host-portrait {
  width: min(100%, 15.5rem);
  aspect-ratio: 1;
  margin-bottom: 1.35rem;
  border-radius: 1rem;
  object-fit: cover;
  object-position: center;
}
.host h3 { font-size: clamp(1.65rem, 2.6vw, 2rem); }
.host p { flex: 1; }
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: .35rem;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration-color: rgba(200,138,68,.42);
  text-decoration-thickness: 1px;
  text-underline-offset: .28em;
}

.text-link:hover { color: var(--bark-deep); }
.together { max-width: 54rem; margin: 4rem auto 0; text-align: center; font-family: var(--sans); font-size: 1.18rem; line-height: 1.7; color: var(--bark); }

.orientation {
  position: relative;
  background: linear-gradient(90deg, rgba(43,24,15,.94), rgba(43,24,15,.72)), url('assets/from-work-to-creation-panel.jpg') center / cover no-repeat;
}
.orientation .reading { margin-left: max(0px, calc((100% - var(--content)) / 2)); }
.orientation h2 { color: var(--gold-soft); }
.orientation em { color: var(--cream-bright); }

.interest { text-align: center; }
.interest h2 { max-width: 13ch; margin-left: auto; margin-right: auto; }
.interest p { max-width: 44rem; margin-left: auto; margin-right: auto; }
.interest .button { margin-top: 1rem; }
.privacy-note { margin-top: 1.25rem !important; color: var(--bark-muted); font-size: .8rem; }

.faq { max-width: 52rem; margin: 0 auto; }
.faq h2 { text-align: center; }
details { border-top: 1px solid var(--sand); }
details:last-child { border-bottom: 1px solid var(--sand); }
summary { position: relative; padding: 1.4rem 3rem 1.4rem 0; color: var(--bark); cursor: pointer; font-family: var(--sans); font-size: 1.08rem; font-weight: 500; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: .2rem; top: 1.15rem; color: var(--gold-deep); font: 400 1.6rem/1 var(--sans); }
details[open] summary::after { content: '−'; }
details p { padding: 0 3rem 1.6rem 0; }

footer { padding: 3rem 1.25rem; background: var(--bark-footer); color: var(--linen-footer); }
.footer-inner { max-width: var(--content); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.25rem;
  color: var(--linen-footer);
  font-family: var(--logo);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 300;
  letter-spacing: .04em;
  text-decoration: none;
}
.footer-brand img { width: 4.5rem; height: 4.5rem; object-fit: contain; }
.footer-brand:hover { color: var(--gold-soft); }
.footer-text { max-width: 20rem; color: var(--sand-muted); font-size: .88rem; line-height: 1.6; }
.footer-heading {
  margin: .2rem 0 1rem;
  color: var(--linen-footer);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}
.footer-links {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  color: var(--linen-footer);
  font-size: .88rem;
  list-style: none;
}
.footer-links a,
.footer-connect,
.footer-legal a {
  color: inherit;
  text-decoration: none;
}
.footer-links a:hover,
.footer-connect:hover,
.footer-legal a:hover { text-decoration: underline; }
.footer-connect {
  display: inline-flex;
  color: var(--linen-footer);
  font-size: .9rem;
  font-weight: 600;
}
.footer-legal {
  padding-top: 2rem;
  border-top: 1px solid rgba(244,232,216,.18);
  color: var(--sand-muted);
  font-size: .86rem;
  text-align: center;
}
.footer-legal p { margin: 0; }
.footer-legal span { margin: 0 .55rem; opacity: .35; }

@keyframes settle { from { transform: scale(1.07); filter: blur(4px); } to { transform: scale(1.025); filter: blur(0); } }

@media (max-width: 780px) {
  body { font-size: 1rem; }
  .hero { min-height: 44rem; }
  .site-nav-inner { justify-content: center; }
  .site-brand { font-size: 1.08rem; }
  .site-brand img { width: 3.4rem; height: 3.4rem; }
  .hero-inner { padding-top: 10.5rem; }
  .mobile-only { display: block; }
  .hero h1 { width: 100%; max-width: 21rem; font-size: clamp(2rem, 8.2vw, 2.45rem); line-height: 1.06; text-wrap: wrap; }
  .hero-subtitle, .host-line { max-width: 22rem; margin-left: auto; margin-right: auto; padding: 0 .25rem; }
  .host-line { display: grid; gap: .15rem; font-size: .92rem; }
  .hero-meta { display: grid; gap: .45rem; }
  .hero-meta span + span::before { content: none; }
  .holding-grid, .details-layout, .hosts { grid-template-columns: 1fr; }
  .holding-image { min-height: 26rem; }
  .holding-copy { padding: 4rem 1.5rem 4.5rem; }
  .details-intro { position: static; }
  .detail-row { grid-template-columns: 1fr; gap: .25rem; }
  .location-map { width: 100%; margin-top: 1rem; padding: .65rem; }
  .location-map img { max-height: none; }
  .circle-size { grid-template-columns: 1fr; text-align: center; }
  .host { align-items: center; text-align: center; }
  .host-portrait { width: min(100%, 14rem); }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-text { margin-left: auto; margin-right: auto; }
  .orientation .reading { margin: 0 auto; }
  .section { padding-left: 1.1rem; padding-right: 1.1rem; }
}

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