/* =====================================================================
   Shae Tate Photography — Design System
   Boutique family / lifestyle photographer · Belfry, KY
   Palette: ivory + warm taupe + espresso · Serif + airy sans + script
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ivory:        #faf7f2;
  --cream:        #ffffff;
  --blush:        #efe6dc;
  --blush-soft:   #f4ece3;
  --sand:         #c9b8a8;
  --taupe:        #b7a392;
  --taupe-deep:   #9a8470;
  --espresso:     #36291f;
  --espresso-2:   #2b201837;
  --ink:          #1c1a18;
  --text:         #4a4039;
  --muted:        #7a6f64;
  --line:         #e6ddd2;
  --line-dark:    #5a4a3d;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --script:"Pinyon Script", "Snell Roundhand", cursive;

  /* Layout */
  --header-h: 108px;
  --maxw: 1280px;
  --maxw-narrow: 720px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--sand); color: var(--ink); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: .005em;
}
.display {
  font-size: clamp(2.7rem, 6.4vw, 5.1rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3.05rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

p { text-wrap: pretty; }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--taupe-deep);
  margin-bottom: 1.2rem;
}
.script {
  font-family: var(--script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 2.2em;
  line-height: 1;
  color: var(--taupe-deep);
  display: inline-block;
}
.text-center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--blush { background: var(--blush-soft); }
.section--dark { background: var(--espresso); color: #e9e0d6; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--sand); }

.stack > * + * { margin-top: 1.25rem; }
.divider {
  display: flex; align-items: center; justify-content: center; gap: .9rem;
  color: var(--sand); margin: 1.5rem 0;
}
.divider::before, .divider::after { content: ""; height: 1px; width: clamp(40px, 8vw, 90px); background: var(--sand); }
.divider span { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--taupe-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 50px; padding: 0 2rem;
  font-family: var(--sans); font-weight: 400; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--espresso); color: var(--ivory);
  border: 1px solid var(--espresso);
  border-radius: var(--radius);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--ink); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--sand); }
.btn--outline:hover { background: var(--espresso); color: var(--ivory); border-color: var(--espresso); }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row--center { justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); padding-bottom: 4px; position: relative;
}
.textlink::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--sand); transform-origin: right; transition: transform .4s var(--ease); }
.textlink:hover::after { transform: scaleX(0); transform-origin: left; }
.textlink .arr { transition: transform .4s var(--ease); }
.textlink:hover .arr { transform: translateX(5px); }

/* ===================================================================
   Header
   =================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(250,247,242,.9);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,247,242,.97);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px -22px rgba(54,41,31,.5);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 66px; width: auto; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.3rem); }
.nav a {
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  color: var(--text); position: relative; padding: .3rem 0;
  transition: color .3s var(--ease);
}
.nav a::after { content: ""; position: absolute; left: 50%; bottom: -2px; width: 0; height: 1px; background: var(--taupe-deep); transition: width .35s var(--ease), left .35s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; left: 0; }
.nav a[aria-current="page"] { color: var(--ink); }
.nav .btn { min-height: 42px; padding: 0 1.4rem; color: var(--ivory); }
.nav .btn:hover { color: var(--ivory); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 9px; height: 1.5px; width: 26px; background: var(--ink); transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; z-index: 101; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.6rem;
    background: var(--ivory);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform .5s var(--ease), opacity .4s var(--ease);
  }
  body.nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { font-family: var(--serif); text-transform: none; font-size: 1.9rem; letter-spacing: 0; color: var(--ink); }
  .nav a::after { display: none; }
  .nav .btn { font-family: var(--sans); font-size: .82rem; margin-top: .5rem; min-height: 50px; padding: 0 2rem; }
}

/* ===================================================================
   Hero (homepage split)
   =================================================================== */
