/* ============================================================
   thehollowdesigns.com — Design System
   Palette: Warm Cream #F6F3EE + Deep Burgundy #6B1E36 + Gold #B8924A
   Fonts:   Bodoni Moda (headings, display) + Libre Franklin (body)
   Nav:     FULLSCREEN OVERLAY — minimal top bar, overlay on click
   Hero:    Centered editorial — large statement + scrolling strip
   Services: Magazine alternating layout
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Libre+Franklin:wght@300;400;500;600;700&display=swap');

:root {
  --thd-cream:    #F6F3EE;
  --thd-cream2:   #EFEBE3;
  --thd-cream3:   #E8E2D8;
  --thd-burg:     #6B1E36;
  --thd-burg2:    #8A2848;
  --thd-burg-l:   #F2E0E5;
  --thd-gold:     #B8924A;
  --thd-gold2:    #D4AA68;
  --thd-gold-l:   #F5EDD8;
  --thd-dark:     #1A120A;
  --thd-dark2:    #221A10;
  --thd-ink:      #1A120A;
  --thd-mid:      #7A6A58;
  --thd-muted:    #B0A090;
  --thd-border:   rgba(26,18,10,.12);
  --thd-ease:     all .25s ease;
  --thd-shadow:   0 2px 16px rgba(26,18,10,.07);
  --thd-shadow2:  0 10px 48px rgba(26,18,10,.13);
  --thd-r4:       4px;
  --thd-r8:       8px;
  --thd-r12:      12px;
  --thd-r16:      16px;
  --thd-wrap:     1100px;
  --thd-fh:       'Bodoni Moda', serif;
  --thd-fb:       'Libre Franklin', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--thd-fb);
  font-size: .9375rem;
  line-height: 1.72;
  color: var(--thd-mid);
  background: var(--thd-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--thd-fh); color: var(--thd-ink); font-weight: 500; line-height: 1.12; }
h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.0625rem; font-weight: 600; }
p  { max-width: 68ch; word-wrap: break-word; }
em { font-family: var(--thd-fh); font-style: italic; color: var(--thd-burg); }

/* ── MINIMAL TOP NAV BAR ─────────────────────────── */
.thd-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 70px; background: transparent;
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  transition: background .35s ease, box-shadow .35s ease;
}
.thd-topbar.thd-tb-scrolled { background: var(--thd-cream); box-shadow: 0 1px 0 var(--thd-border); }
.thd-tb-logo {
  font-family: var(--thd-fh); font-size: clamp(1.1875rem, 2.5vw, 1.5625rem);
  font-weight: 500; color: var(--thd-ink); flex: 1; font-style: italic;
  letter-spacing: -.01em;
}
.thd-tb-logo span { font-style: normal; color: var(--thd-burg); }
.thd-tb-right { display: flex; align-items: center; gap: 1.5rem; }
.thd-tb-link  { font-family: var(--thd-fb); font-size: .9375rem; font-weight: 500; color: var(--thd-mid); transition: color .2s; }
.thd-tb-link:hover { color: var(--thd-burg); }
.thd-burger { background: none; border: none; color: var(--thd-ink); display: flex; align-items: center; gap: .5rem; font-family: var(--thd-fb); font-size: .875rem; font-weight: 500; color: var(--thd-mid); }

/* ── FULLSCREEN OVERLAY NAVIGATION ──────────────── */
.thd-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: var(--thd-cream);
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
  overflow: hidden;
}
.thd-overlay.thd-ov-open { transform: translateY(0); }
.thd-ov-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: clamp(3rem, 8vh, 6rem); }
.thd-ov-logo { font-family: var(--thd-fh); font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 500; color: var(--thd-ink); font-style: italic; }
.thd-ov-logo span { font-style: normal; color: var(--thd-burg); }
.thd-ov-cls  { background: none; border: none; color: var(--thd-mid); transition: color .2s; }
.thd-ov-cls:hover { color: var(--thd-burg); }
.thd-ov-nav  { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.thd-ov-link {
  font-family: var(--thd-fh); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400; color: var(--thd-cream3); line-height: 1.1;
  transition: color .25s; display: inline-block;
  border-bottom: 1px solid transparent;
}
.thd-ov-link:hover { color: var(--thd-burg); }
.thd-ov-link.thd-ov-active { color: var(--thd-ink); }
.thd-ov-foot { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.thd-ov-contact { }
.thd-ov-contact-label { font-family: var(--thd-fb); font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--thd-muted); margin-bottom: .375rem; }
.thd-ov-contact a    { font-family: var(--thd-fh); font-size: 1.125rem; font-weight: 500; color: var(--thd-ink); transition: color .2s; }
.thd-ov-contact a:hover { color: var(--thd-burg); }
.thd-ov-social { display: flex; gap: 1rem; }
.thd-ov-soc { color: var(--thd-muted); transition: color .2s; }
.thd-ov-soc:hover { color: var(--thd-burg); }

/* ── LAYOUT ─────────────────────────────────────── */
.thd-wrap     { max-width: var(--thd-wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 2.5rem); }
.thd-slab     { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.thd-slab-sm  { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.thd-bg-cream2 { background: var(--thd-cream2); }
.thd-bg-dark   { background: var(--thd-dark); }
.thd-bg-burg   { background: var(--thd-burg); }

/* ── EYEBROW ──────────────────────────────────────── */
.thd-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--thd-fb); font-size: .8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--thd-muted);
  margin-bottom: 1rem;
}
.thd-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--thd-gold); }
.thd-eyebrow-lt  { color: rgba(255,255,255,.4); }
.thd-eyebrow-lt::before { background: var(--thd-gold); }

