/* ============================================================
   God Fearing Sisters LLC — "Sunday-morning editorial"
   Linen paper, deep pine green, honey brass. Arched frames.
   ============================================================ */

/* ---- Premium fonts (Envato Elements, licensed) ----
   Solitude (display serif, single weight — Fraunces supplies italics)
   Gucina (body sans, 4 weights) */
@font-face {
  font-family: "Solitude";
  src: url("../assets/fonts/Solitude-Regular.woff") format("woff"),
       url("../assets/fonts/Solitude-Regular.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gucina";
  src: url("../assets/fonts/Gucina-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gucina";
  src: url("../assets/fonts/Gucina-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gucina";
  src: url("../assets/fonts/Gucina-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gucina";
  src: url("../assets/fonts/Gucina-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f2e9;
  --paper-deep: #efe7d8;
  --ink: #22302a;
  --pine: #1d3a2f;
  --pine-deep: #142a22;
  --brass: #b98a3c;
  --brass-ink: #7d5b22; /* brass darkened for AA-contrast text on paper (≥4.5:1) */
  --brass-soft: #d8b578;
  --cream: #fdfbf5;
  --line: rgba(34, 48, 42, 0.14);

  --font-display: "Solitude", "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Gucina", "Figtree", "Gill Sans", "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --container: 1180px;
}

* { 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.65;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(216, 181, 120, 0.18), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.13 0 0 0 0 0.19 0 0 0 0 0.16 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--pine);
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 7.2vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.35rem; line-height: 1.2; font-weight: 540; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 380;
  color: var(--brass-ink);
}

/* Solitude ships no italic — Fraunces carries the display italics */
h1 em, h2 em, .marquee-track, .story-verse, .footer-tag {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-ink);
  margin-bottom: 1.1rem;
}
.eyebrow.light { color: var(--brass-soft); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 100;
  background: var(--pine);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 2px; }

.lede, .section-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(34, 48, 42, 0.78);
  max-width: 34em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-solid {
  background: var(--pine);
  color: var(--cream);
  border: 1px solid var(--pine);
  box-shadow: 0 10px 24px -12px rgba(20, 42, 34, 0.55);
}
.btn-solid:hover { background: var(--pine-deep); box-shadow: 0 16px 30px -12px rgba(20, 42, 34, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--pine);
  border: 1px solid rgba(29, 58, 47, 0.35);
}
.btn-ghost:hover { border-color: var(--pine); background: rgba(29, 58, 47, 0.05); }

.btn-light { background: var(--cream); color: var(--pine); border: 1px solid var(--cream); }
.btn-light:hover { background: #fff; }
.btn-outline-light {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(253, 251, 245, 0.45);
}
.btn-outline-light:hover { border-color: var(--cream); background: rgba(253, 251, 245, 0.08); }

/* brass shine sweep */
.shine::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 245, 220, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s var(--ease-out) infinite;
}
@keyframes shine {
  0%, 60% { left: -80%; }
  80%, 100% { left: 130%; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 233, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.4s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(20, 42, 34, 0.35); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50% 50% 4px 50%;
  background: var(--pine);
  color: var(--brass-soft);
  font-size: 1rem;
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 540;
  color: var(--pine);
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.site-nav { display: flex; gap: 1.7rem; margin-left: auto; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(34, 48, 42, 0.85);
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.site-nav a[aria-current="page"] { color: var(--pine); font-weight: 600; }

.header-cta { font-size: 0.88rem; padding: 0.6rem 1.15rem; }

.header-logo {
  height: 54px;
  width: auto;
  mix-blend-mode: multiply; /* melts the logo's cream background into the paper */
  border-radius: 8px;
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy .lede { margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.4rem; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: rgba(34, 48, 42, 0.72);
}
.proof { display: flex; align-items: center; gap: 0.5rem; }
.proof-stars { color: var(--brass); letter-spacing: 0.12em; }
.proof-dot { color: var(--brass); font-size: 0.6rem; }

.hero-visual { position: relative; }

/* Arched "chapel window" frame */
.arch-frame {
  border-radius: 999px 999px 22px 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(20, 42, 34, 0.5);
}
.arch-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(253, 251, 245, 0.55);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
.hero-arch { aspect-ratio: 4 / 5; }

.hero-card {
  position: absolute;
  z-index: 3; /* above the arch frame's inner border so it never clips */
  left: -12%;
  bottom: 8%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 24px 50px -24px rgba(20, 42, 34, 0.45);
}
.hero-card-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--brass);
  line-height: 1;
}
.hero-card-label { font-size: 0.78rem; line-height: 1.35; color: rgba(34, 48, 42, 0.75); }

.float { animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-grain { position: absolute; inset: 0; pointer-events: none; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--pine);
  color: var(--brass-soft);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 42em; }
.section-head h2 { margin-bottom: 1rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 55px -28px rgba(20, 42, 34, 0.45);
}
.service-img { aspect-ratio: 16 / 10; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
  filter: saturate(0.92);
}
.service-card:hover .service-img img { transform: scale(1.07); filter: saturate(1.05); }

.service-body { padding: 1.6rem 1.6rem 1.8rem; position: relative; }
.service-body h3 { margin-bottom: 0.6rem; }
.service-body p { font-size: 0.95rem; color: rgba(34, 48, 42, 0.75); }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--pine);
  color: var(--cream);
  padding: clamp(2.8rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "✦";
  position: absolute;
  right: -1rem; top: -3rem;
  font-size: 16rem;
  color: rgba(216, 181, 120, 0.07);
  line-height: 1;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 480;
  color: var(--brass-soft);
  display: block;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.82);
  display: block;
  margin-top: 0.5rem;
}

/* ---------- Work ---------- */
.work { background: var(--paper-deep); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1.1rem;
}
.work-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.work-item.tall { grid-row: span 2; }
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.work-item:hover img { transform: scale(1.06); }
.work-item figcaption {
  position: absolute;
  left: 0.9rem; bottom: 0.9rem;
  background: rgba(20, 42, 34, 0.78);
  color: var(--cream);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-out);
}
.work-item:hover figcaption { opacity: 1; transform: translateY(0); }
.work-cta { margin-top: 2.2rem; text-align: center; }

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.story-visual { position: relative; }
.story-arch { aspect-ratio: 4 / 5; }
.story-verse {
  position: absolute;
  z-index: 3; /* above the arch frame's inner border so it never clips */
  right: -8%;
  bottom: -6%;
  max-width: 270px;
  background: var(--pine);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.5;
  padding: 1.3rem 1.5rem;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 24px 50px -24px rgba(20, 42, 34, 0.5);
}
.story-verse cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.story-copy h2 { margin-bottom: 1.4rem; }
.story-copy p { margin-bottom: 1.1rem; color: rgba(34, 48, 42, 0.8); }
.story-points { list-style: none; margin-top: 1.8rem; }
.story-points li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
}
.story-points li span { color: var(--brass); font-size: 0.75rem; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.8rem 1.7rem;
  position: relative;
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 28px 50px -28px rgba(20, 42, 34, 0.4);
}
.review-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--brass);
  display: block;
  margin-bottom: 0.9rem;
}
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 420;
  line-height: 1.45;
  color: var(--pine);
  margin-bottom: 1.2rem;
}
.review-card figcaption {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(34, 48, 42, 0.74);
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0;
  overflow: hidden;
  text-align: center;
}
.contact-bg {
  position: absolute;
  inset: -12% 0;
  background: url("https://cdn.pixabay.com/photo/2019/11/26/18/38/lake-4655205_1280.jpg") center / cover no-repeat;
  will-change: transform;
}
.contact-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 42, 34, 0.88), rgba(20, 42, 34, 0.72) 50%, rgba(20, 42, 34, 0.9));
}
.contact-inner { position: relative; z-index: 1; }
.contact h2 { color: var(--cream); margin-bottom: 1.1rem; }
.contact h2 em { color: var(--brass-soft); }
.contact h1 { color: var(--cream); margin-bottom: 1.1rem; font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
.contact h1 em { color: var(--brass-soft); }
.contact-lede {
  color: rgba(253, 251, 245, 0.82);
  max-width: 32em;
  margin: 0 auto 2.4rem;
  font-size: 1.1rem;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.contact-area {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.8);
}

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(253, 251, 245, 0.08);
  border: 1px solid rgba(253, 251, 245, 0.35);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, background-color 0.3s;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(253, 251, 245, 0.55); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brass-soft);
  background: rgba(253, 251, 245, 0.12);
  outline: none;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.4rem;
}
.form-actions .btn { border: 1px solid transparent; cursor: pointer; }
.form-status {
  min-height: 1.5em;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  color: var(--brass-soft);
}
.form-status.error { color: #f3c1b2; }

/* ---------- Subpage hero ---------- */
.page-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: 1.1rem; }
.page-hero .lede { max-width: 40em; }

