/* ============================================================
   Covered by Sonya — gold / black / cream luxury system
   Colors sampled from Sonya's flyer.
   ============================================================ */
:root {
  --cream: #f7f0e1;
  --cream-2: #efe5d1;
  --cream-soft: #fbf6ec;
  --ink: #121110;
  --ink-2: #211e1a;
  --ink-soft: #3a352e;
  --white: #ffffff;

  --gold: #c2a14d;
  --gold-deep: #9a7b2f;
  --gold-light: #e6cd86;
  --gold-grad: linear-gradient(135deg, #e6cd86 0%, #c2a14d 38%, #9a7b2f 64%, #e6cd86 100%);

  --muted: #6f675a;
  --muted-light: #c9bfa9;

  --font-script: "Great Vibes", cursive;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-caps: "Cinzel", serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;

  --space-1: 4px;  --space-2: 8px;   --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px;  --space-7: 48px; --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-1: 0 2px 10px rgba(18, 17, 16, 0.10);
  --shadow-2: 0 14px 40px rgba(18, 17, 16, 0.16);
  --shadow-3: 0 26px 70px rgba(18, 17, 16, 0.30);

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-5); }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--font-serif); color: var(--ink); line-height: 1.12; font-weight: 600; }
h2 { font-size: clamp(30px, 4.4vw, 46px); }
h3 { font-size: 23px; }

a { color: var(--gold-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--gold-light);
  padding: var(--space-3) var(--space-4);
}
.skip-link:focus { left: 0; }

/* gold metallic text */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-lg { padding: var(--space-4) var(--space-8); font-size: 16px; }
.btn-block { width: 100%; }
.btn-gold {
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--ink); }

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--gold-deep);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--ink); }

/* ---------- Brand lockup ---------- */
.brand { text-decoration: none; display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.brand-script { font-family: var(--font-script); font-size: 27px; color: var(--ink); }
.brand-caps {
  font-family: var(--font-caps); font-weight: 600; font-size: 21px;
  letter-spacing: 0.12em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 240, 225, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(194, 161, 77, 0.3);
}
.header-inner { display: flex; align-items: center; gap: var(--space-5); padding: var(--space-3) var(--space-5); }
.site-nav { margin-left: auto; }
.nav-menu { display: flex; gap: var(--space-6); list-style: none; }
.nav-menu a {
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; font-weight: 500;
  padding: var(--space-2) 0; border-bottom: 2px solid transparent;
}
.nav-menu a:hover { border-bottom-color: var(--gold); }
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--ink);
  border-radius: 999px; padding: var(--space-2) var(--space-4);
  font-family: var(--font-body); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
  cursor: pointer;
}

/* ---------- Hero (dramatic, centered) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink-soft);
  text-align: center;
  padding: var(--space-8) 0 var(--space-9);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(820px 520px at 50% -8%, rgba(194,161,77,0.30), transparent 62%),
    radial-gradient(680px 560px at 88% 16%, rgba(230,205,134,0.34), transparent 58%),
    radial-gradient(680px 560px at 8% 88%, rgba(194,161,77,0.16), transparent 60%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 55%, var(--cream-2) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(194,161,77,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,161,77,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(600px 400px at 50% 30%, #000, transparent 75%);
  mask-image: radial-gradient(600px 400px at 50% 30%, #000, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  color: var(--gold-deep);
  border: 1px solid rgba(194,161,77,0.55);
  background: rgba(194,161,77,0.12);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: var(--space-6);
}

.hero-portrait {
  position: relative;
  width: clamp(190px, 30vw, 280px);
  aspect-ratio: 1 / 1;
  margin: 0 auto var(--space-5);
}
.hero-portrait::before {
  content: ""; position: absolute; inset: -16px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, var(--gold) 12%, transparent 30%, transparent 55%, var(--gold-light) 70%, transparent 88%);
  animation: ring-spin 9s linear infinite;
  opacity: 0.85;
}
.hero-portrait img {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover; object-position: 50% 50%;
  box-shadow: 0 0 70px rgba(194,161,77,0.35);
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.hero-name { font-family: var(--font-script); font-weight: 400; line-height: 1.0; margin-bottom: var(--space-4); overflow: visible; }
.name-line {
  display: block;
  font-size: clamp(60px, 9vw, 110px);
  line-height: 1.0;
  padding: 0.08em 0.16em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 3px 10px rgba(194,161,77,0.3));
}
.name-line-2 { margin-left: 0.4em; margin-top: -0.34em; }

.hero-type {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3.2vw, 30px);
  color: var(--ink-soft);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: var(--space-5);
}
.type-box {
  display: inline-flex; align-items: center;
  border: 2px dashed rgba(154,123,47,0.7);
  border-radius: 14px;
  padding: 4px 16px;
  min-height: 1.5em;
}
.type-word { color: var(--gold-deep); font-weight: 600; }
.caret { color: var(--gold-deep); margin-left: 1px; animation: caret-blink 1.05s step-end infinite; }
@keyframes caret-blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--muted);
  max-width: 56ch; margin: 0 auto var(--space-6);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
.hero .btn-ghost { color: var(--gold-deep); border-color: var(--gold); }
.hero .btn-ghost:hover { background: var(--ink); color: var(--cream-soft); border-color: var(--ink); }

.social-proof { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-7); flex-wrap: wrap; justify-content: center; }
.avatars { display: flex; }
.avatars img {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--cream-soft); margin-left: -14px; object-fit: cover;
  background: var(--cream-2); box-shadow: var(--shadow-1);
}
.avatars img:first-child { margin-left: 0; }
.proof-text { font-size: 14px; color: var(--muted); max-width: 30ch; text-align: left; }
.stars { color: var(--gold-deep); letter-spacing: 2px; margin-right: 6px; }

/* ---------- Quote form card ---------- */
.quote-section { background: var(--cream); }
.quote-card {
  background: var(--cream-soft);
  border: 1px solid rgba(194,161,77,0.45);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-2);
  max-width: 680px; margin: 0 auto;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { margin-bottom: var(--space-4); display: flex; flex-direction: column; }
