/* =========================================================
   Open Sky Mindfulness — core stylesheet
   Palette: white / beige / light grey, soft sage accent
   Type: Fraunces (headings) + Mulish (body)
   ========================================================= */

:root {
  --sand-50:  #faf7f2;
  --sand-100: #f4eee4;
  --sand-200: #e9dfcf;
  --sand-300: #dccbb2;
  --grey-100: #f0f0ee;
  --grey-200: #e2e2df;
  --grey-300: #c9c9c4;
  --taupe:    #9a8c74;
  --taupe-dk: #7c6f59;
  --sage:     #a7b4a0;
  --sage-dk:  #86977d;
  --ink:      #3c3a34;
  --ink-soft: #5f5c54;
  --white:    #ffffff;

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px -30px rgba(60, 58, 52, 0.45);
  --shadow-card: 0 20px 60px -34px rgba(60, 58, 52, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin: 0 0 1.1em; color: var(--ink-soft); }

a { color: var(--taupe-dk); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--sage-dk); }

img, svg { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.4rem);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--taupe);
  margin: 0 0 1rem;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--sand { background: var(--sand-100); }
.section--grey { background: var(--grey-100); }

.center { text-align: center; }
.measure { max-width: 62ch; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn--primary { background: var(--taupe-dk); color: #fff; }
.btn--primary:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--sand-300); }
.btn--ghost:hover { background: var(--white); border-color: var(--taupe); color: var(--ink); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.92); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 1.3rem 0;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(154, 140, 116, 0.14);
  padding: 0.75rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand { gap: 0.85rem; }
.brand__mark { width: 56px; height: 56px; color: var(--taupe-dk); flex: none; transition: color .4s var(--ease), width .4s var(--ease), height .4s var(--ease); }
.site-header.scrolled .brand__mark { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.02; }
.brand__name { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 0.005em; }
.brand__tag { font-size: 0.64rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--taupe); font-weight: 700; margin-top: 2px; }