.hero { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: minmax(100svh, auto); min-height: 100svh; }
.hero__panel {
  grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 3rem) var(--gutter) 4rem;
  background: var(--ivory);
}
.hero__panel .inner { max-width: 540px; }
.hero__media { grid-column: 2; grid-row: 1; position: relative; overflow: hidden; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero .display { margin: .4rem 0 1.4rem; }
.hero .lead { color: var(--text); max-width: 30ch; }
.hero__place {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.hero .btn-row { margin-top: 2.2rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { position: absolute; inset: 0; grid-column: 1; grid-row: 1; }
  .hero__panel { grid-column: 1; grid-row: 1; }
  .hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,26,24,.35) 0%, rgba(28,26,24,.18) 35%, rgba(28,26,24,.62) 100%); }
  .hero__panel { grid-column: 1; position: relative; z-index: 2; background: transparent; justify-content: flex-end; padding-bottom: clamp(3rem,10vw,5rem); min-height: 100svh; }
  .hero__panel .inner { max-width: 600px; }
  .hero .display, .hero h1 { color: #fff; }
  .hero .lead { color: rgba(255,255,255,.92); max-width: 38ch; }
  .hero .eyebrow { color: #fff; opacity: .9; }
  .hero__place { color: rgba(255,255,255,.8); border-top-color: rgba(255,255,255,.3); }
  .hero .btn--outline { color: #fff; border-color: rgba(255,255,255,.7); }
  .hero .btn--outline:hover { background: #fff; color: var(--ink); }
}

/* ===================================================================
   Interior page hero / banner
   =================================================================== */
.page-hero { padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); text-align: center; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero .lead { max-width: 60ch; margin-inline: auto; }

.banner { position: relative; height: clamp(280px, 48vw, 560px); overflow: hidden; }
.banner img { width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,26,24,.15), rgba(28,26,24,.45)); }
.banner__caption { position: absolute; inset: auto 0 0 0; padding: var(--gutter); color: #fff; z-index: 2; }
.banner__caption .eyebrow { color: rgba(255,255,255,.85); }

/* ===================================================================
   Reusable: media frame + hover zoom
   =================================================================== */
.frame { position: relative; overflow: hidden; background: var(--blush); }
.frame img { transition: transform 1.1s var(--ease); width: 100%; height: 100%; object-fit: cover; }
.frame:hover img { transform: scale(1.045); }

/* Intro split (logo + welcome text) — balanced two columns with a centre rule */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.intro-split__logo { display: flex; justify-content: center; }
.intro-split__logo img { width: 100%; max-width: 470px; height: auto; }
.intro-split__body { border-left: 1px solid var(--sand); padding-left: clamp(2rem, 5vw, 4.5rem); text-align: left; }
.intro-split__body .body-inner { max-width: 520px; }
.intro-split__body .divider { justify-content: flex-start; }
@media (max-width: 860px) {
  .intro-split { grid-template-columns: 1fr; gap: 2.4rem; }
  .intro-split__logo img { max-width: 290px; }
  .intro-split__body { border-left: 0; padding-left: 0; text-align: center; }
  .intro-split__body .body-inner { max-width: none; margin-inline: auto; }
  .intro-split__body .divider { justify-content: center; }
}

/* Intro / two-column feature */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media .frame { aspect-ratio: 4/5; }
.feature__media .tag {
  position: absolute; background: var(--ivory); color: var(--ink);
  font-family: var(--serif); font-weight: 500; line-height: 1;
  font-size: 1.5rem; letter-spacing: .01em; text-transform: none; padding: .55rem 1.2rem;
  bottom: -1px; left: -1px;
}
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature--reverse .feature__media { order: 0; }
}

/* ===================================================================
   Services grid
   =================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.8vw, 1.6rem); }
.svc-card { position: relative; display: block; overflow: hidden; aspect-ratio: 3/4; background: var(--blush); }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,26,24,0) 35%, rgba(28,26,24,.62) 100%); transition: background .5s var(--ease); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card:hover::after { background: linear-gradient(180deg, rgba(28,26,24,.1) 20%, rgba(28,26,24,.72) 100%); }
.svc-card__label { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.4rem; color: #fff; }
.svc-card__label h3 { color: #fff; font-size: 1.45rem; margin-bottom: .15rem; }
.svc-card__label span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .svc-grid { grid-template-columns: 1fr; } }

/* Service detail list (services page) */
.svc-list { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); }
.svc-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.8rem, 4vw, 4rem); align-items: center; }
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-row__media .frame { aspect-ratio: 4/5; }
.svc-row__body h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .3rem; }
.svc-row__body .price { color: var(--taupe-deep); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin: 1rem 0 1.2rem; }
.svc-row__body ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.svc-row__body li { position: relative; padding-left: 1.5rem; margin-bottom: .5rem; color: var(--text); }
.svc-row__body li::before { content: ""; position: absolute; left: 0; top: .85em; width: 8px; height: 8px; border: 1px solid var(--sand); transform: rotate(45deg); }
@media (max-width: 820px) {
  .svc-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .svc-row:nth-child(even) .svc-row__media { order: 0; }
}