.field label { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 6px; }
.field .optional { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(58, 53, 46, 0.22);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; }
.form-status { font-size: 14px; margin-top: var(--space-3); min-height: 1.2em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #b3261e; }
.form-fineprint { font-size: 13px; color: var(--muted); margin-top: var(--space-3); text-align: center; }
.form-fineprint a { color: var(--gold-deep); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: var(--space-9) 0; }
.section-dark { background: var(--ink); color: var(--cream-2); }
.section-dark h2 { color: var(--cream-soft); }
.section-head { max-width: 640px; margin: 0 auto var(--space-7); }
.section-head.center { text-align: center; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 0.26em; font-size: 13px; font-weight: 500;
  color: var(--gold-deep); margin-bottom: var(--space-3);
}
.section-eyebrow.gold { color: var(--gold-light); }
.section-lede { font-size: 18px; color: var(--muted); margin-top: var(--space-3); }
.section-lede.light { color: var(--muted-light); }
.section-head h2::after {
  content: ""; display: block; width: 60px; height: 2px; margin: var(--space-4) auto 0;
  background: var(--gold-grad);
}

/* ---------- Coverage ---------- */
.coverage-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-5);
}
.coverage-card {
  background: var(--cream-soft);
  border: 1px solid rgba(194,161,77,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.coverage-icon {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--gold-light);
  margin-bottom: var(--space-4);
}
.coverage-icon svg { width: 28px; height: 28px; }
.coverage-card h3 { margin-bottom: var(--space-2); }
.coverage-card p { font-size: 15px; color: var(--muted); }
.coverage-cta {
  background: var(--ink); color: var(--cream-2);
  display: flex; flex-direction: column; justify-content: center;
}
.coverage-cta h3 { color: var(--gold-light); }
.coverage-cta p { color: var(--muted-light); margin-bottom: var(--space-3); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.75fr 1fr; gap: var(--space-8); align-items: center; }
.about-photo {
  border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-3);
  aspect-ratio: 1 / 1; max-width: 400px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.about-copy h2 { margin-bottom: var(--space-4); }
.about-copy p { color: var(--muted-light); margin-bottom: var(--space-4); max-width: 56ch; }
.about-copy .motto {
  font-family: var(--font-script); font-size: 34px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  margin: var(--space-5) 0;
}
.about-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); }
.why-item { padding: var(--space-5); border-top: 2px solid var(--gold); }
.why-num { font-family: var(--font-caps); font-size: 15px; letter-spacing: 0.1em; color: var(--gold-deep); }
.why-item h3 { margin: var(--space-3) 0 var(--space-2); }
.why-item p { color: var(--muted); font-size: 16px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-5);
  margin-bottom: var(--space-7);
}
.contact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: var(--space-6) var(--space-4);
  background: var(--ink-2);
  border: 1px solid rgba(194,161,77,0.3);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.contact-icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-grad); color: var(--ink); margin-bottom: var(--space-2);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted-light); }
