/* ============================================================
   style.css
   Lunar Tea Room — a tarot reader's site
   Aesthetic: earthy & grounded. A deep forest-green field, warm
   gold + sand accents, refined serif headings over a clean sans
   body. Calm, intimate, a little mysterious — a lightworker's
   space, not a candy shop. Generous whitespace, hairline rules,
   no hard outlines or shadows.
   ============================================================ */

/* ---- Design tokens ---------------------------------------- */
:root {
  /* core earthy palette */
  --green-900: #232e28;  /* deepest green (readings band)     */
  --green-800: #28352e;  /* deep green                        */
  --green-700: #2f3d36;  /* page background                   */
  --green-600: #3a4a42;  /* raised surface / hover            */
  --green-500: #44564c;  /* lighter green (hero glow)         */
  --sage:      #7d8a7e;  /* muted sage (borders, lines)       */
  --sage-2:    #9aa89c;  /* lighter sage (muted detail text)  */

  --gold:      #c2a878;  /* warm gold — the primary accent    */
  --gold-deep: #9c6f52;  /* terracotta-gold for depth         */

  --paper:     #f2ecdd;  /* warm off-white (headings, light)  */
  --linen:     #e8e2d4;  /* primary body text on dark         */
  --linen-mut: #cfc8b8;  /* muted body text on dark           */

  /* semantic roles (what the rest of the sheet references) */
  --bg:        var(--green-700);
  --surface:   var(--green-600);
  --text:      var(--linen);
  --text-mut:  var(--linen-mut);
  --heading:   var(--paper);
  --accent:    var(--gold);
  --line-col:  rgba(232,226,212,0.14);  /* hairline divider   */

  /* structure: hairlines, no hard shadows, mostly square */
  --line:     1px;
  --line-bold:1px;
  --shadow:   none;
  --shadow-lg:none;
  --radius:   2px;
  --radius-sm:2px;
  --maxw:     1100px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", system-ui, sans-serif;

  /* ---- legacy aliases ----------------------------------------
     The sheet was built kawaii; these remap every old variable
     onto the earthy system so existing rules resolve sensibly
     without a full rewrite. Colors collapse toward the green/
     gold/linen palette; structure tokens go quiet. */
  --cream:     var(--bg);
  --cream-2:   var(--green-800);
  --ink:       var(--text);
  --ink-mut:   var(--text-mut);
  --ink-line:  var(--line-col);
  --plum:      var(--heading);
  --plum-mut:  var(--text-mut);

  /* accents all collapse to gold/sage so nothing reads candy */
  --pink:        var(--gold);
  --orange:      var(--gold-deep);
  --yellow:      var(--gold);
  --green:       var(--sage);
  --blue:        var(--sage);
  --purple:      var(--gold);
  --pink-soft:   var(--surface);
  --orange-soft: var(--surface);
  --yellow-soft: var(--green-800);
  --green-soft:  var(--green-800);
  --blue-soft:   var(--surface);
  --purple-soft: var(--surface);
  --mint:        var(--bg);
  --mint-2:      var(--green-800);
  --mint-soft:   var(--green-800);
  --bubble:      var(--gold);
  --bubble-soft: var(--surface);
  --butter:      var(--gold);
  --butter-soft: var(--green-800);
  --peri:        var(--sage);
  --peri-soft:   var(--surface);
  --grape:       var(--gold);
  --coral:       var(--gold-deep);
  --lavender:    var(--gold);
  --lav-soft:    var(--surface);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- Full-bleed colored bands -----------------------------
   Each section is a full-width tinted band with its own subtle
   pattern, so the page reads as a sequence of distinct, vibrant
   zones instead of content floating on empty cream. */
.band {
  /* cream body bands have no dividing rules — the shared surface
     should flow continuously, not read as separate slabs */
}
.band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
/* per-section band colors — solid blocks, no pattern behind text */
/* per-section: body sections share the cream base so the page reads
   as one continuous surface; color is reserved for the hero, the
   card-pull moment, and key CTAs. */
.band.about {
  background-color: var(--cream);
}
.band.testimonials {
  background-color: var(--cream);
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- Shared layout helpers -------------------------------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  color: var(--heading);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  color: var(--heading);
  letter-spacing: 0.3px;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 500;
  max-width: 42ch;
  font-weight: 300;
}

/* ---- Buttons ---------------------------------------------- */
/* Earthy buttons: thin hairline border, sharp corners, wide
   uppercase letterspacing. A quiet fill on the primary. */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  padding: 1rem 2.2rem;
  border: 1px solid var(--sage);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-800);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--linen);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--green-700);
  border-bottom: 1px solid var(--line-col);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-name { display: inline-block; }

