/* =========================================================
   The Crafty Patch — styles.css
   Brand colors are pulled from the logo files.
   ========================================================= */
:root {
  --cream: #fdfbf5;      /* logo background */
  --paper: #f4efe4;      /* flyer panel beige */
  --paper-2: #ebe5d6;
  --sage: #8f9a80;
  --sage-soft: #dfe3d6;
  --forest: #3f5040;
  --forest-deep: #2f3b30;
  --ink: #2b2f29;
  --muted: #5f665a;
  --gold: #b8894a;
  --gold-text: #8a6330;  /* darker gold for readable text */
  --line: #e2dccd;
  --white: #ffffff;

  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Allura", "Brush Script MT", cursive;

  --radius: 18px;
  --radius-sm: 10px;
  --arch: 999px 999px 18px 18px;
  --container: 1180px;
  --shadow: 0 10px 30px -12px rgba(47, 59, 48, .25);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}
[hidden] { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); }
a:hover { color: var(--gold-text); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--forest-deep);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--forest); color: #fff; padding: 8px 14px; z-index: 200; border-radius: 6px; }
.skip-link:focus { left: 12px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: #eef0e8; }
.section--forest h2, .section--forest h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-text); font-weight: 500; margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow--left::before { display: none; }
.script { font-family: var(--font-script); font-weight: 400; color: var(--forest); font-size: 1.6em; line-height: 1; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-size: .95rem; font-weight: 500; letter-spacing: .04em;
  text-decoration: none; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--forest); color: #fff; }