.contact-value { font-size: 17px; font-weight: 500; color: var(--cream-soft); word-break: break-word; }

/* ---------- Footer ---------- */
.site-footer { background: #0c0b0a; color: var(--muted-light); padding: var(--space-8) 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.footer-brand { display: flex; align-items: baseline; gap: 8px; }
.footer-brand .brand-script { color: var(--cream-soft); font-size: 30px; }
.footer-tag { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--gold-light); }
.footer-fine { font-size: 14px; color: var(--muted); }
.footer-fine a { color: var(--gold-light); }
.footer-credit { font-size: 13px; color: #6a6052; margin-top: var(--space-2); }

/* ---------- Fabellous-style accents ---------- */
.accent-italic {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

/* Scrolling gold service marquee */
.marquee {
  overflow: hidden;
  background: var(--gold-grad);
  padding: 13px 0;
  border-top: 1px solid rgba(154,123,47,0.35);
  border-bottom: 1px solid rgba(154,123,47,0.35);
}
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-row { display: flex; align-items: center; gap: 34px; padding-right: 34px; }
.marquee-row span {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-row i { color: rgba(18,17,16,0.55); font-style: normal; font-size: 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Coverage cards on dark feature section (Fabellous-style tiles) */
.section-dark .coverage-card {
  background: var(--ink-2);
  border: 1px solid rgba(194,161,77,0.22);
}
.section-dark .coverage-card h3 { color: var(--cream-soft); }
.section-dark .coverage-card p { color: var(--muted-light); }
.section-dark .coverage-icon {
  border-radius: var(--radius-md);
  width: 52px; height: 52px;
  background: rgba(194,161,77,0.16);
  color: var(--gold-light);
}
.coverage-call { margin-top: var(--space-7); }

/* About stat blocks */
.stats { display: flex; flex-wrap: wrap; gap: var(--space-7); margin: var(--space-5) 0 var(--space-6); }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif); font-weight: 600; font-size: 36px; line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.stat-label {
  margin-top: 6px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted-light);
}

/* ---------- Offerings (Life + Property & Casualty) ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-6); }
.offer-card {
  background: var(--ink-2);
  border: 1px solid rgba(194,161,77,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex; flex-direction: column;
}
.offer-card .coverage-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(194,161,77,0.16); color: var(--gold-light);
  margin-bottom: var(--space-4);
}
.offer-card h3 { color: var(--cream-soft); font-size: 26px; }
.offer-through { color: var(--gold-light); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 6px; }
.offer-card > p { color: var(--muted-light); margin-top: var(--space-3); }
.offer-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: var(--space-4) 0 0; padding: 0; }
.offer-list li { font-size: 13px; color: var(--cream-2); border: 1px solid rgba(194,161,77,0.3); border-radius: 999px; padding: 4px 12px; }
.offer-areas { font-size: 15px; color: var(--cream-2); margin: var(--space-5) 0; }
.offer-areas-label { display: block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--gold-light); margin-bottom: 4px; }
.offer-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Google Form embed ---------- */
.gform {
  max-width: 720px; margin: 0 auto;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-2); background: var(--white);
  border: 1px solid rgba(194,161,77,0.4);
}
.gform iframe { display: block; width: 100%; height: 1500px; border: 0; }
.gform-fallback { text-align: center; font-size: 14px; color: var(--muted); margin-top: var(--space-4); }
.gform-fallback a { color: var(--gold-deep); font-weight: 600; }
.quote-cta-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--cream-soft);
  border: 1px solid rgba(194,161,77,0.45);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-7);
  box-shadow: var(--shadow-2);
}
.quote-cta-points { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-5); margin-bottom: var(--space-6); font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.quote-cta-points i { color: var(--gold-deep); font-style: normal; margin-right: 5px; }
.quote-cta-alt { margin-top: var(--space-5); font-size: 14px; color: var(--muted); }
.quote-cta-alt a { color: var(--gold-deep); font-weight: 600; }

/* ---------- Testimonials carousel ---------- */
.testimonials { background: var(--cream); overflow: hidden; }
.tcar-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-7); }
.tcar-head h2 { margin: var(--space-2) 0; }
.tcar-head .section-lede { max-width: 46ch; }
.tcar-nav { display: flex; gap: var(--space-3); flex: none; }
.tcar-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold); background: transparent; color: var(--gold-deep);
  font-size: 24px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.tcar-arrow:hover { background: var(--gold); color: var(--ink); }
.tcar-arrow:disabled { opacity: 0.35; cursor: default; }