/* ── BUTTONS ─────────────────────────────────────── */
.thd-btn-burg {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; background: var(--thd-burg); color: var(--thd-cream);
  font-family: var(--thd-fb); font-size: .9375rem; font-weight: 600;
  border: 2px solid var(--thd-burg); border-radius: var(--thd-r4);
  transition: var(--thd-ease); white-space: nowrap;
}
.thd-btn-burg:hover { background: var(--thd-burg2); border-color: var(--thd-burg2); }

.thd-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; background: transparent; color: var(--thd-burg);
  font-family: var(--thd-fb); font-size: .9375rem; font-weight: 600;
  border: 2px solid var(--thd-burg); border-radius: var(--thd-r4);
  transition: var(--thd-ease); white-space: nowrap;
}
.thd-btn-outline:hover { background: var(--thd-burg); color: var(--thd-cream); }

.thd-btn-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; background: var(--thd-dark); color: var(--thd-cream);
  font-family: var(--thd-fb); font-size: .9375rem; font-weight: 600;
  border: 2px solid var(--thd-dark); border-radius: var(--thd-r4);
  transition: var(--thd-ease); white-space: nowrap;
}
.thd-btn-dark:hover { background: var(--thd-burg); border-color: var(--thd-burg); }

.thd-btn-lt {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; background: transparent; color: var(--thd-cream);
  font-family: var(--thd-fb); font-size: .9375rem; font-weight: 600;
  border: 2px solid rgba(246,243,238,.35); border-radius: var(--thd-r4);
  transition: var(--thd-ease); white-space: nowrap;
}
.thd-btn-lt:hover { background: rgba(246,243,238,.15); border-color: rgba(246,243,238,.6); }

.thd-btn-sm  { padding: .5625rem 1.375rem; font-size: .875rem; }
.thd-link-art { display: inline-flex; align-items: center; gap: .375rem; font-family: var(--thd-fb); font-weight: 600; color: var(--thd-burg); font-size: .9375rem; }
.thd-link-art:hover { gap: .625rem; }

/* ── HERO EDITORIAL ──────────────────────────────── */
.thd-hero { padding-top: 180px; padding-bottom: clamp(4rem, 8vw, 6rem); text-align: center; position: relative; }
.thd-hero-kicker { font-family: var(--thd-fb); font-size: .875rem; font-weight: 500; color: var(--thd-muted); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.75rem; }
.thd-hero h1 { max-width: 18ch; margin: 0 auto 1rem; }
.thd-hero-h1-italic { font-style: italic; color: var(--thd-burg); }
.thd-hero-sub { font-size: clamp(.9375rem, 2vw, 1.125rem); color: var(--thd-mid); max-width: 52ch; margin: 0 auto 2.5rem; line-height: 1.8; }
.thd-hero-acts { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4.5rem; }
.thd-hero-rule { width: 60px; height: 1px; background: var(--thd-gold); margin: 0 auto 4.5rem; }

