/* The Wee Retreat CIC – preview site
   Palette: myrtle green ink, pink-sandstone paper, heather accent */

:root {
  --ink: #22372b;          /* myrtle green – text & dark bands */
  --ink-deep: #1a2c22;     /* deeper myrtle for the mission band */
  --paper: #fbf2ec;        /* pink sandstone dust */
  --paper-warm: #f4e4d9;   /* blond sandstone – cards, arches */
  --heather: #6e5590;      /* heather – accents, eyebrows */
  --heather-soft: #cdbfdd; /* pale heather – decorative */
  --moss: #5f7d63;         /* mid green – secondary */
  --line: rgba(34, 55, 43, 0.16);

  --font-display: "Young Serif", "Iowan Old Style", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark, .footer-wordmark, .mission-quote {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
}

a { color: inherit; }

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

.wrap {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- signature: the wee "Wee" ---------- */
.wee {
  font-size: 0.52em;
  vertical-align: 0.18em;
  letter-spacing: 0.01em;
  color: var(--heather);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem 1.5rem;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover { color: var(--heather); }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover { background: var(--heather); transform: translateY(-1px); }

.btn-small { padding: 0.55rem 1.15rem; font-size: 0.9rem; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.btn-ghost:hover { background: var(--paper-warm); color: var(--ink); }

.text-link {
  color: var(--heather);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--heather-soft);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}

.text-link:hover { border-color: var(--heather); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heather);
  margin-bottom: 1rem;
}

.eyebrow-light { color: var(--heather-soft); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 3rem;
  align-items: center;
  max-width: 68rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--heather);
}

.lede {
  font-size: 1.2rem;
  max-width: 34em;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.fact-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.fact-strip strong { font-weight: 700; }

/* arched shapes – a nod to tenement closes */
.hero-arch {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  height: 100%;
  min-height: 320px;
}

.arch { border-radius: 999px 999px 0 0; flex: 1; }

.arch-a { background: var(--paper-warm); height: 88%; }
.arch-b { background: var(--heather-soft); height: 68%; }
.arch-c { background: var(--moss); height: 78%; opacity: 0.55; }

/* ---------- mission ---------- */
.mission {
  background: var(--ink-deep);
  color: var(--paper);
  padding: 5rem 0;
}

.mission-quote {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  max-width: 24em;
  margin-bottom: 2.4rem;
}

.u-underline {
  text-decoration: underline;
  text-decoration-color: var(--heather-soft);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.mission-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 56rem;
  color: rgba(251, 242, 236, 0.88);
}

/* ---------- offerings ---------- */
.offerings { padding: 5rem 0; }

.offerings h2,
.more h2,
.find-us h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 2.4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 { font-size: 1.25rem; }

.card p { flex: 1; font-size: 0.98rem; }

.card-wide { grid-column: span 2; background: var(--paper-warm); }

.card-accent {
  background: var(--heather-soft);
  border-color: transparent;
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
}

.card-accent p { flex: 1 1 20rem; }

/* ---------- training ---------- */
.training {
  background: var(--paper-warm);
  padding: 5rem 0;
}

.training-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 3rem;
}

.training h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }

.training p { margin-bottom: 1.2rem; }

/* ---------- more ---------- */
.more { padding: 5rem 0; }

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.more-item h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

.more-item p { margin-bottom: 0.8rem; font-size: 0.98rem; }

/* ---------- find us ---------- */
.find-us {
  border-top: 1px solid var(--line);
  padding: 5rem 0;
}

.find-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 3.5rem;
}

.find-us address {
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.quiet-note {
  font-style: italic;
  color: var(--moss);
  margin-bottom: 1.2rem;
}

.travel-list {
  list-style: none;
  display: grid;
  gap: 1.1rem;
}

.travel-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.travel-mode {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heather);
  padding-top: 0.25rem;
}

/* ---------- contact band ---------- */
.contact-band {
  background: var(--ink-deep);
  color: var(--paper);
  padding: 4.5rem 0;
}

.contact-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-decoration: none;
  background: rgba(251, 242, 236, 0.07);
  border: 1px solid rgba(251, 242, 236, 0.18);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  transition: background 0.2s ease;
}

.contact-card:hover { background: rgba(251, 242, 236, 0.14); }

.contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heather-soft);
}

.contact-value { font-weight: 500; overflow-wrap: anywhere; }

/* ---------- footer ---------- */
.site-footer {
  padding: 3.5rem 0 3rem;
}

.footer-wordmark {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.footer-social a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heather);
}

.footer-social a:hover { text-decoration: underline; }

.footer-legal {
  font-size: 0.9rem;
  color: var(--moss);
  max-width: 44em;
}

/* ---------- motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 3.5rem; }
  .hero-arch { min-height: 180px; max-width: 24rem; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .card-wide { grid-column: span 2; }
  .training-split, .find-split { grid-template-columns: 1fr; gap: 1.8rem; }
  .more-grid, .contact-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .mission-cols { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 700px) {
  .site-nav { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
}