/* ---------- Services page: detail rows ---------- */
.service-rows { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); }
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.service-row:nth-child(even) .service-row-img { order: 2; }
.service-row-img {
  border-radius: 999px 999px 20px 20px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 24px 50px -26px rgba(20, 42, 34, 0.45);
}
.service-row-img img { width: 100%; height: 100%; object-fit: cover; }
.service-row h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.9rem; }
.service-row p { color: rgba(34, 48, 42, 0.8); margin-bottom: 1rem; }
.service-row ul { list-style: none; }
.service-row li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.98rem;
}
.service-row li::before { content: "✦"; color: var(--brass); font-size: 0.7rem; }

/* ---------- CTA band (interior pages / home) ---------- */
.cta-band {
  background: var(--pine);
  border-radius: 26px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "✦";
  position: absolute;
  left: -1.5rem; bottom: -3.5rem;
  font-size: 13rem;
  color: rgba(216, 181, 120, 0.08);
  line-height: 1;
}
.cta-band h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-band h2 em { color: var(--brass-soft); }
.cta-band p { color: rgba(253, 251, 245, 0.82); margin-bottom: 1.8rem; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: rgba(253, 251, 245, 0.75); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; gap: 0.8rem; align-items: flex-start; }
.footer-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
.footer-tag { font-style: italic; font-family: var(--font-display); color: var(--brass-soft); font-size: 0.95rem; }
.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 0.7rem;
}
.footer-col p { font-size: 0.92rem; line-height: 1.8; }
.footer-col a { color: rgba(253, 251, 245, 0.85); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.footer-col a:hover { border-color: var(--brass-soft); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
  border-top: 1px solid rgba(253, 251, 245, 0.12);
  font-size: 0.78rem;
  color: rgba(253, 251, 245, 0.68);
}
.footer-legal a { color: inherit; }

/* ---------- Legal / info prose pages ---------- */
.prose {
  max-width: 68ch;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 2.4rem 0 0.8rem;
}
.prose p, .prose li { color: rgba(34, 48, 42, 0.85); margin-bottom: 0.9rem; }
.prose ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--pine); text-decoration-color: var(--brass); text-underline-offset: 3px; }
.prose .updated {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34, 48, 42, 0.6);
  margin-bottom: 2rem;
}