/* ── WORK TABLE (replaces marquee + polaroid) ───────── */
.thd-work-table { display: flex; flex-direction: column; border-top: 1.5px solid var(--thd-border); }
.thd-work-row {
  display: grid; grid-template-columns: 48px 1fr 220px 60px 24px;
  align-items: center; gap: 1.25rem;
  padding: 1.125rem 0; border-bottom: 1.5px solid var(--thd-border);
  text-decoration: none; color: inherit;
  transition: background .18s;
}
a.thd-work-row { cursor: pointer; }
a.thd-work-row:hover { background: var(--thd-cream3); padding-left: .75rem; padding-right: .75rem; border-radius: var(--thd-r4); }
.thd-work-row-static { cursor: default; }
.thd-wr-num   { font-family: var(--thd-fh); font-size: .8125rem; font-weight: 500; color: var(--thd-muted); font-style: italic; }
.thd-wr-title { font-family: var(--thd-fh); font-size: 1.125rem; font-weight: 500; color: var(--thd-ink); font-style: italic; }
.thd-wr-type  { font-family: var(--thd-fb); font-size: .8125rem; color: var(--thd-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.thd-wr-year  { font-family: var(--thd-fb); font-size: .8125rem; color: var(--thd-muted); }
.thd-wr-arr   { color: var(--thd-burg); transition: transform .2s; }
a.thd-work-row:hover .thd-wr-arr { transform: translate(2px, -2px); }

/* ── SERVICES MAGAZINE ───────────────────────────── */
.thd-svc-editorial { display: flex; flex-direction: column; gap: clamp(4rem, 8vw, 7rem); }
.thd-svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.thd-svc-visual { border-radius: var(--thd-r12); overflow: hidden; aspect-ratio: 4/3; background: var(--thd-cream3); }
.thd-svc-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.thd-svc-visual:hover img { transform: scale(1.04); }
.thd-svc-prose {}
.thd-svc-prose .thd-eyebrow { margin-bottom: .625rem; }
.thd-svc-prose h3 { margin-bottom: .875rem; }
.thd-svc-prose p  { color: var(--thd-mid); margin-bottom: 1.25rem; }
.thd-svc-prose-price { display: flex; align-items: baseline; gap: .2rem; margin-bottom: 1.5rem; }
.thd-sp-sym { font-family: var(--thd-fh); font-size: 1.125rem; font-weight: 500; color: var(--thd-burg); }
.thd-sp-int { font-family: var(--thd-fh); font-size: 2.25rem; font-weight: 500; color: var(--thd-ink); line-height: 1; }
.thd-sp-dec { font-family: var(--thd-fh); font-size: 1.125rem; font-weight: 500; color: var(--thd-burg); align-self: flex-end; }

/* even rows: visual goes right (order swap) */
.thd-svc-row.thd-row-even .thd-svc-visual { order: 2; }
.thd-svc-row.thd-row-even .thd-svc-prose  { order: 1; }

/* ── TESTIMONIALS BIG QUOTE ──────────────────────── */
.thd-testi-stage { position: relative; max-width: 860px; margin: 0 auto; }
.thd-testi-quotemark { position: absolute; top: -2.5rem; left: -.5rem; color: var(--thd-burg-l); font-size: 10rem; font-family: var(--thd-fh); line-height: 1; pointer-events: none; font-style: italic; }
.thd-testi-q { font-family: var(--thd-fh); font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 400; color: var(--thd-ink); line-height: 1.5; font-style: italic; margin-bottom: 1.75rem; position: relative; z-index: 1; text-align: center; }
.thd-testi-stars { display: flex; gap: .2rem; color: var(--thd-gold); justify-content: center; margin-bottom: .875rem; }
.thd-testi-author { text-align: center; }
.thd-testi-nm { font-family: var(--thd-fb); font-weight: 600; color: var(--thd-ink); margin-bottom: .2rem; font-size: 1rem; }
.thd-testi-rl { font-size: .875rem; color: var(--thd-muted); }
.thd-testi-nav { display: flex; gap: .75rem; justify-content: center; margin-top: 2rem; }
.thd-testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--thd-cream3); border: 1.5px solid var(--thd-muted); cursor: pointer; transition: var(--thd-ease); }
.thd-testi-dot.thd-dot-on { background: var(--thd-burg); border-color: var(--thd-burg); }

/* ── PROCESS NUMBERED STEPS ──────────────────────── */
.thd-proc-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.thd-proc-step { text-align: center; }
.thd-proc-num-wrap { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--thd-gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--thd-gold); }
.thd-proc-num-txt { font-family: var(--thd-fh); font-size: .9375rem; font-weight: 600; color: var(--thd-gold); }
.thd-proc-head { font-family: var(--thd-fh); font-size: 1.125rem; font-weight: 500; color: var(--thd-ink); margin-bottom: .625rem; }
.thd-proc-body { font-size: .875rem; color: var(--thd-muted); line-height: 1.75; }