/* ===================================================================
   Gallery (preview strip + masonry)
   =================================================================== */
.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 1fr); aspect-ratio: 2 / 1; gap: clamp(.6rem, 1.2vw, 1rem); }
.gallery-preview .frame { height: 100%; }
.gallery-preview .frame.feat { grid-column: span 2; grid-row: span 2; }
@media (max-width: 700px) {
  .gallery-preview { grid-template-columns: repeat(2,1fr); grid-template-rows: none; grid-auto-rows: 1fr; aspect-ratio: auto; }
  .gallery-preview .frame { aspect-ratio: 1; height: auto; }
  .gallery-preview .frame.feat { grid-column: span 2; grid-row: span 1; aspect-ratio: 3/2; }
}

/* Filter bar */
.filterbar { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.6rem; margin-bottom: clamp(2rem,4vw,3.2rem); }
.filterbar button {
  border: 0; background: transparent; color: var(--muted);
  font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .5rem .2rem; position: relative; transition: color .3s var(--ease);
}
.filterbar button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--taupe-deep); transform: scaleX(0); transition: transform .35s var(--ease); }
.filterbar button:hover { color: var(--ink); }
.filterbar button.active { color: var(--ink); }
.filterbar button.active::after { transform: scaleX(1); }

/* Masonry via CSS columns */
.masonry { column-count: 3; column-gap: clamp(.6rem, 1.2vw, 1rem); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 540px) { .masonry { column-count: 1; } }
.masonry .item { break-inside: avoid; margin-bottom: clamp(.6rem, 1.2vw, 1rem); }
.masonry .frame { cursor: zoom-in; }
.masonry .item.hide { display: none; }
.masonry .frame img { height: auto; }

/* ===================================================================
   Lightbox
   =================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 4vmin; background: rgba(24,20,17,.92); backdrop-filter: blur(4px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; box-shadow: 0 30px 80px -30px rgba(0,0,0,.8); }
.lightbox__btn { position: absolute; background: transparent; border: 1px solid rgba(255,255,255,.5); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .3s, color .3s; }
.lightbox__btn:hover { background: #fff; color: var(--ink); }
.lightbox__close { top: 4vmin; right: 4vmin; }
.lightbox__prev { left: 3vmin; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 3vmin; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px){ .lightbox__prev{left:1.5vmin} .lightbox__next{right:1.5vmin} .lightbox__btn{width:44px;height:44px} }

/* ===================================================================
   Steps (the experience)
   =================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); counter-reset: step; }
.step { position: relative; padding-top: 2.5rem; }
.step__num { font-family: var(--serif); font-size: 3.2rem; line-height: 1; color: var(--sand); margin-bottom: .6rem; }
.step h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.step p { font-size: .98rem; color: var(--muted); }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 42px; height: 1px; background: var(--taupe-deep); }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2,1fr); gap: 2rem 1.6rem; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ===================================================================
   Testimonials
   =================================================================== */
.testimonials { text-align: center; }
.quote-wrap { position: relative; max-width: 820px; margin-inline: auto; min-height: 220px; }
.quote { position: absolute; inset: 0; opacity: 0; transition: opacity .7s var(--ease); display: flex; flex-direction: column; justify-content: center; align-items: center; pointer-events: none; }
.quote.active { opacity: 1; position: relative; pointer-events: auto; }
.quote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.15rem); line-height: 1.4; color: var(--ink);
}
.section--dark .quote p { color: #fff; }
.quote cite {
  display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe-deep);
}
.section--dark .quote cite { color: var(--sand); }
.quote-dots { display: flex; gap: .6rem; justify-content: center; margin-top: 2.4rem; }
.quote-dots button { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--taupe-deep); background: transparent; padding: 0; transition: background .3s; }
.quote-dots button.active { background: var(--taupe-deep); }
.section--dark .quote-dots button { border-color: var(--sand); }
.section--dark .quote-dots button.active { background: var(--sand); }