.btn--primary:hover { background: var(--forest-deep); color: #fff; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-text); color: #fff; }
.btn--outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn--outline:hover { background: var(--forest); color: #fff; }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: var(--sage-soft); color: var(--forest-deep); }
.btn--sm { padding: 10px 18px; min-height: 40px; font-size: .88rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 245, .94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--forest-deep); }
.brand img { width: 46px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--ink); }
.brand-text span { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--ink); font-size: .95rem; letter-spacing: .02em; position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
.nav-links a:not(.btn):hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--forest); font-weight: 500; }
.nav-links .btn--primary { color: #fff; }
.nav-links .btn--primary:hover { color: #fff; }
.nav-phone { font-weight: 500; color: var(--forest) !important; white-space: nowrap; }
.nav-toggle {
  display: none; background: none; border: 0; padding: 10px; cursor: pointer; color: var(--forest);
  width: 48px; height: 48px; border-radius: 10px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; transition: transform .25s, opacity .2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px 20px 24px;
    transform: translateY(-110%); opacity: 0; visibility: hidden; transition: transform .3s, opacity .3s, visibility .3s;
    box-shadow: var(--shadow); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-open .nav-links { transform: none; opacity: 1; visibility: visible; }
  .nav-links li a:not(.btn) { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 16px; width: 100%; }
}
@media (max-width: 420px) { .brand-text span { font-size: 1.25rem; } .brand img { width: 40px; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 90px) 0 clamp(56px, 8vw, 100px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 { margin-bottom: .3em; }
.hero h1 em { font-style: italic; color: var(--forest); }
.hero .lead { max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 22px; font-size: .92rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.arches { position: relative; aspect-ratio: 1 / 1.02; max-width: 540px; margin-left: auto; width: 100%; }
.arch { position: absolute; overflow: hidden; border-radius: var(--arch); box-shadow: var(--shadow); background: var(--sage-soft); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch--a { left: 0; top: 8%; width: 56%; height: 88%; }
.arch--b { right: 0; top: 0; width: 50%; height: 70%; border: 6px solid var(--cream); }
.arches .sun { position: absolute; right: 6%; bottom: 10%; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #d4a868, var(--gold) 60%, #a37636); box-shadow: var(--shadow); }
.arches .ring { position: absolute; left: 18%; top: -2%; width: 70%; height: 60%; border: 1.5px solid var(--gold); border-bottom: 0; border-radius: 999px 999px 0 0; pointer-events: none; }
.arches .tag {
  position: absolute; left: -4%; bottom: 4%; background: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow);
  font-size: .85rem; line-height: 1.3; max-width: 210px;
}
.arches .tag strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--forest); }
.leaf { position: absolute; pointer-events: none; opacity: .5; color: var(--sage); }
.leaf--tl { left: -60px; top: 20px; width: 200px; transform: rotate(-20deg); }
.leaf--br { right: -40px; bottom: -30px; width: 220px; transform: rotate(160deg); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .arches { margin: 10px auto 0; max-width: 420px; }
}

/* ---------- Photo strip ---------- */
.strip { overflow: hidden; padding: 6px 0 12px; background: var(--cream); }
.strip-track { display: flex; gap: 14px; width: max-content; animation: strip 60s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip a { display: block; flex: none; width: 210px; height: 260px; border-radius: 120px 120px 14px 14px; overflow: hidden; background: var(--sage-soft); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.strip a:hover img { transform: scale(1.05); }
.strip a.wide { width: 390px; }
@keyframes strip { to { transform: translateX(-50%); } }
@media (max-width: 600px) { .strip a { width: 150px; height: 190px; } .strip a.wide { width: 285px; } }

/* ---------- Stats ---------- */
.stats { background: var(--forest); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat { padding: 30px 12px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 28%; height: 44%; width: 1px; background: rgba(255,255,255,.2); }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 600; line-height: 1; color: #f1d9ae; }
.stat span { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .stat { padding: 22px 8px; }
}

/* ---------- Offer cards ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .offer-grid { grid-template-columns: 1fr; } }
.offer {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px; display: flex; flex-direction: column; gap: 6px; text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
a.offer:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sage); color: inherit; }
.icon-circle {
  width: 58px; height: 58px; border-radius: 50%; background: var(--sage-soft); color: var(--forest);
  display: grid; place-items: center; margin-bottom: 8px; flex: none;
}
.icon-circle svg { width: 28px; height: 28px; }
.offer h3 { font-size: 1.4rem; margin: 0; }
.offer .price { font-size: .95rem; color: var(--gold-text); font-weight: 500; }
.offer p { font-size: .93rem; color: var(--muted); margin: 0; }
.offer .more { margin-top: auto; padding-top: 10px; font-size: .88rem; font-weight: 500; color: var(--forest); }

/* ---------- Occasions ---------- */
.occasions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; max-width: 900px; margin: 0 auto; }
.chip {
  display: inline-block; padding: 10px 20px; border-radius: 999px; background: var(--white); border: 1px solid var(--line);
  font-size: .95rem; color: var(--ink);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 22px 24px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: #fff; font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; margin-bottom: 14px;
}
.step h3 { font-size: 1.35rem; margin-bottom: .3em; }
.step p { font-size: .93rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Split / why ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--arch); width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list li::before {
  content: ""; flex: none; width: 24px; height: 24px; margin-top: 3px; border-radius: 50%;
  background: var(--sage-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f5040' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/13px no-repeat;
}
.check-list strong { display: block; color: var(--forest-deep); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split-media { max-width: 440px; margin: 0 auto; } }

/* ---------- Info cards (policies) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.info h3 { font-size: 1.3rem; margin-bottom: .2em; }
.info p { margin: 0; font-size: .93rem; color: var(--muted); }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- Bulk / promo band ---------- */
.band { position: relative; overflow: hidden; border-radius: 28px; background: var(--forest); color: #eef0e8; padding: clamp(36px, 6vw, 64px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.band h2 { color: #fff; }
.band .script { color: #f1d9ae; font-size: 2.4rem; display: block; margin-bottom: 6px; }
.band-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; border: 1.5px solid rgba(241, 217, 174, .5); }
@media (max-width: 760px) { .band { grid-template-columns: 1fr; } }

/* ---------- Service area ---------- */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.area h3 { font-size: 1.4rem; display: flex; align-items: center; gap: 10px; }
.area h3::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.area ul { margin: 0; padding: 0; list-style: none; columns: 2; font-size: .93rem; color: var(--muted); }
.area li { padding: 3px 0; break-inside: avoid; }
@media (max-width: 800px) { .areas { grid-template-columns: 1fr; } }

/* ---------- Instagram CTA ---------- */
.ig { text-align: center; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin: 30px 0; }
.ig-grid a { aspect-ratio: 1; overflow: hidden; border-radius: 12px; display: block; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ig-grid a:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(36px, 5vw, 56px); text-align: center; background: linear-gradient(var(--paper), var(--cream)); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--muted); }
.page-hero .script { display: block; font-size: 2.3rem; margin-bottom: 4px; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px; }
.filter {
  font: inherit; font-size: .92rem; padding: 10px 18px; min-height: 44px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: all .2s;
}
.filter:hover { border-color: var(--sage); }
.filter[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: #fff; }
.filter .count { opacity: .7; font-size: .82em; margin-left: 4px; }
.masonry { columns: 3 300px; column-gap: 18px; }
.tile { break-inside: avoid; margin: 0 0 18px; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.tile[hidden] { display: none; }
.tile button.tile-open { display: block; width: 100%; padding: 0; border: 0; background: var(--sage-soft); cursor: zoom-in; }
.tile img { width: 100%; height: auto; transition: transform .5s; }
.tile:hover img { transform: scale(1.03); }
.tile-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.tile-cat { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); font-weight: 500; }
.tile-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--forest-deep); line-height: 1.2; margin: 0; }
.tile .btn { align-self: flex-start; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(28, 34, 29, .92); display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lb-inner { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 0; max-width: 1100px; width: 100%; max-height: 92vh; background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.lb-img { background: #1d231e; display: grid; place-items: center; min-height: 0; }
.lb-img img { max-height: 92vh; width: auto; max-width: 100%; object-fit: contain; }
.lb-side { padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.lb-side h2 { font-size: 1.7rem; margin: 0; }
.lb-side p { color: var(--muted); font-size: .95rem; margin: 0; }
.lb-close, .lb-nav {
  position: fixed; background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.6rem; line-height: 1;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-count { font-size: .8rem; color: var(--muted); letter-spacing: .1em; }
@media (max-width: 800px) {
  .lb-inner { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .lb-img img { max-height: 62vh; }
  .lb-side { padding: 20px; }
  .lb-prev, .lb-next { top: auto; bottom: 16px; transform: none; }
}

/* ---------- Services page ---------- */
.cat-nav { position: sticky; top: var(--nav-h); z-index: 40; background: rgba(253,251,245,.96); border-bottom: 1px solid var(--line); }
.cat-nav ul { display: flex; gap: 6px; list-style: none; margin: 0 auto; padding: 10px 0; overflow-x: auto; scrollbar-width: none; }
.cat-nav ul::-webkit-scrollbar { display: none; }
.cat-nav a { display: block; white-space: nowrap; padding: 8px 16px; border-radius: 999px; text-decoration: none; font-size: .9rem; color: var(--ink); border: 1px solid transparent; }
.cat-nav a:hover, .cat-nav a.active { background: var(--sage-soft); color: var(--forest-deep); }
.svc { scroll-margin-top: calc(var(--nav-h) + 70px); padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc:last-of-type { border-bottom: 0; }
.svc-grid { display: grid; grid-template-columns: 340px 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.svc-media { position: relative; }
.svc-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.svc-media img.landscape { aspect-ratio: 3 / 2; }
.svc-media .thumbs { display: flex; gap: 10px; margin-top: 12px; }
.svc-media .thumbs img { width: 33%; aspect-ratio: 1; border-radius: 12px; box-shadow: none; }
.svc-price { display: inline-block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; color: var(--gold-text); margin-bottom: 10px; }
.svc-price small { font-family: var(--font-body); font-size: .85rem; font-weight: 400; color: var(--muted); }
.rate { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: .95rem; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.rate th, .rate td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.rate tr:last-child td { border-bottom: 0; }
.rate th { background: var(--paper); font-weight: 500; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.rate td:last-child { text-align: right; white-space: nowrap; font-weight: 500; color: var(--forest-deep); }
.opts { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 22px; padding: 0; list-style: none; }
.opts li { font-size: .85rem; padding: 6px 12px; border-radius: 999px; background: var(--paper); color: var(--ink); }
.fine { font-size: .88rem; color: var(--muted); }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr; } .svc-media { max-width: 380px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative; font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--forest-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.6rem; color: var(--gold); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-right: 30px; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
fieldset { border: 0; padding: 0; margin: 0 0 30px; min-width: 0; }
legend { font-family: var(--font-head); font-size: 1.55rem; font-weight: 600; color: var(--forest-deep); padding: 0; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; width: 100%; }
legend .num { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--sage-soft); color: var(--forest); font-size: 1.1rem; flex: none; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label, .field .label { font-size: .9rem; font-weight: 500; color: var(--ink); }
.req { color: #a0482f; }
.hint { font-size: .82rem; color: var(--muted); }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], select, textarea {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; min-height: 48px; transition: border-color .2s, background .2s;
}
textarea { min-height: 110px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f5040' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--forest); background: #fff; }
input.invalid, select.invalid, textarea.invalid { border-color: #a0482f; }
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--cream); font-size: .92rem; cursor: pointer; transition: all .2s; }
.choice input:checked + span { background: var(--forest); color: #fff; border-color: var(--forest); }
.choice input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--forest); flex: none; }
.dropzone {
  border: 2px dashed var(--sage); border-radius: 16px; padding: 26px; text-align: center; background: var(--cream);
  cursor: pointer; transition: background .2s, border-color .2s; position: relative;
}
.dropzone:hover, .dropzone.drag { background: var(--sage-soft); border-color: var(--forest); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone strong { color: var(--forest); }
.previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.previews figure { margin: 0; width: 76px; }
.previews img { width: 76px; height: 76px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.previews figcaption { font-size: .7rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cond { display: none; }
.cond.show { display: contents; }
.alert { padding: 14px 16px; border-radius: 12px; font-size: .92rem; }
.alert--warn { background: #fbf1df; border: 1px solid #ecd3a6; color: #6d4c1c; }
.alert--info { background: var(--sage-soft); color: var(--forest-deep); }
.alert--error { background: #f8e4de; border: 1px solid #e7b8aa; color: #7a2f1b; }
.ref-banner { display: flex; gap: 14px; align-items: center; }
.ref-banner img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex: none; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 8px; }
.honeypot { position: absolute; left: -5000px; }
.order-layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.order-aside { position: sticky; top: calc(var(--nav-h) + 20px); display: grid; gap: 16px; }
.aside-card { background: var(--paper); border-radius: var(--radius); padding: 22px; }
.aside-card h3 { font-size: 1.3rem; }
.aside-card ul { margin: 0; padding-left: 18px; font-size: .92rem; color: var(--muted); }
.aside-card li { margin-bottom: 6px; }
@media (max-width: 960px) { .order-layout { grid-template-columns: 1fr; } .order-aside { position: static; } }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Success ---------- */
.success { text-align: center; padding: 20px 0; }
.success .script { font-size: 3.2rem; display: block; }
.success-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }

/* ---------- Quote modal ---------- */
.modal { position: fixed; inset: 0; z-index: 110; display: none; align-items: center; justify-content: center; padding: 16px; background: rgba(28, 34, 29, .6); }
.modal.open { display: flex; }
.modal-card { position: relative; width: 100%; max-width: 560px; max-height: calc(100vh - 32px); overflow-y: auto; background: var(--cream); border-radius: 24px; padding: 34px 30px 28px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.4); }
.modal-card h2 { font-size: 2.1rem; margin-bottom: .2em; }
.modal-close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--paper); cursor: pointer; font-size: 1.5rem; color: var(--forest); }
.modal-card .form-grid { gap: 14px; }
.modal-steps { display: flex; gap: 6px; margin: 0 52px 16px 0; }
.modal-steps span { height: 4px; flex: 1; border-radius: 4px; background: var(--line); }
.modal-steps span.on { background: var(--gold); }
body.modal-open { overflow: hidden; }

/* ---------- Policies ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 2rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.4rem; margin-top: 1.3em; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.draft-note { background: #fbf1df; border: 1px solid #ecd3a6; color: #6d4c1c; border-radius: 12px; padding: 14px 18px; font-size: .92rem; margin-bottom: 30px; }
.toc { background: var(--paper); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 30px; }
.toc ol { margin: 0; padding-left: 20px; columns: 2; font-size: .95rem; }
@media (max-width: 600px) { .toc ol { columns: 1; } }

/* ---------- Final CTA ---------- */
.cta { text-align: center; position: relative; }
.cta .script { font-size: clamp(3rem, 8vw, 5rem); display: block; color: var(--forest); margin-bottom: 10px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: #d8dccf; padding: 64px 0 28px; font-size: .93rem; }
.site-footer a { color: #eef0e8; text-decoration: none; }
.site-footer a:hover { color: #f1d9ae; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand img { width: 64px; background: var(--cream); border-radius: 50%; padding: 8px; margin-bottom: 14px; }
.footer-brand .name { font-family: var(--font-head); font-size: 1.6rem; color: #fff; letter-spacing: .06em; text-transform: uppercase; }
.footer-brand .tag { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: #f1d9ae; margin-bottom: 14px; }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: #f1d9ae; font-weight: 500; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; }
.socials a:hover { background: rgba(255,255,255,.08); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .82rem; color: #aab1a2; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile call bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.4fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--cream); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -10px rgba(0,0,0,.25);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px;
  }
  .mobile-bar a, .mobile-bar button {
    display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 48px; border-radius: 12px;
    font: inherit; font-size: .9rem; font-weight: 500; text-decoration: none; border: 1.5px solid var(--forest); color: var(--forest); background: transparent;
  }
  .mobile-bar .mb-quote { background: var(--forest); color: #fff; cursor: pointer; }
  .mobile-bar svg { width: 18px; height: 18px; }
  body { padding-bottom: 76px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  .strip { overflow-x: auto; }
  * { transition-duration: .01ms !important; }
}