/* ── PRICING TABLE ───────────────────────────────── */
.thd-price-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.thd-price-col { border: 1.5px solid var(--thd-border); border-radius: var(--thd-r12); padding: 2rem; background: var(--thd-cream); position: relative; transition: var(--thd-ease); }
.thd-price-col:hover { box-shadow: var(--thd-shadow2); }
.thd-price-col.thd-pop-col { border-color: var(--thd-burg); background: var(--thd-dark); }
.thd-pop-mark { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--thd-burg); color: var(--thd-cream); font-family: var(--thd-fb); font-size: .75rem; font-weight: 700; padding: .3rem .875rem; border-radius: 100px; white-space: nowrap; }
.thd-pc-nm  { font-family: var(--thd-fh); font-size: 1.625rem; font-weight: 500; color: var(--thd-ink); margin-bottom: .25rem; }
.thd-pop-col .thd-pc-nm  { color: var(--thd-cream); }
.thd-pc-tag { font-size: .875rem; color: var(--thd-muted); margin-bottom: 1.5rem; }
.thd-pop-col .thd-pc-tag { color: rgba(246,243,238,.5); }
.thd-pc-price { display: flex; align-items: baseline; gap: .1rem; margin-bottom: 1.5rem; }
.thd-pc-sym  { font-family: var(--thd-fh); font-size: 1.25rem; font-weight: 500; color: var(--thd-burg); }
.thd-pop-col .thd-pc-sym  { color: var(--thd-gold); }
.thd-pc-main { font-family: var(--thd-fh); font-size: 3.25rem; font-weight: 500; color: var(--thd-ink); line-height: 1; }
.thd-pop-col .thd-pc-main { color: var(--thd-cream); }
.thd-pc-dec  { font-family: var(--thd-fh); font-size: 1.25rem; font-weight: 500; color: var(--thd-burg); align-self: flex-end; }
.thd-pop-col .thd-pc-dec  { color: var(--thd-gold); }
.thd-pc-feats { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; }
.thd-pc-feat  { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--thd-mid); line-height: 1.5; }
.thd-pop-col .thd-pc-feat { color: rgba(246,243,238,.65); }
.thd-feat-chk { color: var(--thd-gold); flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────────── */
.thd-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; }
.thd-faq-unit { border-bottom: 1px solid var(--thd-border); }
.thd-faq-unit:first-child { border-top: 1px solid var(--thd-border); }
.thd-faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--thd-fh); font-size: 1.0625rem; font-weight: 500; color: var(--thd-ink);
  cursor: pointer; transition: color .2s;
}
.thd-faq-btn:hover { color: var(--thd-burg); }
.thd-faq-ico { flex-shrink: 0; color: var(--thd-gold); transition: transform .25s; }
.thd-faq-unit.thd-faq-on .thd-faq-ico { transform: rotate(45deg); }
.thd-faq-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.thd-faq-unit.thd-faq-on .thd-faq-panel { max-height: 500px; }
.thd-faq-ans { padding: 0 2rem 1.25rem 0; font-size: .9375rem; color: var(--thd-mid); line-height: 1.85; }

/* ── SERVICE PAGE DETAIL ─────────────────────────── */
.thd-svp { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; padding: clamp(3rem,6vw,5rem) 0; }
.thd-svp-main { min-width: 0; }
.thd-svp-cover { border-radius: var(--thd-r12); overflow: hidden; aspect-ratio: 16/6; background: var(--thd-cream3); margin-bottom: 2.5rem; }
.thd-svp-cover img { width: 100%; height: 100%; object-fit: cover; }
.thd-svp-text p { color: var(--thd-mid); margin-bottom: 1.125rem; line-height: 1.85; }
.thd-svp-inc { background: var(--thd-gold-l); border-radius: var(--thd-r12); padding: 1.5rem; margin-top: 2rem; }
.thd-svp-inc-hd { font-family: var(--thd-fb); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--thd-gold); margin-bottom: 1rem; }
.thd-svp-inc-list { display: flex; flex-direction: column; gap: .5rem; }
.thd-svp-inc-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9375rem; color: var(--thd-mid); }
.thd-svp-inc-list li svg { color: var(--thd-burg); flex-shrink: 0; margin-top: .15rem; }
.thd-svp-aside { position: sticky; top: 90px; }
.thd-svp-card { background: var(--thd-dark); border-radius: var(--thd-r16); padding: 2rem; }
.thd-svp-card-nm { font-family: var(--thd-fh); font-size: 1rem; font-weight: 500; color: var(--thd-cream); margin-bottom: 1rem; font-style: italic; }
.thd-svp-card-price { display: flex; align-items: baseline; gap: .1rem; margin-bottom: .5rem; }
.thd-svp-pr-s { font-family: var(--thd-fh); font-size: 1.25rem; font-weight: 500; color: var(--thd-gold); }
.thd-svp-pr-n { font-family: var(--thd-fh); font-size: 2.75rem; font-weight: 500; color: var(--thd-cream); line-height: 1; }
.thd-svp-pr-f { font-family: var(--thd-fh); font-size: 1.25rem; font-weight: 500; color: var(--thd-gold); align-self: flex-end; }
.thd-svp-note { font-size: .8125rem; color: rgba(246,243,238,.4); margin-bottom: 1.25rem; }
.thd-svp-meta { background: rgba(255,255,255,.06); border-radius: var(--thd-r8); padding: .875rem 1rem; margin-bottom: .875rem; }
.thd-svp-meta-l { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--thd-gold); margin-bottom: .3rem; font-family: var(--thd-fb); }
.thd-svp-meta-v { font-size: .875rem; color: rgba(246,243,238,.6); line-height: 1.6; }

/* ── PAGE BANNER ─────────────────────────────────── */
.thd-page-banner { background: var(--thd-dark); padding: clamp(6rem,12vw,9rem) 0 clamp(3rem,6vw,5rem); text-align: center; }
.thd-page-banner h1 { color: var(--thd-cream); }
.thd-page-banner-sub { color: rgba(246,243,238,.5); font-size: clamp(.9375rem,1.8vw,1.125rem); margin: 1rem auto 0; max-width: 52ch; }