/* ===================================================================
   Stats / trust strip
   =================================================================== */
.strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; }
.strip .num { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); color: var(--ink); line-height: 1; }
.strip .lbl { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; }
@media (max-width: 620px){ .strip { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ===================================================================
   CTA band
   =================================================================== */
.cta-band { position: relative; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(28,22,17,.58); }
.cta-band .container { position: relative; z-index: 2; padding-block: clamp(5rem, 11vw, 9rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }

/* ===================================================================
   Contact form
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info dl { margin: 0; }
.contact-info dt { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe-deep); margin-top: 1.5rem; }
.contact-info dd { margin: .3rem 0 0; font-size: 1.05rem; color: var(--ink); }
.contact-info dd a:hover { color: var(--taupe-deep); }

.form { display: grid; gap: 1.2rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 520px){ .form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--taupe-deep); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .85rem 1rem; min-height: 50px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--taupe-deep); box-shadow: 0 0 0 3px rgba(154,132,112,.15); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b4554b; }
.field .err { display: none; color: #b4554b; font-size: .8rem; letter-spacing: .02em; text-transform: none; }
.field.invalid .err { display: block; }
.form__note { font-size: .85rem; color: var(--muted); }
.form__status { display: none; padding: 1rem 1.2rem; background: var(--blush); border-left: 2px solid var(--taupe-deep); color: var(--espresso); }
.form__status.show { display: block; }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--espresso); color: #d9cec2; padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.site-footer a { color: #d9cec2; transition: color .3s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand img { height: 42px; width: auto; margin-bottom: 1.4rem; }
.footer-brand p { color: #b7a999; max-width: 34ch; font-size: .98rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer-col a { font-size: .95rem; }
.footer-col p { font-size: .95rem; color: #b7a999; }
.socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--line-dark); border-radius: 50%; transition: background .3s var(--ease), border-color .3s var(--ease); }
.socials a:hover { background: var(--taupe-deep); border-color: var(--taupe-deep); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: .8rem; color: #998c7d; }
.footer-bottom .verse { font-family: var(--serif); font-style: italic; font-size: 1rem; color: #b7a999; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; } .footer-bottom { flex-direction: column; } }

/* ===================================================================
   Pricing tiers
   =================================================================== */
.tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); max-width: 880px; margin-inline: auto; }
@media (max-width: 680px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: var(--cream); border: 1px solid var(--line); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; }
.tier__name { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe-deep); }
.tier__price { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--ink); line-height: 1; margin: .5rem 0 .2rem; }
.tier__price small { font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.tier ul { list-style: none; padding: 0; margin: 1.4rem 0 1.9rem; display: grid; gap: .7rem; }
.tier li { position: relative; padding-left: 1.6rem; color: var(--text); }
.tier li::before { content: ""; position: absolute; left: 0; top: .7em; width: 7px; height: 7px; border: 1px solid var(--sand); transform: rotate(45deg); }
.tier .btn { margin-top: auto; }
.tier--feature { background: var(--espresso); color: #e3d9cd; border-color: var(--espresso); }
.tier--feature .tier__name { color: var(--sand); }
.tier--feature .tier__price { color: #fff; }
.tier--feature li { color: #ddd1c4; }
.tier--feature li::before { border-color: var(--sand); }
.tier--feature .btn { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.tier--feature .btn:hover { background: #fff; border-color: #fff; }

/* ===================================================================
   Tile grid (image set)
   =================================================================== */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.6rem, 1.2vw, 1rem); }
.tile-grid .frame { aspect-ratio: 3/4; }
@media (max-width: 760px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.3rem 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.45rem); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--taupe-deep); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: .9rem; color: var(--muted); max-width: 64ch; }

/* ===================================================================
   Scroll reveal
   =================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .frame img, .svc-card img { transition: none !important; }
}

/* Utility */
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.maxw-prose { max-width: 64ch; }
.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