.tcar-viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.tcar-viewport::-webkit-scrollbar { display: none; }
.tcar-viewport.dragging { cursor: grabbing; scroll-snap-type: none; }
.tcar-track {
  display: flex; gap: var(--space-5);
  padding: 0 max(var(--space-5), calc(50vw - 590px));
}
.tcard {
  flex: 0 0 auto;
  width: clamp(260px, 78vw, 340px);
  scroll-snap-align: center;
  background: var(--cream-soft);
  border: 1px solid rgba(194,161,77,0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.tcard img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 35%; display: block; }
.tcard-cap {
  display: flex; align-items: center; gap: 8px;
  padding: var(--space-3) var(--space-4);
  font-size: 14px; color: var(--ink-soft);
}
.tcard-stars { color: var(--gold-deep); letter-spacing: 1px; }
.tcar-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: var(--space-6); }
.tcar-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(154,123,47,0.28); cursor: pointer; padding: 0; transition: background 0.15s ease, transform 0.15s ease; }
.tcar-dot.active { background: var(--gold-deep); transform: scale(1.25); }

@media (max-width: 760px) {
  .tcar-head { flex-direction: column; align-items: flex-start; }
  .tcar-nav { display: none; }
}

/* ---------- Video section ---------- */
.video-section { background: var(--cream); }
.video-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: var(--space-8);
  align-items: center;
}
.video-frame {
  position: relative;
  aspect-ratio: 720 / 1280;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  border: 5px solid var(--ink);
  box-shadow: var(--shadow-3), 0 0 0 1px rgba(194,161,77,0.5);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-toggle {
  position: absolute; right: var(--space-3); bottom: var(--space-3);
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--gold-grad); color: var(--ink);
  font-size: 18px; cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-2);
  transition: transform 0.15s ease;
}
.video-toggle:hover { transform: scale(1.06); }
.video-copy h2 { margin-bottom: var(--space-4); }
.video-copy > p { color: var(--muted); max-width: 52ch; margin-bottom: var(--space-4); }
.video-cue { font-size: 14px; color: var(--gold-deep); font-style: italic; }
.video-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-2); }

@media (max-width: 760px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-frame { max-width: 280px; margin: 0 auto; }
  .video-copy { text-align: center; }
  .video-copy > p { margin-left: auto; margin-right: auto; }
  .video-actions { justify-content: center; }
}