/* ---- Moon + star emblem (the logo mark) ----
   A crescent (a disc with an inset shadow carving the moon) with
   a small gold star tucked into its open side. Sized via the
   wrapper's width/height so it scales cleanly for nav vs hero. */
.moon-mark {
  position: relative;
  width: 30px; height: 30px;
  flex: none;
  display: inline-block;
}
.moon-mark {
  position: relative;
  width: 30px; height: 30px;
  flex: none;
  display: inline-block;
}
.mm-moon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset -11px 0 0 -1px var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  align-items: center;
}
/* nav items: quiet wide-tracked uppercase links */
.nav-pill {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--linen-mut);
  transition: color 0.25s ease;
}
.nav-pill:hover { color: var(--gold); }
.nav-links .nav-book { color: var(--gold); }
.nav-links .nav-book:hover { color: var(--paper); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--linen);
}

/* ============================================================
   HERO  ——  full-bleed photo with text on top
   A tarot-table photo fills the hero; a soft warm overlay sits
   between photo and text so the copy stays readable. Text is
   centered in a clean column over the image.
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 6rem 1.5rem;
  border-bottom: none;
  overflow: hidden;
}
/* the photo layer */
.hero-photo {
  position: absolute;
  inset: 0;
  /* Hero photo: tarot tray by Jen Theodore (Unsplash, free license).
     For deploy, download into assets/hero.jpg and swap the url. */
  background-image: url("https://images.unsplash.com/photo-1566770050648-8447d2d40f1e?fm=jpg&q=70&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* deep forest wash so the photo recedes and the copy reads */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36,46,40,0.94) 0%, rgba(36,46,40,0.78) 42%, rgba(47,61,54,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 1.04;
  margin-bottom: 1.6rem;
  letter-spacing: 0.5px;
  color: var(--paper);
  max-width: 20ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lede {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--linen-mut);
  max-width: 54ch;
  margin: 0 0 2.6rem;
  line-height: 1.9;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  background: var(--green-600);
  overflow: hidden;
  border: 1px solid rgba(194,168,120,0.4);
  box-shadow: none;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* no panel — the bio sits open on the green field */
.about-text {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem 2rem;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p + p { margin-top: 1rem; }
.about-sign {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 1.8rem;
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 5px;
  transition: border-color 0.3s ease;
}
.about-sign:hover { transform: none; border-bottom-color: var(--gold); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background-color: var(--green-800);
}
.services-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}
.services-head { text-align: center; margin-bottom: 4rem; }
.services-head .lede { margin: 0 auto; }

/* all five tiers in a single row, divided by hairlines */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-col);
  border: 1px solid var(--line-col);
}
.svc-card {
  background: var(--green-800);
  border-radius: 0;
  padding: 2.6rem 1.8rem;
  border: none;
  box-shadow: none;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: none;
  box-shadow: none;
  background: var(--green-700);
}
.svc-card.c-green, .svc-card.c-lav, .svc-card.c-rose,
.svc-card.c-pink, .svc-card.c-blue { background: var(--green-800); }
.svc-card.c-green:hover, .svc-card.c-lav:hover, .svc-card.c-rose:hover,
.svc-card.c-pink:hover, .svc-card.c-blue:hover { background: var(--green-700); }

/* the old kawaii icon discs are unused in the earthy design */
.svc-icon { display: none; }

