/* =============================================
   HERO — Full Viewport Split
============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  background: var(--warm-cream);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 100px 0;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; color: var(--navy);
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0;
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-divider {
  width: 72px; height: 2px;
  background: linear-gradient(to right, var(--navy), var(--gold));
  margin-bottom: 32px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Hero right — image panel */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-right::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--warm-cream), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Stats bar — bottom full-width row */
.hero-stats {
  grid-column: 1 / -1;
  background: var(--navy);
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.9fr 0.9fr;
  border-top: 1px solid rgba(201,168,76,0.3);
}
.hero-stat {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat--featured .hero-stat-value {
  font-size: 2.3rem;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   CINEMATIC DIVIDER
============================================= */
.cinematic-divider {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/gold/open-01.png') center/cover no-repeat;
  background-attachment: fixed;
}
.cinematic-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: 1;
}
.cinematic-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 3;
}
.cinematic-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto;
}
.cinematic-divider-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.cinematic-divider-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cinematic-divider-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* =============================================
   GALLERY — Horizontal Scroll
============================================= */
.gallery-section {
  background: var(--surface);
  padding: 100px 0 80px;
}
.gallery-section .section-header {
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.gallery-row {
  margin-bottom: 48px;
  position: relative;
}
.gallery-row:last-child { margin-bottom: 0; }

/* =============================================
   GALLERY SCROLL ARROWS
============================================= */
.gallery-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* Shift down by half the row-header height (~24px label + 16px margin = ~40px / 2 = 20px) */
  margin-top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, opacity 0.2s ease;
  opacity: 1;
  pointer-events: auto;
  flex-shrink: 0;
}
.gallery-scroll-btn:hover {
  background: #f0ece7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.06);
}
.gallery-scroll-btn--left {
  left: 12px;
}
.gallery-scroll-btn--right {
  right: 12px;
}
/* CSS chevron arrows */
.gallery-scroll-btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  border-radius: 1px;
}
.gallery-scroll-btn--left::after {
  transform: rotate(-135deg) translate(-1px, 1px);
}
.gallery-scroll-btn--right::after {
  transform: rotate(45deg) translate(-1px, 1px);
}
/* Hidden state */
.gallery-scroll-btn.gallery-btn-hidden {
  opacity: 0;
  pointer-events: none;
}