/* ---------- Handwritten asides (write-on reveal) ---------- */
.hand {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  color: var(--brass-ink);
  width: fit-content;
  transform: rotate(-1.5deg);
  line-height: 1.25;
}
.hand--light { color: var(--brass-soft); }
.hand .hw-word {
  display: inline-block;
  clip-path: inset(-30% 105% -30% -8%);
  transition: clip-path 0.34s cubic-bezier(0.55, 0, 0.45, 1);
  transition-delay: var(--hw-d, 0s);
}
.hand.is-written .hw-word { clip-path: inset(-30% -8%); }

.hero-copy .hand { margin-top: 1.5rem; }
.service-row .hand { margin: -0.3rem 0 0.9rem; }
.contact .hand { margin: 0 auto 1.4rem; transform: rotate(-2deg); }

/* ---------- Animation primitives ---------- */
.rise {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise, .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .float, .marquee-track, .shine::after { animation: none; }
  .hand .hw-word { clip-path: none; transition: none; }
  [data-parallax] img, .contact-bg { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .header-logo { display: none; }
}

@media (max-width: 860px) {
  .site-nav, .header-cta { display: none; }
  .service-row, .service-row:nth-child(even) { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row-img { order: 0; }
  .service-row-img { max-width: 440px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 24px; height: 2px;
    background: var(--pine);
    transition: transform 0.35s var(--ease-out), opacity 0.3s;
  }
  .site-header.menu-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-header.menu-open .site-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.5rem 1rem;
  }
  .site-header.menu-open .site-nav a { padding: 0.8rem 0; border-top: 1px solid var(--line); }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .hero-card { left: auto; right: -4%; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { max-width: 440px; }
  .story-verse { right: 0; }
}

@media (max-width: 560px) {
  .services-grid, .reviews-grid, .work-grid { grid-template-columns: 1fr; }
  .work-item.tall { grid-row: span 1; }
  .work-grid { grid-auto-rows: 240px; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { justify-content: center; }
  .cta-band .btn-row { flex-direction: column; align-items: stretch; }
}