/* ---------- Booking widget (Calendly-style demo) ---------- */
.book-section { background: var(--cream); }
.booking-widget {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.25fr;
  max-width: 900px; margin: 0 auto;
  background: var(--cream-soft);
  border: 1px solid rgba(194,161,77,0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.booking-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-deep); background: rgba(194,161,77,0.14);
  border: 1px solid rgba(194,161,77,0.4); border-radius: 999px; padding: 4px 10px;
}
.booking-left { padding: var(--space-7); border-right: 1px solid rgba(194,161,77,0.25); }
.booking-brand { display: flex; gap: var(--space-3); align-items: center; margin-bottom: var(--space-5); }
.booking-brand img { border-radius: 50%; flex: none; }
.booking-host { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.booking-title { font-size: 22px; color: var(--ink); margin-top: 2px; }
.booking-meta { list-style: none; padding: 0; margin: 0 0 var(--space-4); display: flex; flex-direction: column; gap: 12px; }
.booking-meta li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 15px; }
.booking-meta svg { width: 18px; height: 18px; color: var(--gold-deep); flex: none; }
.booking-desc { color: var(--muted); font-size: 14px; }
.booking-right { padding: var(--space-7); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.cal-head span { font-family: var(--font-serif); font-size: 18px; color: var(--ink); }
.cal-head button { background: none; border: none; font-size: 22px; color: var(--gold-deep); cursor: pointer; line-height: 1; padding: 0 8px; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-dow span { text-align: center; font-size: 11px; color: var(--muted); text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day { aspect-ratio: 1; border: none; background: none; border-radius: 50%; font-size: 14px; color: var(--ink); cursor: pointer; font-family: var(--font-body); }
.cal-day.empty { visibility: hidden; }
.cal-day.muted { color: var(--muted-light); opacity: 0.45; cursor: default; }
.cal-day.avail:hover { background: rgba(194,161,77,0.18); }
.cal-day.selected { background: var(--gold-grad); color: var(--ink); font-weight: 700; }
.slots { margin-top: var(--space-5); }
.slots-label { font-size: 14px; color: var(--ink-soft); font-weight: 600; margin-bottom: var(--space-3); }
.slots-list { display: flex; flex-wrap: wrap; gap: 10px; }
.slot { border: 1.5px solid var(--gold); background: transparent; color: var(--gold-deep); border-radius: var(--radius-sm); padding: 8px 16px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.slot:hover { background: rgba(194,161,77,0.14); }
.slot.selected { background: var(--gold-grad); color: var(--ink); border-color: transparent; }
.booking-cta { margin-top: var(--space-6); }
.booking-note { font-size: 13px; color: var(--muted); margin-top: var(--space-3); font-style: italic; }

@media (max-width: 760px) {
  .booking-widget { grid-template-columns: 1fr; }
  .booking-left { border-right: none; border-bottom: 1px solid rgba(194,161,77,0.25); }
}

/* ---------- Chat concierge ---------- */
.chat-widget {
  position: fixed; right: var(--space-5); bottom: var(--space-5); z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-3);
}
.chat-launcher {
  position: relative; width: 60px; height: 60px; border-radius: 50%;
  border: none; background: var(--gold-grad); color: var(--ink);
  box-shadow: var(--shadow-3); cursor: pointer;
  display: grid; place-items: center; align-self: flex-end;
  transition: transform 0.15s ease;
}
.chat-launcher:hover { transform: translateY(-2px); }
.chat-launcher-icon, .chat-launcher-close {
  grid-area: 1 / 1; display: grid; place-items: center;
  transition: opacity 0.15s ease, transform 0.2s ease;
}
.chat-launcher-close { font-size: 22px; opacity: 0; transform: rotate(-45deg); }
.chat-widget.open .chat-launcher-icon { opacity: 0; transform: rotate(45deg); }
.chat-widget.open .chat-launcher-close { opacity: 1; transform: rotate(0); }

.chat-panel[hidden] { display: none; }
.chat-panel {
  width: min(360px, calc(100vw - 2 * var(--space-5)));
  max-height: min(560px, calc(100vh - 120px));
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  overflow: hidden; display: flex; flex-direction: column;
  transform-origin: bottom right; animation: chat-in 0.18s ease both;
}
@keyframes chat-in { from { opacity: 0; transform: translateY(12px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chat-header { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4); background: var(--ink); color: var(--cream-2); }
.chat-avatar { border-radius: 50%; background: var(--ink-2); flex: none; }
.chat-header-text { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.chat-header-text strong { font-family: var(--font-serif); font-size: 17px; color: var(--cream-soft); }
.chat-status { font-size: 12px; color: var(--muted-light); display: flex; align-items: center; gap: 6px; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; display: inline-block; }
.chat-min { background: none; border: none; color: var(--muted-light); font-size: 16px; cursor: pointer; padding: var(--space-1); }
.chat-min:hover { color: var(--cream-soft); }
.chat-log { flex: 1; overflow-y: auto; padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.chat-msg { max-width: 82%; padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); font-size: 15px; line-height: 1.5; animation: chat-in 0.18s ease both; }
.chat-msg a { font-weight: 600; }
.chat-msg-bot { align-self: flex-start; background: var(--white); color: var(--ink); border-bottom-left-radius: var(--space-1); box-shadow: var(--shadow-1); }
.chat-msg-user { align-self: flex-end; background: var(--gold-deep); color: var(--white); border-bottom-right-radius: var(--space-1); }
.chat-msg-user a { color: var(--white); }
.chat-quick { display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 0 var(--space-4) var(--space-3); }
.chat-chip {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--gold); border-radius: 999px;
  padding: var(--space-2) var(--space-4); cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.chat-chip:hover { background: var(--gold); color: var(--ink); }
.chat-chip.chip-primary { background: var(--gold-grad); border-color: transparent; color: var(--ink); }
.chat-fineprint { font-size: 12px; color: var(--muted); text-align: center; padding: 0 var(--space-4) var(--space-4); }
.chat-fineprint a { color: var(--gold-deep); font-weight: 600; }

@media (max-width: 760px) {
  .chat-widget { right: var(--space-4); bottom: var(--space-4); }
  .chat-launcher { width: 54px; height: 54px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero-photo { max-width: 360px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .brand-lockup { justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .quote-card { text-align: left; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { margin: 0 auto; }
  .about-actions { justify-content: center; }
  .about-copy { text-align: center; }
  .about-copy p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 720px) {
  .header-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-menu {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0; background: var(--cream-soft);
    box-shadow: var(--shadow-2); padding: var(--space-3) var(--space-5) var(--space-5);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: var(--space-3) 0; border-bottom: 1px solid var(--cream-2); }
  .section { padding: var(--space-8) 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .coverage-card, .contact-card { transition: none; }
}