.gallery-row-header {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gallery-row-swatch {
  width: 3px;
  height: 32px;
  border-radius: 2px;
  border: none;
  flex-shrink: 0;
}
.gallery-row-swatch--gold { background: linear-gradient(180deg, #d4af37, #b8963f); }
.gallery-row-swatch--black { background: linear-gradient(180deg, #333, #111); }
.gallery-row-swatch--nickel { background: linear-gradient(180deg, #c0c0c0, #8a8a8a); }
.gallery-row-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.gallery-row-link {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-left: auto;
  transition: text-decoration 0.15s;
}
.gallery-row-link:hover {
  text-decoration: underline;
}

.gallery-scroll-wrap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 24px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll-wrap::-webkit-scrollbar { display: none; }

.gallery-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
}
.gallery-card img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img {
  transform: scale(1.07);
  filter: brightness(1.04);
}
.gallery-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.gallery-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.gallery-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(transparent, rgba(20,10,0,0.72));
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 1;
  transition: padding 0.35s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-card-type {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.2;
}
.gallery-card-benefit {
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}
.gallery-card:hover .gallery-card-label {
  padding-bottom: 22px;
}


/* =============================================
   PAGE HERO BANNER (inner pages)
============================================= */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 76px; /* nav height */
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.35) 0%,
    rgba(10, 10, 10, 0.65) 60%,
    rgba(10, 10, 10, 0.82) 100%
  );
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 3;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 72px;
  width: 100%;
}
.page-hero-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 780px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 620px;
}

/* =============================================
   NAV ACTIVE STATE
============================================= */
.nav-links a.nav-active {
  color: var(--navy);
  font-weight: 600;
}

/* =============================================
   ABOUT — Who We Are
============================================= */
.about-who {
  padding: 80px 0;
  background: var(--surface);
}
.about-text {
  max-width: 800px;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-text strong {
  color: var(--fg);
}

/* =============================================
   ABOUT — Values
============================================= */
.about-values {
  padding: 80px 0;
  background: #ffffff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px 28px;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}
.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(201, 168, 76, 0.10));
  border: 1.5px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--fg);
}
.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   ABOUT — Stats Bar
============================================= */
.about-stats {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}
.about-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.about-stat:last-child {
  border-right: none;
}
.about-stat--featured .hero-stat-value {
  font-size: 2rem;
}

/* =============================================
   ABOUT — Guarantee
============================================= */
.about-guarantee {
  padding: 88px 0;
  background: #ffffff;
}
.about-guarantee-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.about-guarantee-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 0;
}
.about-guarantee .section-header {
  margin-bottom: 40px;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guarantee-card {
  padding: 36px 28px;
  background: #ffffff;
  border-radius: var(--radius);
  border-top: 2px solid var(--gold);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.guarantee-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.guarantee-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 10px;
}
.guarantee-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =============================================
   CONTACT — Section wrapper
============================================= */
.contact-section {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 80px 0;
  align-items: start;
}

/* =============================================
   CONTACT — Form (left column)
============================================= */
.contact-form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.2;
}
.contact-form-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.contact-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-field {
  margin-bottom: 20px;
}
.contact-form-full label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.contact-required {
  color: var(--gold);
}
.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form-full input:focus,
.contact-form-full select:focus,
.contact-form-full textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}
.contact-form-full textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form-full select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}
.contact-form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}
.contact-form-submit:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.contact-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.contact-form-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* Contact form success */
.contact-form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.contact-form-success.visible {
  display: block;
  animation: formFadeIn 0.5s ease;
}
.contact-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.08);
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.contact-form-success p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.contact-success-phone {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-success-phone a {
  color: var(--navy);
  font-weight: 600;
}

/* =============================================
   CONTACT — Info cards (right column)
============================================= */
.contact-info-col {
  display: flex;
  flex-direction: column;
}
.contact-info-card {
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 16px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-info-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.contact-info-card:last-child {
  margin-bottom: 0;
}
.contact-info-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(201, 168, 76, 0.10));
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.contact-info-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.contact-info-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info-card a:hover {
  color: var(--navy-light);
  text-decoration: underline;
}
.contact-info-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
}
.contact-hours-row span:last-child {
  font-weight: 500;
  color: var(--fg);
}

/* =============================================
   CONTACT — Service Area
============================================= */
.service-area {
  padding: 72px 0 80px;
  background: #ffffff;
}
.service-area-inner {
  max-width: 720px;
}
.service-area-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 20px;
}

/* =============================================
   SERVICE DETAIL SECTIONS
============================================= */
.service-detail {
  padding: 80px 0;
}
.service-detail:nth-child(even) {
  background: var(--surface);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}
.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}
.service-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.service-detail-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-features {
  list-style: none;
  margin-bottom: 36px;
}
.service-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--fg);
  font-size: 0.95rem;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

/* =============================================
   LEGAL PAGES
============================================= */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--fg);
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
}
.legal-content li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

/* =============================================
   IMAGE BAND — Three edge-to-edge photos
============================================= */
.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  overflow: hidden;
}
.image-band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* =============================================
   THANK YOU PAGE
============================================= */

/* Hero checkmark icon */
.thankyou-hero-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

/* Cinematic divider — override bg for thank you page */
.thankyou-divider {
  background-image: url('../images/chrome/door-01.png');
}

/* CTA section at bottom */
.thankyou-cta-section {
  background: var(--dark);
  padding: 80px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thankyou-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(30, 58, 95, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.thankyou-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.thankyou-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.thankyou-cta-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 24px;
  transition: color 0.2s;
}
.thankyou-cta-phone:hover {
  color: var(--gold);
}
.thankyou-cta-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}
.thankyou-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