/* ── BUILDER ─────────────────────────────────────── */
.thd-builder { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.thd-builder-left { display: flex; flex-direction: column; gap: 3rem; }
.thd-bld-step-tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--thd-gold); margin-bottom: .5rem; font-family: var(--thd-fb); }
.thd-bld-step-head { font-family: var(--thd-fh); font-size: 1.5rem; font-weight: 500; color: var(--thd-ink); margin-bottom: 1.25rem; }
.thd-pkg-choices { display: flex; flex-direction: column; gap: .875rem; }
.thd-pkg-choice {
  border: 1.5px solid var(--thd-border); border-radius: var(--thd-r8);
  padding: 1.25rem 1.5rem; cursor: pointer; display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--thd-ease);
}
.thd-pkg-choice:hover { border-color: var(--thd-burg); }
.thd-pkg-choice.thd-chosen { border-color: var(--thd-burg); background: var(--thd-burg-l); }
.thd-choice-ring { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--thd-border); flex-shrink: 0; margin-top: .15rem; display: flex; align-items: center; justify-content: center; transition: var(--thd-ease); }
.thd-pkg-choice.thd-chosen .thd-choice-ring { border-color: var(--thd-burg); background: var(--thd-burg); }
.thd-choice-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--thd-cream); opacity: 0; }
.thd-pkg-choice.thd-chosen .thd-choice-dot { opacity: 1; }
.thd-choice-nm { font-family: var(--thd-fh); font-size: 1.0625rem; font-weight: 500; color: var(--thd-ink); margin-bottom: .2rem; }
.thd-choice-ds { font-size: .875rem; color: var(--thd-muted); line-height: 1.55; }
.thd-choice-pr { font-family: var(--thd-fh); font-weight: 500; color: var(--thd-burg); white-space: nowrap; flex-shrink: 0; margin-top: .1rem; }
.thd-addon-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.thd-addon-tile {
  border: 1.5px solid var(--thd-border); border-radius: var(--thd-r8);
  padding: .875rem 1rem; cursor: pointer; display: flex; gap: .625rem; align-items: flex-start;
  transition: var(--thd-ease);
}
.thd-addon-tile:hover { border-color: var(--thd-gold); }
.thd-addon-tile.thd-add-on { border-color: var(--thd-burg); background: var(--thd-burg-l); }
.thd-addon-box { width: 18px; height: 18px; border-radius: 3px; border: 1.5px solid var(--thd-border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--thd-ease); }
.thd-addon-tile.thd-add-on .thd-addon-box { background: var(--thd-burg); border-color: var(--thd-burg); }
.thd-addon-chk { display: none; color: var(--thd-cream); }
.thd-addon-tile.thd-add-on .thd-addon-chk { display: block; }
.thd-addon-nm { font-family: var(--thd-fb); font-weight: 600; color: var(--thd-ink); font-size: .9375rem; margin-bottom: .2rem; }
.thd-addon-pr { font-size: .8125rem; color: var(--thd-muted); }
.thd-hrs-band { display: flex; align-items: center; gap: 1rem; margin-top: .875rem; }
.thd-hrs-range { flex: 1; accent-color: var(--thd-burg); }
.thd-hrs-num   { font-family: var(--thd-fh); font-size: 1.0625rem; font-weight: 500; color: var(--thd-ink); min-width: 56px; }
.thd-sum-box { background: var(--thd-dark); border-radius: var(--thd-r16); padding: 2rem; position: sticky; top: 90px; }
.thd-sum-head { font-family: var(--thd-fh); font-size: 1.125rem; font-weight: 500; color: var(--thd-cream); margin-bottom: 1.5rem; font-style: italic; }
.thd-sum-lines { min-height: 3.5rem; margin-bottom: 1.25rem; }
.thd-sum-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .875rem; margin-bottom: .5rem; }
.thd-sum-row-n { color: rgba(246,243,238,.6); }
.thd-sum-row-v { font-weight: 600; color: var(--thd-cream); white-space: nowrap; }
.thd-sum-empty { font-size: .875rem; color: rgba(246,243,238,.35); font-style: italic; }
.thd-sum-rule { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: .875rem 0; }
.thd-sum-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.thd-sum-total-l { font-size: .875rem; color: rgba(246,243,238,.55); }
.thd-sum-total-v { font-family: var(--thd-fh); font-size: 2.25rem; font-weight: 500; color: var(--thd-gold); }
.thd-sum-note { font-size: .75rem; color: rgba(246,243,238,.3); margin-top: .875rem; line-height: 1.6; }