/* hero-overlay header (before scroll, on pages with dark hero) */
.site-header.on-hero:not(.scrolled) .brand,
.site-header.on-hero:not(.scrolled) .nav__links a { color: #fff; }
.site-header.on-hero:not(.scrolled) .brand__mark { color: #fff; }
.site-header.on-hero:not(.scrolled) .brand__tag { color: rgba(255,255,255,0.8); }
.site-header.on-hero:not(.scrolled) .nav__toggle span { background: #fff; }

.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: currentColor; transition: width .35s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { margin-left: 0.4rem; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 6px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
/* animated fallback gradient sky+sea, gently drifting */
.hero__sky {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, #dfe8ea 0%, #e9e0d0 44%, #d8c8ac 64%, #cbb795 100%);
}
.hero__waves {
  position: absolute; left: -10%; right: -10%; bottom: -2%; z-index: -1;
  opacity: 0.9;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(42,40,36,0.62) 0%, rgba(42,40,36,0.40) 40%, rgba(42,40,36,0.12) 72%, rgba(42,40,36,0.05) 100%),
    linear-gradient(180deg, rgba(42,40,36,0.28) 0%, rgba(42,40,36,0.10) 40%, rgba(42,40,36,0.40) 100%);
}
.hero__inner { position: relative; padding: 8rem 0 5rem; max-width: 46rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(40,38,34,0.35); }
.hero .eyebrow { color: rgba(255,255,255,0.92); }
.hero__lead { font-size: 1.25rem; color: rgba(255,255,255,0.94); max-width: 34rem; text-shadow: 0 1px 18px rgba(40,38,34,0.35); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll span { width: 1px; height: 42px; background: rgba(255,255,255,0.6); animation: scrollpulse 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(0.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* floating butterfly on hero */
.hero__butterfly {
  position: absolute; z-index: -1; width: 104px; color: rgba(255,255,255,0.92);
  right: 13%; top: 26%; animation: drift 12s ease-in-out infinite;
  filter: drop-shadow(0 10px 26px rgba(40,38,34,0.3));
}
@keyframes drift {
  0%   { transform: translate(0,0) rotate(-4deg); }
  33%  { transform: translate(-24px,-30px) rotate(3deg); }
  66%  { transform: translate(18px,-14px) rotate(-2deg); }
  100% { transform: translate(0,0) rotate(-4deg); }
}

/* animated hero waves */
.hero__waves svg { width: 100%; height: auto; display: block; }
.wave { animation: waveflow 14s linear infinite; }
.wave--2 { animation-duration: 20s; animation-direction: reverse; opacity: 0.6; }
.wave--3 { animation-duration: 26s; opacity: 0.4; }
@keyframes waveflow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); 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; }

/* ---------- Generic layout helpers ---------- */
.grid { display: grid; gap: clamp(1.2rem, 2.6vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.pill-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-list li {
  background: var(--white); border: 1px solid var(--sand-200); color: var(--ink-soft);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.86rem; font-weight: 600;
}

/* value / outcome cards */
.card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -34px rgba(60,58,52,0.5); }
.card__icon {
  width: 46px; height: 46px; color: var(--sage-dk); margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.4rem; }
.card p { margin: 0; font-size: 0.98rem; }
.card__more { display: inline-block; margin-top: 1rem; font-weight: 700; font-size: 0.9rem; }

/* service list block */
.service {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  padding: 1.9rem 0; border-top: 1px solid var(--sand-200);
}
.service:first-child { border-top: 0; }
.service__num { font-family: var(--font-head); font-size: 1.5rem; color: var(--sand-300); }
.service h3 { margin-bottom: 0.3rem; }
.service p { margin: 0; }

/* image frame */
.frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card);
  background: var(--sand-200); aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.frame--wide { aspect-ratio: 16/11; }
.frame__ph {
  text-align: center; color: var(--taupe); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 2rem;
}
.frame__ph svg { width: 54px; margin: 0 auto 0.9rem; color: var(--taupe); opacity: 0.6; }

/* quote / message band */
.band {
  background: var(--sand-200);
  background-image: radial-gradient(120% 120% at 50% 0%, var(--sand-100) 0%, var(--sand-200) 100%);
}
.band__quote { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.3; color: var(--ink); max-width: 26ch; margin: 0 auto; }

/* stats / trust row */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem,5vw,3.5rem); }
.trust__item { text-align: center; }
.trust__num { font-family: var(--font-head); font-size: 2.4rem; color: var(--taupe-dk); display: block; }
.trust__label { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(135deg, #7c6f59 0%, #9a8c74 55%, #86977d 120%);
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.9); }

/* ---------- Booking / form ---------- */
.booking { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-card);
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1px solid var(--sand-300); border-radius: var(--radius-sm);
  background: var(--sand-50); transition: border .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-dk); box-shadow: 0 0 0 3px rgba(167,180,160,0.28); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field--check { display: flex; gap: 0.7rem; align-items: flex-start; }
.field--check input { width: auto; margin-top: 0.3rem; }
.field--check label { font-weight: 500; color: var(--ink-soft); font-size: 0.85rem; }
.form-note { font-size: 0.8rem; color: var(--taupe); margin-top: 0.8rem; }
.contact-aside p { margin-bottom: 0.6rem; }
.contact-line { display: flex; gap: 0.7rem; align-items: center; font-weight: 600; color: var(--ink); }
.contact-line svg { width: 20px; color: var(--sage-dk); flex: none; }

/* booking embed slot */
.embed-slot {
  border: 1px dashed var(--sand-300); border-radius: var(--radius); background: var(--sand-100);
  padding: 3rem 1.5rem; text-align: center; color: var(--taupe);
}

/* ---------- Footer ---------- */
.site-footer { background: #2f2d28; color: rgba(255,255,255,0.72); padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; color: #fff; margin-bottom: 1rem; }
.footer-brand svg { width: 52px; color: #fff; }
.footer-brand { gap: 0.85rem; }
.footer-brand .brand__name { color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.92rem; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-disc { font-size: 0.78rem; color: rgba(255,255,255,0.45); max-width: 60ch; margin-top: 1.2rem; line-height: 1.6; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding: 11rem 0 4rem; background: var(--sand-100);
  border-bottom: 1px solid var(--sand-200); text-align: center;
}
.page-hero .eyebrow { color: var(--taupe); }
.page-hero p { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* legal / prose */
.prose { max-width: 74ch; margin: 0 auto; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; color: var(--ink-soft); }
.policy-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .split, .booking { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__butterfly { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--sand-50); flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 1.4rem; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: var(--shadow-soft); z-index: 40;
  }
  .nav__links.open { transform: none; }
  .nav__links a { color: var(--ink) !important; font-size: 1.05rem; }
  .nav__toggle { display: flex; z-index: 45; }
  .site-header.on-hero:not(.scrolled) .nav__toggle span { background: #fff; }
  .service { grid-template-columns: 1fr; gap: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   ENHANCEMENTS v2 — richer sections, texture, motion
   ========================================================= */

/* subtle paper grain over whole page */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: 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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* keep header above the grain, add a soft scrim for nav contrast over the light hero top */
.site-header.on-hero:not(.scrolled)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(44,42,38,0.34), rgba(44,42,38,0.06) 70%, transparent);
}

/* floating light motes on hero */
.motes { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.mote { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.7);
  filter: blur(0.5px); opacity: 0; animation: rise linear infinite; }
@keyframes rise {
  0% { transform: translateY(20px) scale(0.7); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-90vh) scale(1.1); opacity: 0; }
}

/* soft gradient blobs for section depth */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 0; pointer-events: none; }
.blob--sage { background: radial-gradient(circle, rgba(167,180,160,0.55), transparent 70%); }
.blob--sand { background: radial-gradient(circle, rgba(220,203,178,0.6), transparent 70%); }
.has-blobs { position: relative; overflow: hidden; }
.has-blobs > .container { position: relative; z-index: 1; }

/* wave section divider */
.divider { display: block; width: 100%; height: auto; margin-bottom: -6px; }
.divider--flip { transform: rotate(180deg); margin-top: -6px; margin-bottom: 0; }

/* ---------- Steps ("how we begin") ---------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; margin-top: 2.6rem; }
.steps.grid--3 { grid-template-columns: repeat(3,1fr); }
.step {
  position: relative; background: var(--white); border: 1px solid var(--sand-200);
  border-radius: var(--radius); padding: 2.2rem 1.8rem 1.9rem; box-shadow: var(--shadow-card);
}
.step__n {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 50%; background: var(--sand-100); color: var(--taupe-dk);
  font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 1rem; border: 1px solid var(--sand-200);
}
.step h3 { margin-bottom: 0.3rem; }
.step p { margin: 0; font-size: 0.97rem; }

/* ---------- Testimonials ---------- */
.tcard {
  background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-card); height: 100%; display: flex; flex-direction: column;
}
.tcard__stars { color: var(--sage-dk); letter-spacing: 2px; margin-bottom: 0.8rem; font-size: 0.9rem; }
.tcard blockquote { font-family: var(--font-head); font-size: 1.12rem; line-height: 1.5; color: var(--ink); margin: 0 0 1.1rem; }
.tcard__who { font-size: 0.85rem; color: var(--taupe); font-weight: 700; margin-top: auto; }
.tnote { text-align:center; color: var(--taupe); font-size: 0.8rem; margin-top: 1.4rem; }

/* ---------- Feature (art + text) ---------- */
.artframe {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--sand-100), var(--sand-200));
  box-shadow: var(--shadow-card); display: flex; align-items: center; justify-content: center;
}
.artframe--wide { aspect-ratio: 16/12; }
.artframe svg.art { width: 62%; height: auto; color: var(--taupe); opacity: 0.85; }
.artframe .art-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 0.7rem 1rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe);
  background: linear-gradient(0deg, rgba(255,255,255,0.75), transparent);
}
.art-float { animation: floaty 8s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 2.4rem auto 0; }
.faq details {
  background: var(--white); border: 1px solid var(--sand-200); border-radius: var(--radius-sm);
  margin-bottom: 0.8rem; padding: 0 1.3rem; box-shadow: 0 12px 30px -26px rgba(60,58,52,0.5);
  transition: box-shadow .3s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 0; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-head); font-size: 1.5rem; color: var(--taupe); line-height: 1;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 1.2rem; font-size: 0.97rem; }

