/* ============================================================
   THE KARAT PATCH JEWELLERS INC  —  style.css
   karatpatch.ca
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:       #18161C;
  --primary-mid:   #262430;
  --primary-light: #37333F;
  --accent:        #C9A24D;
  --accent-dark:   #9C7A34;
  --accent-light:  #E8D5A0;

  /* Neutrals */
  --white:     #FFFFFF;
  --cream:     #FAF7F1;
  --gray-100:  #F3EFE6;
  --gray-200:  #E6DFD0;
  --gray-400:  #A79E8C;
  --gray-500:  #7D7566;
  --gray-700:  #4A453B;
  --gray-900:  #201E1A;

  /* Semantic */
  --text:        #201E1A;
  --text-light:  #4A453B;
  --text-muted:  #7D7566;
  --border:      #E6DFD0;
  --success:     #4B7A54;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing (8px base) */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Border-radius */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --r-xl: 24px;

  /* Shadows */
  --sh-sm: 0 1px 4px rgba(24,22,28,.08);
  --sh:    0 4px 20px rgba(24,22,28,.10);
  --sh-lg: 0 14px 44px rgba(24,22,28,.16);

  /* Transitions */
  --ease: 0.22s ease;

  /* Layout */
  --max-w: 1200px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
iframe { border: none; }

/* ── BASE TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
p  { line-height: 1.75; }
em { font-style: italic; color: var(--accent-dark); }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--s6);
}
.section     { padding: var(--s20) 0; }
.section-sm  { padding: var(--s12) 0; }
.section-lg  { padding: var(--s24) 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.bg-primary  { background: var(--primary); }
.bg-cream    { background: var(--cream); }
.bg-white    { background: var(--white); }
.mt-8        { margin-top: var(--s8); }

.section-title-block { max-width: 700px; margin-bottom: var(--s12); }
.section-title-block.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: var(--s3);
}
.section-title { margin-bottom: var(--s4); }
.section-desc { color: var(--text-light); font-size: 1.05rem; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.88rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover { background: var(--accent-dark); color: var(--white); }

.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover { background: var(--primary-mid); }

.btn-outline-gold {
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
}
.btn-outline-gold:hover { background: var(--accent); color: var(--primary); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header { position: relative; z-index: 100; background: var(--white); }

.header-topbar {
  background: var(--primary);
  color: var(--gray-400);
  font-size: 0.82rem;
}
.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s2);
  padding-bottom: var(--s2);
  flex-wrap: wrap;
  gap: var(--s2);
}
.topbar-left { display: flex; gap: var(--s6); flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-item a:hover { color: var(--accent-light); }
.topbar-item svg { color: var(--accent); flex-shrink: 0; }
.topbar-right { color: var(--gray-400); }

.header-main {
  border-bottom: 1px solid var(--border);
  padding: var(--s4) 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
.site-logo em { font-style: normal; color: var(--accent-dark); }
.site-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.site-nav { display: flex; gap: var(--s6); align-items: center; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--ease);
  position: relative;
}
.site-nav a:hover { color: var(--accent-dark); }

.header-cta { display: flex; align-items: center; gap: var(--s3); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--primary); border-radius: 2px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--primary);
  z-index: 200;
  padding: var(--s10) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  transition: right 0.32s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a { color: var(--white); font-size: 1.05rem; font-weight: 500; }
.mobile-nav a:hover { color: var(--accent-light); }
.mobile-nav-close {
  align-self: flex-end;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: var(--s4);
}
.mobile-cta { margin-top: var(--s6); display: flex; flex-direction: column; gap: var(--s3); }
.mobile-cta-info { color: var(--gray-400); font-size: 0.85rem; margin-top: var(--s2); }
.mobile-cta-info a { color: var(--accent-light); }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 150; opacity: 0; pointer-events: none; transition: var(--ease);
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(201,162,77,0.16), transparent 60%),
    linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: var(--s24) 0 var(--s20);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
  position: relative;
  z-index: 2;
}
.hero-container-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s12);
  align-items: center;
}
.hero-visual { width: 100%; }
.yt-facade {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  transition: var(--ease);
}
.yt-facade:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.08); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}
.hero h1 { color: var(--white); max-width: 780px; }
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero-sub {
  color: var(--gray-400);
  font-size: 1.15rem;
  max-width: 620px;
  margin: var(--s5) 0 var(--s8);
}
.hero-cta { display: flex; gap: var(--s4); flex-wrap: wrap; margin-bottom: var(--s10); }

.hero-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s8);
  padding-top: var(--s8);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-light);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.4px;
  margin-top: 2px;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: var(--s6) 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s8);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}
.trust-item svg { color: var(--accent-dark); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: var(--border); }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  transition: var(--ease);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--sh);
  transform: translateY(-3px);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-light), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: var(--s5);
}
.service-card h4 { margin-bottom: var(--s3); }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: var(--s4); }
.service-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card-link:hover { color: var(--primary); }

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-section { background: var(--primary); }
.reviews-section .section-label { color: var(--accent-light); }
.reviews-section h2 { color: var(--white); }
.reviews-section .section-desc { color: var(--gray-400); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: var(--s6);
}
.rating-badge-num { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent-light); font-weight: 700; }
.rating-stars svg { color: var(--accent); }
.rating-badge-count { color: var(--gray-400); font-size: 0.85rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.review-card {
  background: var(--primary-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s6);
}
.review-stars { display: flex; gap: 2px; margin-bottom: var(--s4); color: var(--accent); }
.review-text { color: var(--gray-200); font-size: 0.95rem; margin-bottom: var(--s5); }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: var(--primary);
  flex-shrink: 0;
}
.review-name { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.review-location { color: var(--gray-400); font-size: 0.8rem; }

/* ── WHY / ABOUT TEASER ─────────────────────────────────────── */
.about-teaser { background: var(--cream); }
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.about-teaser-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-mid) 60%, var(--accent-dark) 140%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--s8);
}
.about-teaser-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(24,22,28,0.15) 0%, rgba(24,22,28,0.85) 100%),
    radial-gradient(circle at 30% 20%, rgba(232,213,160,0.25), transparent 55%);
  z-index: 1;
}
.about-teaser-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-teaser-visual-quote {
  position: relative; z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
}
.about-teaser-visual-quote span { display: block; margin-top: var(--s4); font-family: var(--font-body); font-style: normal; font-size: 0.85rem; color: var(--accent-light); font-weight: 600; }