/* ── CHECKOUT ────────────────────────────────────── */
.thd-chk { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; padding: clamp(2.5rem,5vw,4rem) 0; }
.thd-chk-form { background: var(--thd-cream); border: 1.5px solid var(--thd-border); border-radius: var(--thd-r12); padding: 2rem; }
.thd-chk-form h3 { font-family: var(--thd-fh); font-size: 1.375rem; color: var(--thd-ink); margin-bottom: 1.5rem; font-weight: 500; }
.thd-field { margin-bottom: 1.25rem; }
.thd-field label { display: block; font-size: .875rem; font-weight: 600; color: var(--thd-ink); margin-bottom: .375rem; font-family: var(--thd-fb); }
.thd-field input, .thd-field select, .thd-field textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--thd-border);
  border-radius: var(--thd-r4); font-family: var(--thd-fb); font-size: .9375rem;
  color: var(--thd-ink); background: var(--thd-cream2); transition: border-color .2s; -webkit-appearance: none;
}
.thd-field input:focus, .thd-field select:focus { outline: none; border-color: var(--thd-burg); }
.thd-field-2c { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.thd-agree-row { display: flex; align-items: flex-start; gap: .625rem; font-size: .875rem; color: var(--thd-mid); margin: 1.25rem 0; }
.thd-agree-row input { width: auto; margin-top: .2rem; }
.thd-agree-row a { color: var(--thd-burg); font-weight: 600; }
.thd-ord { background: var(--thd-dark); border-radius: var(--thd-r12); padding: 2rem; position: sticky; top: 90px; }
.thd-ord-head { font-family: var(--thd-fh); font-size: 1.125rem; font-weight: 500; color: var(--thd-cream); margin-bottom: 1.25rem; font-style: italic; }
.thd-ord-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9375rem; margin-bottom: .625rem; }
.thd-ord-n { color: rgba(246,243,238,.6); }
.thd-ord-v { font-weight: 600; color: var(--thd-cream); white-space: nowrap; }
.thd-ord-rule { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: .875rem 0; }
.thd-ord-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.thd-ord-total-l { font-family: var(--thd-fh); font-size: 1rem; font-weight: 500; color: rgba(246,243,238,.65); font-style: italic; }
.thd-ord-total-v { font-family: var(--thd-fh); font-size: 2.25rem; font-weight: 500; color: var(--thd-gold); }
.thd-ord-next { background: rgba(255,255,255,.06); border-radius: var(--thd-r8); padding: 1rem; }
.thd-ord-next-l { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(246,243,238,.4); font-family: var(--thd-fb); margin-bottom: .375rem; }
.thd-ord-next-t { font-size: .875rem; color: rgba(246,243,238,.65); line-height: 1.65; }

/* ── CONFIRM PAGES ───────────────────────────────── */
.thd-confirm { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.thd-confirm-panel { max-width: 520px; width: 100%; text-align: center; }
.thd-ico-ok { width: 72px; height: 72px; border-radius: 50%; background: var(--thd-burg-l); color: var(--thd-burg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.thd-ico-no { width: 72px; height: 72px; border-radius: 50%; background: var(--thd-cream2); color: var(--thd-muted); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.thd-confirm-panel h1 { margin-bottom: .75rem; }
.thd-confirm-panel p  { color: var(--thd-muted); margin-bottom: 1.5rem; }
.thd-steps { background: var(--thd-cream2); border-radius: var(--thd-r12); padding: 1.5rem; text-align: left; margin-bottom: 1.75rem; }
.thd-ok-step { display: flex; gap: .875rem; margin-bottom: 1rem; }
.thd-ok-step:last-child { margin-bottom: 0; }
.thd-ok-n { width: 28px; height: 28px; border-radius: 50%; background: var(--thd-burg); color: var(--thd-cream); font-family: var(--thd-fh); font-size: .875rem; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.thd-ok-step strong { display: block; font-family: var(--thd-fh); color: var(--thd-ink); margin-bottom: .2rem; }
.thd-ok-step p { font-size: .875rem; color: var(--thd-muted); margin: 0; }
.thd-confirm-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ─────────────────────────────────────── */
.thd-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,5vw,5rem); }
.thd-contact-left h2 { margin-bottom: 1rem; }
.thd-contact-left p  { color: var(--thd-mid); margin-bottom: 1.5rem; }
.thd-cdet { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1.25rem; }
.thd-cdet-ico { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--thd-border); display: flex; align-items: center; justify-content: center; color: var(--thd-gold); flex-shrink: 0; }
.thd-cdet-label { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--thd-muted); margin-bottom: .2rem; font-family: var(--thd-fb); }
.thd-cdet-val { color: var(--thd-mid); font-size: .9375rem; }
.thd-cdet-val a { color: var(--thd-ink); font-weight: 500; }
.thd-cf { background: var(--thd-cream2); border-radius: var(--thd-r12); padding: 2rem; }
.thd-cf h3 { margin-bottom: 1.5rem; }
.thd-cf-ok { background: var(--thd-burg-l); border: 1.5px solid var(--thd-burg); border-radius: var(--thd-r4); padding: .875rem 1rem; color: var(--thd-burg); font-size: .875rem; display: none; margin-bottom: 1rem; }

/* ── ABOUT ───────────────────────────────────────── */
.thd-about-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,5vw,5rem); align-items: center; }
.thd-about-img { border-radius: var(--thd-r16); overflow: hidden; aspect-ratio: 4/5; background: var(--thd-cream3); }
.thd-about-img img { width: 100%; height: 100%; object-fit: cover; }
.thd-about-copy h2 { margin-bottom: 1rem; }
.thd-about-copy p  { color: var(--thd-mid); margin-bottom: 1rem; }
.thd-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.thd-val { background: var(--thd-cream); border: 1.5px solid var(--thd-border); border-radius: var(--thd-r8); padding: 1.125rem; }
.thd-val h4 { font-family: var(--thd-fh); font-size: .9375rem; color: var(--thd-ink); margin-bottom: .375rem; font-weight: 500; }
.thd-val p  { font-size: .875rem; color: var(--thd-muted); margin: 0; }