/* ---------- Logo / qualification strip ---------- */
.quals {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.7rem 1rem; margin-top: 1.6rem;
}
.qual {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white);
  border: 1px solid var(--sand-200); border-radius: 999px; padding: 0.55rem 1.1rem;
  font-size: 0.82rem; font-weight: 700; color: var(--ink-soft);
}
.qual svg { width: 16px; color: var(--sage-dk); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.gallery .artframe { aspect-ratio: 1; }
.gallery .artframe:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ---------- Split contact/info band ---------- */
.infoband { background: var(--sand-100); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.4rem); }

/* pricing-free package cards */
.pkg { display:grid; gap:1.2rem; grid-template-columns: repeat(3,1fr); margin-top:2.6rem; }
.pkg__card { background:var(--white); border:1px solid var(--sand-200); border-radius:var(--radius); padding:2rem 1.7rem; box-shadow:var(--shadow-card); }
.pkg__card--feature { background: linear-gradient(165deg,#fff, var(--sand-50)); border-color: var(--sand-300); }
.pkg__tag { font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--sage-dk); font-weight:700; }
.pkg__card h3 { margin:0.5rem 0 0.4rem; }
.pkg__card ul { list-style:none; padding:0; margin:1rem 0 0; }
.pkg__card li { padding:0.45rem 0; border-top:1px solid var(--sand-200); font-size:0.93rem; color:var(--ink-soft); display:flex; gap:0.6rem; }
.pkg__card li svg { width:16px; color:var(--sage-dk); flex:none; margin-top:0.28rem; }

@media (max-width: 860px) {
  .steps.grid--3 { grid-template-columns: 1fr; }
  .pkg { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .gallery .artframe:first-child { grid-column: span 2; grid-row: auto; }
}

/* =========================================================
   PHOTOGRAPHY integration
   ========================================================= */
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { /* gentle warm wash to unify photo with palette */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(233,224,208,0.15), rgba(203,183,149,0.25));
}
/* photo inside an artframe */
.artframe > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.artframe.has-photo { background: none; }
.artframe.has-photo .art-caption { background: linear-gradient(0deg, rgba(48,46,42,0.55), transparent); color: rgba(255,255,255,0.9); }

/* full-bleed photo band with light scrim for dark text */
.band--photo { position: relative; overflow: hidden; }
.band--photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band--photo::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(250,247,242,0.86), rgba(244,238,228,0.82)); }
.band--photo > .container { position: relative; z-index: 2; }