.about-teaser-badges { display: flex; gap: var(--s8); margin: var(--s6) 0 var(--s8); flex-wrap: wrap; }
.about-badge-num { font-family: var(--font-display); font-size: 2rem; color: var(--accent-dark); font-weight: 700; }
.about-badge-label { font-size: 0.85rem; color: var(--text-muted); }

/* ── GALLERY TEASER ─────────────────────────────────────────── */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.gallery-tile {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  position: relative;
  overflow: hidden;
}
.gallery-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201,162,77,0.22), transparent 60%);
  pointer-events: none;
}
.gallery-tile svg { position: relative; z-index: 1; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-tile:hover img { transform: scale(1.05); }

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.step-card { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s5);
}
.step-card h4 { margin-bottom: var(--s2); }
.step-card p { color: var(--text-light); font-size: 0.92rem; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: var(--s16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 0%, rgba(201,162,77,0.18), transparent 65%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--s4); }
.cta-banner p { color: var(--gray-400); max-width: 560px; margin: 0 auto var(--s8); font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--primary); color: var(--gray-400); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--s10);
  padding: var(--s16) 0 var(--s10);
}
.footer-brand .site-logo { color: var(--white); }
.footer-brand p { margin: var(--s4) 0; font-size: 0.92rem; max-width: 380px; }
.footer-contact { display: flex; flex-direction: column; gap: var(--s3); margin-bottom: var(--s5); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-social { display: flex; gap: var(--s3); }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--ease);
}
.footer-social-link:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

.footer-col-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: var(--s4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a { font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: var(--s5) 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s3); }
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: var(--s5); }
.footer-bottom-links a { font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ── MOBILE STICKY CTA ──────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--primary);
  padding: var(--s3) var(--s4);
  gap: var(--s3);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-sticky-cta .btn { flex: 1; }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(201,162,77,0.16), transparent 60%),
    linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: var(--s16) 0 var(--s12);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: var(--s4);
}
.page-hero .breadcrumb a:hover { color: var(--accent-light); }
.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero p { color: var(--gray-400); max-width: 600px; margin-top: var(--s4); font-size: 1.05rem; }