.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 0.6rem;
  white-space: nowrap;
}
.svc-card .dur {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-2);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.svc-card p { color: var(--text-mut); font-weight: 300; font-size: 0.92rem; margin: 0 0 1.6rem; flex-grow: 1; }
.svc-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--gold);
}
.svc-price span { font-size: 0.78rem; font-family: var(--font-body); font-weight: 300; color: var(--sage-2); letter-spacing: 0.08em; }

/* ============================================================
   CARD PULL  ——  the signature section
   A quiet ritual: deep green field, a single dark deck with a
   gold crescent, and a calm fade-in on the drawn card.
   ============================================================ */
.pull {
  position: relative;
  background: var(--green-700);
  border-top: 1px solid var(--line-col);
  border-bottom: 1px solid var(--line-col);
  text-align: center;
  overflow: hidden;
}
.pull-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 1.5rem 7.5rem;
  position: relative;
  z-index: 2;
}
.pull h2 { margin-bottom: 0.8rem; }
.pull-sub { color: var(--text-mut); font-weight: 300; margin-bottom: 3rem; max-width: 46ch; margin-left: auto; margin-right: auto; }

/* the stage holds the face-down deck and the revealed card */
.stage {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* --- the face-down deck (quiet dark cards, gold crescent) --- */
.deck {
  position: relative;
  width: 210px;
  height: 320px;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.deck:hover { transform: translateY(-6px); }
.deck.hidden { display: none; }

.deck .back {
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background-color: var(--green-600);
  border: 1px solid var(--gold);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: bottom center;
}
.deck .back::after {
  content: "";
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold);
  box-shadow: inset -13px 0 0 -1px var(--green-600);
}
.deck .back:nth-child(1) { transform: rotate(-6deg) translateX(-8px); opacity: 0.5; }
.deck .back:nth-child(2) { transform: rotate(4deg)  translateX(7px); opacity: 0.75; }
.deck .back:nth-child(3) { transform: rotate(0deg); }

.deck-hint {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.72rem;
}

/* shuffle wiggle while drawing */
.deck.shuffling .back:nth-child(1) { animation: sh1 0.5s ease; }
.deck.shuffling .back:nth-child(2) { animation: sh2 0.5s ease; }
.deck.shuffling .back:nth-child(3) { animation: sh3 0.5s ease; }
@keyframes sh1 { 50% { transform: rotate(-16deg) translateX(-24px); } }
@keyframes sh2 { 50% { transform: rotate(12deg)  translateX(22px); } }
@keyframes sh3 { 50% { transform: rotate(4deg)   translateY(-14px); } }

/* --- the revealed card (calm fade up) --- */
.reveal {
  width: 270px;
  border-radius: 3px;
  background: var(--green-800);
  border: 1px solid var(--gold);
  padding: 2.2rem 1.8rem 2.4rem;
  box-shadow: none;
  animation: fadeUp 0.7s ease both;
}
.reveal.hidden { display: none; }

@keyframes fadeUp {
  0%   { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.reveal .r-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.reveal .r-suit {
  width: 56px; height: 56px;
  margin: 1rem auto 1.1rem;
  border: 1px solid var(--gold);
  background: transparent;
  border-radius: 50%;
  position: relative;
}
/* Major Arcana: a crescent moon */
.reveal .r-suit-major {
  border-color: var(--gold);
  box-shadow: inset -18px 0 0 -2px var(--gold);
}
/* Wands (fire): a star burst */
.reveal .r-suit-wands {
  border: none;
  background: var(--gold);
  border-radius: 0;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
/* Cups (water): a cup */
.reveal .r-suit-cups {
  border-color: var(--gold);
  border-radius: 0 0 40% 40% / 0 0 60% 60%;
}
.reveal .r-suit-cups::after {
  content: ""; position: absolute; right: -11px; top: 13px;
  width: 14px; height: 18px; border: 1px solid var(--gold);
  border-left: none; border-radius: 0 14px 14px 0;
}
/* Swords (air): a diamond */
.reveal .r-suit-swords {
  border-color: var(--gold);
  border-radius: 4px;
  transform: rotate(45deg);
  width: 44px; height: 44px;
}
/* Pentacles (earth): a coin with an inner ring */
.reveal .r-suit-pentacles {
  border-color: var(--gold);
}
.reveal .r-suit-pentacles::after {
  content: ""; position: absolute; inset: 11px;
  border: 1px solid var(--gold); border-radius: 50%;
}
.reveal .r-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--heading);
  margin-bottom: 1rem;
}
.r-keys {
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin-bottom: 1.2rem;
}
.r-keys span {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--sage);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 0;
}
.reveal .r-meaning {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mut);
  line-height: 1.8;
}