/* ── LEGAL ───────────────────────────────────────── */
.thd-legal { max-width: 820px; margin: 0 auto; padding: clamp(3rem,6vw,5rem) clamp(1rem,3vw,2rem); }
.thd-legal h1 { text-align: center; }
.thd-legal-date { text-align: center; color: var(--thd-muted); font-size: .875rem; margin-bottom: 3rem; }
.thd-legal h2 { font-size: 1.25rem; margin: 2.5rem 0 .875rem; font-weight: 500; }
.thd-legal h3 { font-size: 1.0625rem; margin: 1.75rem 0 .625rem; font-weight: 500; }
.thd-legal p  { color: var(--thd-mid); margin-bottom: 1rem; line-height: 1.85; }
.thd-legal ul, .thd-legal ol { margin: .875rem 0 1rem 1.5rem; }
.thd-legal li { color: var(--thd-mid); margin-bottom: .5rem; line-height: 1.75; }
.thd-legal ul li { list-style: disc; }
.thd-legal ol li { list-style: decimal; }

/* ── FOOTER ──────────────────────────────────────── */
.thd-footer { background: var(--thd-dark); padding: clamp(3.5rem,7vw,5.5rem) 0 2rem; }
.thd-ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(246,243,238,.08); margin-bottom: 2rem; }
.thd-ft-logo { font-family: var(--thd-fh); font-size: clamp(1.375rem, 3vw, 2rem); font-weight: 500; color: var(--thd-cream); margin-bottom: .875rem; font-style: italic; }
.thd-ft-logo span { font-style: normal; color: var(--thd-gold); }
.thd-ft-tag { font-size: .875rem; color: rgba(246,243,238,.4); line-height: 1.7; max-width: 28ch; margin-bottom: 1.25rem; }
.thd-ft-soc { display: flex; gap: .625rem; margin-bottom: .875rem; }
.thd-ft-soc-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(246,243,238,.12); display: flex; align-items: center; justify-content: center; color: rgba(246,243,238,.4); transition: var(--thd-ease); }
.thd-ft-soc-btn:hover { border-color: var(--thd-gold); color: var(--thd-gold); }
.thd-ft-disc { font-size: .75rem; color: rgba(246,243,238,.2); line-height: 1.65; }
.thd-ft-col-h { font-family: var(--thd-fb); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(246,243,238,.4); margin-bottom: 1rem; }
.thd-ft-links { display: flex; flex-direction: column; gap: .5rem; }
.thd-ft-link { font-size: .875rem; color: rgba(246,243,238,.45); transition: color .2s; }
.thd-ft-link:hover { color: var(--thd-gold); }
.thd-ft-cln { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(246,243,238,.45); margin-bottom: .625rem; }
.thd-ft-cln svg { color: var(--thd-gold); flex-shrink: 0; margin-top: .2rem; }
.thd-ft-cln a { color: rgba(246,243,238,.65); transition: color .2s; }
.thd-ft-cln a:hover { color: var(--thd-gold); }
.thd-ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.thd-ft-copy { font-size: .8125rem; color: rgba(246,243,238,.25); }
.thd-ft-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.thd-ft-legal-link { font-size: .8125rem; color: rgba(246,243,238,.3); transition: color .2s; }
.thd-ft-legal-link:hover { color: var(--thd-gold); }