/* ── PROSE / CONTENT BLOCKS ─────────────────────────────────── */
.prose h2 { margin-top: var(--s10); margin-bottom: var(--s4); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--s8); margin-bottom: var(--s3); }
.prose p { color: var(--text-light); margin-bottom: var(--s5); }
.prose ul, .prose ol { margin: 0 0 var(--s5) var(--s6); list-style: disc; color: var(--text-light); }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--s2); }
.prose strong { color: var(--text); }

/* ── PROCESS TIMELINE (custom jewellery page) ───────────────── */
.timeline { display: flex; flex-direction: column; gap: var(--s10); }
.timeline-step { display: grid; grid-template-columns: 90px 1fr; gap: var(--s6); }
.timeline-step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-light);
  background: var(--primary);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.timeline-step-body h3 { margin-bottom: var(--s2); }
.timeline-step-body p { color: var(--text-light); }

/* ── PRICING / INFO CARDS (appraisals, services) ────────────── */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8);
}
.info-card h3 { margin-bottom: var(--s3); }
.info-card p { color: var(--text-light); font-size: 0.95rem; }
.info-card ul { margin: var(--s4) 0 0; }
.info-card li { color: var(--text-light); font-size: 0.92rem; padding-left: var(--s5); position: relative; margin-bottom: var(--s2); list-style: none; }
.info-card li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* ── GALLERY GRID (full gallery page) ───────────────────────── */
.gallery-filter { display: flex; gap: var(--s3); flex-wrap: wrap; justify-content: center; margin-bottom: var(--s10); }
.gallery-filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--ease);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.gallery-grid .gallery-tile { aspect-ratio: 1; }
.gallery-tile-label {
  position: absolute;
  bottom: var(--s3); left: var(--s3);
  font-size: 0.8rem;
  color: var(--accent-light);
  font-weight: 600;
  z-index: 1;
}

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--s3); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s6);
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
}
.faq-question-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-question-icon { transform: rotate(45deg); background: var(--accent); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 var(--s6) var(--s6); color: var(--text-light); font-size: 0.95rem; }

/* ── CONTACT / FORM ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s16);
}
.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s10);
  height: fit-content;
}
.contact-info-card h3 { color: var(--white); margin-bottom: var(--s5); }
.contact-info-item { display: flex; gap: var(--s3); align-items: flex-start; margin-bottom: var(--s5); }
.contact-info-item svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-info-item div div:first-child { font-weight: 600; margin-bottom: 2px; }
.contact-info-item div div:last-child { color: var(--gray-400); font-size: 0.92rem; }
.contact-info-divider { height: 1px; background: rgba(255,255,255,0.12); margin: var(--s6) 0; }

.form-group { margin-bottom: var(--s5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s2);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: var(--s2); }

/* ── SIMPLE HERO (thank-you, 404) ────────────────────────────── */
.center-hero {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: var(--s24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.center-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(201,162,77,0.18), transparent 65%);
}
.center-hero .container { position: relative; z-index: 2; max-width: 640px; }
.center-hero-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-light), var(--accent));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s8);
}
.center-hero h1 { color: var(--white); }
.center-hero p { color: var(--gray-400); font-size: 1.1rem; margin: var(--s5) 0 var(--s8); }
.center-hero-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--s4);
}

/* ── NEXT STEPS (thank-you) ─────────────────────────────────── */
.next-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .hero-container-split { grid-template-columns: 1fr; gap: var(--s8); }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: var(--s8); }
  .about-teaser-visual { aspect-ratio: 16/9; }
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .header-topbar .topbar-right { display: none; }
  .info-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: var(--s10); }
  .next-steps-grid { grid-template-columns: 1fr; }
  .center-hero-num { font-size: 5.5rem; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-teaser-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-banner-actions .btn { width: 100%; }
  .hero-cta, .cta-banner-actions { flex-direction: column; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
  .trust-bar .container { gap: var(--s4); }
  .trust-divider { display: none; }
  .timeline-step { grid-template-columns: 1fr; }
  .timeline-step-num { width: 60px; height: 60px; font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