.pull-again { margin-top: 2.2rem; min-height: 3rem; }
.pull-again.hidden { display: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-head { text-align: center; margin-bottom: 4rem; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-col);
  border: 1px solid var(--line-col);
}
.testi-card {
  background: var(--green-700);
  border-radius: 0;
  padding: 2.6rem 2.2rem;
  border: none;
  box-shadow: none;
  transition: background 0.3s ease;
}
.testi-card:nth-child(n) { transform: none; }
.testi-card:hover { transform: none; box-shadow: none; background: var(--green-600); }
.testi-stars { display: flex; gap: 5px; margin-bottom: 1.2rem; }
.testi-stars span {
  width: 12px; height: 12px; background: var(--gold);
  border: none;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testi-card blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 1.6rem;
  font-style: italic;
}
.testi-who { display: flex; align-items: center; gap: 0.8rem; }
.testi-ava {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gold);
}
.testi-name {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--linen-mut);
}

/* ============================================================
   BOOKING / CONTACT
   ============================================================ */
.booking {
  background-color: var(--green-800);
  border-top: 1px solid var(--line-col);
}
.booking-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
  text-align: center;
}
.booking h2 { margin-bottom: 0.8rem; }
.booking .lede { margin: 0 auto 3rem; }

/* form sits open on the green field — hairline inputs, no card */
.form {
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.field { margin-bottom: 1.6rem; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-bottom: 0.6rem;
  color: var(--sage-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid var(--sage);
  border-radius: 0;
  background: transparent;
  color: var(--linen);
  transition: border-color 0.3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--sage); }
.field select { color: var(--linen); }
.field select option { background: var(--green-700); color: var(--linen); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: none;
  transform: none;
}
.field textarea { resize: vertical; min-height: 80px; }
.form .btn-primary { width: 100%; margin-top: 1rem; }

.form-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gold);
  min-height: 1.4rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background-color: var(--green-900);
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
  border-top: 1px solid var(--line-col);
}
/* a quiet row: a small gold crescent flanked by hairlines */
.footer-deco {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  margin-bottom: 2rem;
}
.footer-deco .fstar {
  width: 5px; height: 5px; background: var(--gold); border: none;
  border-radius: 50%; clip-path: none;
}
.footer-deco .fmoon {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: none;
  box-shadow: inset -6px 0 0 -1px var(--green-900);
}
/* open footer — no card panel */
.footer-card {
  max-width: 520px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.footer .brand { color: var(--paper); justify-content: center; margin-bottom: 0.8rem; font-size: 1.6rem; }
.footer-tag { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.15rem; color: var(--gold); margin-bottom: 2rem; }
.footer-cta { margin-bottom: 2.2rem; }
.footer .socials { margin: 0 0 2.2rem; display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.footer .socials a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  background: transparent; color: var(--linen-mut);
  border: none; border-radius: 0;
  padding: 0; box-shadow: none;
  transition: color 0.25s ease;
}
.footer .socials a:nth-child(2),
.footer .socials a:nth-child(3) { background: transparent; }
.footer .socials a:hover { transform: none; box-shadow: none; color: var(--gold); }
.footer-fine { font-size: 0.74rem; font-weight: 300; letter-spacing: 0.04em; color: var(--sage-2); margin-top: 0.6rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* readings row: 5 across on wide screens, then step down cleanly */
@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .hero h1 { max-width: 18ch; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:nth-child(n) { transform: rotate(0deg); }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-700);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line-col);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.9rem; }
}

@media (max-width: 520px) {
  .section, .services-wrap, .pull-inner { padding-left: 1.1rem; padding-right: 1.1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
}