/* ── CHAT ────────────────────────────────────────── */
.thd-chat-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 600; width: 52px; height: 52px; border-radius: 50%; background: var(--thd-burg); color: var(--thd-cream); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(107,30,54,.35); transition: transform .2s; }
.thd-chat-fab:hover { transform: scale(1.08); }
.thd-chat-box { position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 600; width: 320px; background: var(--thd-cream); border: 1.5px solid var(--thd-border); border-radius: var(--thd-r16); box-shadow: var(--thd-shadow2); overflow: hidden; display: none; flex-direction: column; }
.thd-chat-box.thd-chat-open { display: flex; }
.thd-chat-top { background: var(--thd-burg); padding: .875rem 1.125rem; display: flex; align-items: center; justify-content: space-between; }
.thd-chat-top-nm  { font-family: var(--thd-fh); font-size: 1.0625rem; font-weight: 500; color: var(--thd-cream); font-style: italic; }
.thd-chat-top-sub { font-size: .75rem; color: rgba(246,243,238,.6); }
.thd-chat-close { background: none; border: none; color: rgba(246,243,238,.7); cursor: pointer; }
.thd-chat-msgs { padding: 1rem; min-height: 120px; max-height: 240px; overflow-y: auto; display: flex; flex-direction: column; gap: .625rem; }
.thd-chat-msg { max-width: 86%; padding: .5rem .875rem; border-radius: 10px; font-size: .875rem; line-height: 1.55; }
.thd-chat-msg.thd-them { background: var(--thd-cream2); color: var(--thd-mid); align-self: flex-start; border-bottom-left-radius: 3px; }
.thd-chat-msg.thd-us   { background: var(--thd-burg); color: var(--thd-cream); align-self: flex-end; border-bottom-right-radius: 3px; }
.thd-chat-input { display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid var(--thd-border); }
.thd-chat-inp { flex: 1; border: 1.5px solid var(--thd-border); border-radius: var(--thd-r4); padding: .5rem .75rem; font-family: var(--thd-fb); font-size: .875rem; background: var(--thd-cream2); }
.thd-chat-inp:focus { outline: none; border-color: var(--thd-burg); }
.thd-chat-go { background: var(--thd-burg); color: var(--thd-cream); border: none; border-radius: var(--thd-r4); padding: .5rem .75rem; transition: background .2s; }
.thd-chat-go:hover { background: var(--thd-burg2); }

/* ── COOKIE ──────────────────────────────────────── */
.thd-cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: var(--thd-dark); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; transform: translateY(100%); transition: transform .4s ease; border-top: 1px solid rgba(246,243,238,.08); }
.thd-cookie.thd-ck-show { transform: translateY(0); }
.thd-ck-txt { font-size: .875rem; color: rgba(246,243,238,.65); max-width: 55ch; }
.thd-ck-txt a { color: var(--thd-gold); font-weight: 600; }
.thd-ck-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.thd-ck-yes { padding: .5rem 1.25rem; background: var(--thd-gold); color: var(--thd-dark); border: none; border-radius: var(--thd-r4); cursor: pointer; font-family: var(--thd-fb); font-size: .875rem; font-weight: 700; }
.thd-ck-no  { padding: .5rem 1.25rem; background: transparent; color: rgba(246,243,238,.5); border: 1px solid rgba(246,243,238,.2); border-radius: var(--thd-r4); cursor: pointer; font-family: var(--thd-fb); font-size: .875rem; transition: color .2s; }
.thd-ck-no:hover { color: var(--thd-cream); }

/* ── REVEAL ──────────────────────────────────────── */
.thd-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.thd-appear { opacity: 1; transform: none; }

/* ── CTA BAND ────────────────────────────────────── */
.thd-cta-bar { background: var(--thd-burg); padding: clamp(3rem,6vw,5rem) 0; text-align: center; }
.thd-cta-bar h2 { color: var(--thd-cream); margin-bottom: .875rem; }
.thd-cta-bar p  { color: rgba(246,243,238,.7); margin-bottom: 2rem; margin-left: auto; margin-right: auto; }
.thd-cta-bar .thd-cta-acts { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1020px) {
  .thd-svc-row { grid-template-columns: 1fr; gap: 2rem; }
  .thd-svc-row.thd-row-even .thd-svc-visual { order: unset; }
  .thd-svc-row.thd-row-even .thd-svc-prose  { order: unset; }
  .thd-proc-row { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .thd-price-cols { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .thd-builder { grid-template-columns: 1fr; }
  .thd-sum-box { position: static; }
  .thd-chk { grid-template-columns: 1fr; }
  .thd-ord { position: static; }
  .thd-about-duo { grid-template-columns: 1fr; }
  .thd-contact-grid { grid-template-columns: 1fr; }
  .thd-svp { grid-template-columns: 1fr; }
  .thd-svp-aside { position: static; }
  .thd-ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .thd-proc-row { grid-template-columns: 1fr 1fr; }
  .thd-addon-list { grid-template-columns: 1fr; }
  .thd-field-2c { grid-template-columns: 1fr; }
  .thd-work-row { grid-template-columns: 40px 1fr auto; gap: .75rem; }
  .thd-wr-type { display: none; }
  .thd-wr-year { display: none; }
  .thd-vals { grid-template-columns: 1fr; }
  .thd-ft-grid { grid-template-columns: 1fr; }
  .thd-ft-bottom { flex-direction: column; }
  .thd-hero-acts { flex-direction: column; align-items: center; }
  .thd-tb-link { display: none; }
  .thd-chat-box { width: calc(100vw - 2rem); right: 1rem; }
}