/* =========================================================
   LOGO BADGE (illustrated gold-line butterfly)
   ========================================================= */
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; display: block; }
.brand__mark img, .footer-brand img { filter: drop-shadow(0 6px 16px rgba(60,58,52,0.16)); }

/* ---------- Home brand band (featured lockup) ---------- */
.brand-band { padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem,4vw,3rem); text-align: center; background: var(--sand-50); }
.brand-band img { width: 100%; max-width: 600px; height: auto; margin: 0 auto; display: block; }
@media (max-width: 640px){ .brand-band img { max-width: 420px; } }

/* =========================================================
   POLISH v3 — accessibility, soft depth, refined motion
   (Soft UI Evolution: softer layered shadows, WCAG AA+, 200-300ms)
   ========================================================= */

/* brand text selection */
::selection { background: rgba(167,180,160,0.32); color: var(--ink); }

/* visible keyboard focus everywhere (not on mouse click) */
:focus-visible { outline: 2.5px solid var(--sage-dk); outline-offset: 3px; border-radius: 5px; }
.btn:focus-visible { outline-color: var(--taupe-dk); }
.site-header.on-hero:not(.scrolled) a:focus-visible,
.site-header.on-hero:not(.scrolled) .btn:focus-visible { outline-color: #fff; }
:focus:not(:focus-visible) { outline: none; }

/* keep anchor targets clear of the fixed header */
html { scroll-padding-top: 96px; }
[id] { scroll-margin-top: 96px; }

/* content images keep aspect ratio (prevents layout shift with width/height attrs) */
img { height: auto; }
.hero__media img, .artframe > img, .frame > img, .brand__mark img, .band--photo > img { height: 100%; }

/* brand accent on form controls */
input[type="checkbox"] { accent-color: var(--sage-dk); width: 18px; height: 18px; }

/* softer, layered "soft UI" shadows */
.card, .step, .tcard, .form-card {
  box-shadow: 0 1px 2px rgba(60,58,52,0.04), 0 14px 34px -20px rgba(60,58,52,0.20);
}
.card:hover {
  box-shadow: 0 2px 4px rgba(60,58,52,0.05), 0 28px 54px -26px rgba(60,58,52,0.26);
}
.artframe { box-shadow: 0 2px 6px rgba(60,58,52,0.05), 0 26px 60px -34px rgba(60,58,52,0.4); }

/* snappier, tactile buttons (200-260ms) + press feedback */
.btn { transition-duration: .24s; }
.btn:active { transform: translateY(0) scale(0.985); }

/* larger, comfortable tap targets on nav */
.nav__links a { padding: 6px 2px; }
.faq summary { padding-top: 1.25rem; padding-bottom: 1.25rem; }

/* gentle lift on service rows */
.service { transition: transform .25s var(--ease); }
.service:hover { transform: translateX(4px); }

/* quals + contact lines feedback */
.qual { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.qual:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -18px rgba(60,58,52,0.4); }

/* reduced-motion: also neutralise the new transforms */
@media (prefers-reduced-motion: reduce) {
  .service:hover, .qual:hover, .btn:active, .card:hover { transform: none; }
}

/* contrast: darken small taupe labels to meet WCAG AA (>=4.5:1 on cream) */
.eyebrow, .brand__tag, .tcard__who, .form-note, .tnote, .art-caption { color: #6d6049; }
.page-hero .eyebrow { color: #6d6049; }
.artframe.has-photo .art-caption { color: rgba(255,255,255,0.92); }
.hero .eyebrow { color: rgba(255,255,255,0.95); }
.site-header.on-hero:not(.scrolled) .brand__tag { color: rgba(255,255,255,0.85); }
.cta .eyebrow { color: rgba(255,255,255,0.92) !important; }

/* =========================================================
   POLISH v4 — Web Interface Guidelines (skip link, wrapping)
   ========================================================= */
.skip-link {
  position: absolute; left: 12px; top: -64px; z-index: 100;
  background: var(--taupe-dk); color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 0.65rem 1.1rem; border-radius: 10px; box-shadow: var(--shadow-soft);
  transition: top .22s var(--ease);
}
.skip-link:focus { top: 12px; }

/* balanced headings prevent orphan words; pretty body wrap */
h1, h2, h3 { text-wrap: balance; }
.lead, .hero__lead, p { text-wrap: pretty; }
