/* ============================================================
   Anthony AutoSpa - Static Site Styles
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --gold: #c8a84c;
  --gold-hover: #d4b85c;
  --gold-light: #f0d060;
  --orange: #c85a2a;
  --deep-red: #8B2020;
  --charcoal: #333;
  --body-text: #555;
  --light-text: #666;
  --muted-text: #888;
  --dark-section: #1a1a1a;
  --service-area-bg: #5a6575;
  --footer-bg: #111111;
  --light-bg: #f7f7f7;
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Raleway', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* ---- Typography ---- */
.font-serif { font-family: var(--font-serif); }
.font-sans  { font-family: var(--font-sans); }
.italic     { font-style: italic; }
.bold       { font-weight: 700; }
.semibold   { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.tracking-wider  { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase  { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left  { text-align: left; }

/* ---- Layout Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-article {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-900 {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-1100 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.self-center { align-self: center; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; z-index: 9999 !important; }
.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }

/* ---- Spacing ---- */
.py-2  { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-5  { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8  { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.px-4  { padding-left: 1rem; padding-right: 1rem; }
.px-5  { padding-left: 1.25rem; padding-right: 1.25rem; }
.p-5   { padding: 1.25rem; }
.p-6   { padding: 1.5rem; }
.p-7   { padding: 1.75rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-5  { margin-bottom: 1.25rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

/* ==========================================================
   HEADER
   ========================================================== */

/* Info bar */
.info-bar {
  background: var(--deep-red);
}

.info-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.info-bar-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.info-bar-brand-link:hover .info-bar-brand-title,
.info-bar-brand-link:hover .info-bar-brand-subtitle {
  color: #fff7d6;
}

.info-bar-logo {
  width: 120px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.info-bar-brand-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}

.info-bar-brand-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.info-bar-brand-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.info-bar-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-bar-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #fde047;
  font-weight: 500;
  transition: color 0.2s;
}

.info-bar-phone:hover { color: #fff; }

.info-bar-email {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.info-bar-email:hover { color: #fde047; }

.info-bar-email-text { display: none; }

.info-bar-socials {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.info-bar-socials a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.info-bar-socials a:hover { color: #fff; }

.info-bar-socials svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}

.icon-sm { width: 0.75rem; height: 0.75rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* Nav bar */
.nav-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}

.nav-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: none;
  align-items: center;
  list-style: none;
}

.desktop-nav > li > a,
.desktop-nav > li > button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.desktop-nav > li > a:hover,
.desktop-nav > li > button:hover {
  color: var(--orange);
}

.desktop-nav > li > button.active-color {
  color: var(--orange);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  min-width: 220px;
  z-index: 50;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--body-text);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:last-child { border-bottom: 0; }

.dropdown-menu a:hover {
  background: #f9fafb;
  color: var(--orange);
}

/* Hamburger */
.hamburger {
  display: flex;
  padding: 0.75rem;
  color: var(--charcoal);
}

.hamburger svg { width: 1.5rem; height: 1.5rem; }

/* Horizontal scrollable mobile nav -- sits inline with hamburger */
.mobile-nav-scroll {
  display: none;
}

@media (max-width: 767px) {
  .info-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0.42rem 0.72rem;
    gap: 0.55rem;
  }

  .info-bar-brand-link {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    gap: 0.45rem;
  }

  .info-bar-logo {
    width: 92px;
    height: 32px;
  }

  .info-bar-brand-wrap {
    min-width: 0;
  }

  .info-bar-brand-title {
    font-size: 0.78rem;
    letter-spacing: 0.025em;
    line-height: 1;
  }

  .info-bar-brand-subtitle {
    font-size: 0.56rem;
    letter-spacing: 0.09em;
    line-height: 1;
  }

  .info-bar-links {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    gap: 0.35rem;
    justify-content: flex-end;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .info-bar-phone,
  .info-bar-email {
    font-size: 0.95rem;
    gap: 0.34rem;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .info-bar-phone span,
  .info-bar-email span {
    white-space: nowrap;
  }

  .icon-sm {
    width: 1rem;
    height: 1rem;
  }

  .nav-bar-inner {
    padding: 0;
  }

  .hamburger {
    padding: 0.58rem 0.62rem;
    flex: 0 0 auto;
  }

  .mobile-nav-scroll {
    display: flex;
    flex: 1;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-nav-scroll::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav-scroll a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.56rem 0.18rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.15s;
    line-height: 1;
  }

  .mobile-nav-scroll a:hover,
  .mobile-nav-scroll a.active-color {
    color: var(--orange);
  }
}

/* Mobile hamburger dropdown */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border-color);
  background: #fff;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}

.mobile-nav a:hover { background: #f9fafb; }

/* ==========================================================
   HERO (Home page)
   ========================================================== */
.hero-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  background: #fff;
  padding: 2.5rem 0;
}

.hero-content-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-text-col { flex: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: #f8f3e3;
  color: var(--deep-red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-paragraph {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}

.hero-paragraph strong { color: var(--charcoal); }

.hero-paragraph a {
  color: var(--orange);
}

.hero-paragraph a:hover { text-decoration: underline; }

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: #fff;
  color: var(--light-text);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-logo {
  flex-shrink: 0;
  width: 200px;
  align-self: center;
}

.hero-logo img { width: 100%; height: auto; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn-dark {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: #fff;
  transition: background 0.2s;
  border-radius: 999px;
}

.btn-dark:hover { background: var(--body-text); }

.btn-dark-sm {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #222;
  color: #fff;
  transition: background 0.2s;
  border-radius: 999px;
}

.btn-dark-sm:hover { background: #444; }

.btn-outline-orange {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--orange);
  color: var(--orange);
  transition: all 0.2s;
  border-radius: 999px;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.btn-outline-gold {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  color: var(--gold);
  transition: all 0.2s;
  border-radius: 999px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark-section);
}

.btn-schedule-orange {
  display: inline-block;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  transition: all 0.2s;
  border-radius: 999px;
}

.btn-schedule-orange:hover {
  background: var(--orange);
  color: #fff;
}

.btn-submit {
  width: 100%;
  background: var(--charcoal);
  color: #fff;
  padding: 0.75rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-submit:hover { background: var(--orange); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ==========================================================
   FEATURED CARDS
   ========================================================== */
.featured-cards {
  padding: 1.5rem 0 0;
  background: #fff;
}

.featured-cards-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.featured-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.featured-card-img {
  flex: 1;
  position: relative;
  min-height: 220px;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.featured-card-body {
  flex: 1;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.featured-card-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}

/* ==========================================================
   ABOUT SECTION (Home page)
   ========================================================== */
.about-section {
  padding: 2rem 0;
  background: #fff;
  }

.about-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.about-box-inner {
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-text-col {
  flex: 1;
  padding: 1.75rem;
}

.about-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-text {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1rem;
}

.about-text strong { color: var(--charcoal); }

.about-portrait {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  min-height: 300px;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ==========================================================
   SERVICES CAROUSEL
   ========================================================== */
.services-carousel-section {
  padding: 3.5rem 0;
  background: var(--dark-section);
}

.carousel-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  text-align: center;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-card {
  flex-shrink: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.carousel-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.carousel-card:hover .carousel-card-img img {
  transform: scale(1.05);
}

.carousel-card-body {
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.carousel-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.carousel-card-text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--light-text);
  margin-bottom: 1rem;
  flex: 1;
}

.carousel-btn {
  position: absolute;
  top: 90px;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  border: none;
  cursor: pointer;
}

.carousel-btn:hover { background: rgba(0, 0, 0, 0.7); }

.carousel-btn-prev { left: 0.25rem; }
.carousel-btn-next { right: 0.25rem; }

.carousel-btn svg { width: 1.25rem; height: 1.25rem; }

/* ==========================================================
   BLOG SECTION (Home page)
   ========================================================== */
.blog-section {
  padding: 3.5rem 0;
  background: var(--dark-section);
}

.blog-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  text-align: center;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.blog-card {
  background: #fff;
  overflow: hidden;
}

.blog-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card-img:hover img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem;
}

.blog-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card-title a {
  color: var(--gold);
  transition: color 0.2s;
}

.blog-card-title a:hover { color: #b89840; }

.blog-card-excerpt {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--light-text);
}

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band {
  padding: 1.5rem 0;
  background: var(--deep-red);
  text-align: center;
}

.cta-band-text {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
}

.cta-band-phone {
  color: var(--gold-light);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s;
}

.cta-band-phone:hover { color: #fff; }

.page-intro {
  max-width: 760px;
  margin: 0.75rem auto 0;
  text-align: center;
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-quick-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Page hero CTA with larger text */
.page-cta-band {
  background: var(--deep-red);
  padding: 1.5rem 0;
  text-align: center;
}

.page-cta-band p {
  color: #fff;
  font-size: 0.875rem;
}

.page-cta-band a {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  transition: color 0.2s;
}

.page-cta-band a:hover { color: #fff; }

/* ==========================================================
   SERVICE AREA BAND
   ========================================================== */
.service-area-band {
  padding: 2.5rem 0;
  background: var(--service-area-bg);
  text-align: center;
}

.service-area-heading {
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}

.service-area-list {
  font-size: 0.8125rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.service-area-cta {
  font-size: 0.9375rem;
  color: #fff;
}

.service-area-cta a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}

.service-area-cta a:hover { color: #fff; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--footer-bg);
  color: #b0b8c4;
  padding-top: 3.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-col-brand { flex: 1.3; }
.footer-col { flex: 1; }

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-text {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #b0b8c4;
}

.footer-brand-text strong {
  color: #d1d5db;
  font-weight: 500;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: #b0b8c4;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #b0b8c4;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-contact svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-hours-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #b0b8c4;
}

/* Service area band inside footer */
.service-area-band-inline {
  margin-top: 2rem;
  padding: 2rem 1.25rem;
  background: var(--service-area-bg);
  text-align: center;
  }

.service-area-band-inline .service-area-heading {
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-area-band-inline .service-area-list {
  font-size: 0.75rem;
  color: #d0d5dc;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.service-area-band-inline .service-area-cta {
  font-size: 0.8125rem;
  color: var(--gold);
}

.service-area-band-inline .service-area-cta a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #8b95a3;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-links a {
  font-size: 0.75rem;
  color: #b0b8c4;
  transition: color 0.2s;
}

.footer-social-links a:hover { color: var(--gold); }

/* ==========================================================
   SCROLL-TO-TOP BUTTON
   ========================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  z-index: 50;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  color: var(--footer-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover { background: var(--gold-hover); }

.scroll-top-btn svg { width: 1rem; height: 1rem; }

/* ==========================================================
   CALL-ME BUTTON (Mobile only)
   ========================================================== */
.call-me-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--footer-bg);
  display: none; /* shown on mobile via media query */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 50;
  transition: background 0.2s;
}

.call-me-btn:hover { background: var(--gold-hover); }

.call-me-btn svg { width: 1.25rem; height: 1.25rem; }

/* ==========================================================
   SERVICES PAGE
   ========================================================== */
.services-hero {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.services-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service detail page styles */
.service-detail-hero {
  width: 100%;
  max-height: 380px;
  overflow: hidden;
}

.service-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.service-detail-content h1 {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.service-detail-content h2 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.service-detail-content h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-detail-content p {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-detail-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-detail-content ul li {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.service-detail-content .detail-intro {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Pricing cards for service pages */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pricing-card {
  border: 1px solid var(--border-color);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  }

.pricing-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  }

.pricing-card.popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
  }

.pricing-card-label {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.15rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  }

/* When card has image, shift label below the image */
.pricing-card-img + .pricing-card-label {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: inline-block;
  margin: -0.75rem auto 0;
  }

.pricing-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  padding: 0 1.5rem;
  }

.pricing-card .pricing-subtitle {
  font-size: 0.8125rem;
  color: var(--muted-text);
  margin-bottom: 0.75rem;
  padding: 0 1.5rem;
  }

.pricing-card .pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding: 0 1.5rem;
  }

.pricing-card ul {
  list-style: none;
  padding: 0 1.5rem;
  text-align: left;
  margin-bottom: 1.25rem;
  }

.pricing-card ul li {
  font-size: 0.8125rem;
  color: var(--body-text);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  }

.pricing-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  }

.pricing-card .pricing-note {
  padding: 0 1.5rem;
  }

.pricing-card > p:last-child {
  padding: 0 1.5rem 1.5rem;
  }

.pricing-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted-text);
  margin-top: 1rem;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 1.5rem 0.75rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
}

.pricing-tier {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--body-text);
  padding: 0.2rem 0;
}

.pricing-tier span:last-child {
  font-weight: 600;
  color: var(--charcoal);
}

.pricing-time {
  font-size: 0.75rem;
  color: var(--muted-text);
  margin: 0 1.5rem 0.5rem;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: var(--body-text);
  margin: 0 1.5rem 0.75rem;
  font-style: italic;
}

.service-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.service-detail-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== CERAMIC COATING PAGE ===== */

.ceramic-page-title {
  text-align: center;
  padding: 2rem 1rem 0;
}

.ceramic-page-title h1 {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Section navigation */
.ceramic-section-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: var(--charcoal);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
}

.ceramic-section-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 1rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.ceramic-section-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.ceramic-section-nav .ceramic-nav-cta {
  background: var(--orange);
  color: #fff;
}

.ceramic-section-nav .ceramic-nav-cta:hover {
  background: var(--orange-hover);
}

/* Intro grid */
.ceramic-intro-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.ceramic-intro-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .ceramic-intro-grid {
    flex-direction: row;
    align-items: flex-start;
  }
  .ceramic-intro-text { flex: 1; }
  .ceramic-intro-img { flex: 0 0 40%; }
}

/* Sections */
.ceramic-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

/* Check list (green checks) */
.ceramic-check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.ceramic-check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.ceramic-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.ceramic-callout {
  background: var(--charcoal);
  color: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.ceramic-callout a { color: var(--gold); }

.ceramic-note {
  font-size: 0.8125rem;
  color: var(--muted-text);
  font-style: italic;
}

/* Benefits grid */
.ceramic-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ceramic-benefit-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--border-color);
}

.ceramic-benefit-icon {
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.ceramic-benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.ceramic-benefit-card p {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .ceramic-benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Package tabs */
.ceramic-pkg-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.ceramic-pkg-tab {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f8f8f8;
  border: none;
  border-right: 1px solid var(--border-color);
  cursor: pointer;
  color: var(--body-text);
  transition: background 0.2s, color 0.2s;
}

.ceramic-pkg-tab:last-child { border-right: none; }

.ceramic-pkg-tab:hover {
  background: #eee;
}

.ceramic-pkg-tab.active {
  background: var(--charcoal);
  color: #fff;
}

/* Package panels */
.ceramic-pkg-panel {
  display: none;
}

.ceramic-pkg-panel.active {
  display: block;
}

.ceramic-pkg-heading {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.ceramic-pkg-note {
  font-size: 0.875rem;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Pricing table (side-by-side columns) */
.ceramic-pricing-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.ceramic-price-col {
  border: 1px solid var(--border-color);
  padding: 1.25rem;
}

.ceramic-price-col.popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.ceramic-price-header {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  text-align: center;
}

.ceramic-price-badge {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.ceramic-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 1px solid #f0f0f0;
  font-size: 0.875rem;
}

.ceramic-price-row span { color: var(--body-text); }
.ceramic-price-row strong {
  color: var(--charcoal);
  font-size: 1rem;
}

@media (min-width: 640px) {
  .ceramic-pricing-table { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .ceramic-pricing-table { grid-template-columns: repeat(4, 1fr); }
  .ceramic-pricing-table[style*="max-width:500px"] { grid-template-columns: 1fr; }
  .ceramic-pricing-table[style*="max-width:600px"] { grid-template-columns: repeat(2, 1fr); }
}

.ceramic-glass-benefits {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border: 1px solid var(--border-color);
}

.ceramic-glass-benefits h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

/* FAQ accordion */
.ceramic-faq-list {
  margin-top: 1rem;
}

.ceramic-faq-item {
  border-bottom: 1px solid var(--border-color);
}

.ceramic-faq-item summary {
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ceramic-faq-item summary::-webkit-details-marker { display: none; }

.ceramic-faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 1rem;
}

.ceramic-faq-item[open] summary::after {
  content: "\2212";
}

.ceramic-faq-item p {
  padding: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.7;
}

/* Warranty */
.ceramic-warranty-banner {
  background: var(--charcoal);
  color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
}

.ceramic-warranty-banner h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.ceramic-warranty-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.ceramic-warranty-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ceramic-warranty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.ceramic-warranty-col {
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.ceramic-warranty-col h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.ceramic-warranty-col ul {
  list-style: none;
  padding: 0;
}

.ceramic-warranty-col ul li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.ceramic-warranty-col ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.ceramic-warranty-duration {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .ceramic-warranty-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .ceramic-page-title h1 { font-size: 2.25rem; }
}

/* ===== END CERAMIC COATING PAGE ===== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(17, 24, 39, 0.08);
  border-color: #e2d2a0;
}

.service-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card-text {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

/* Services Performed section */
.services-performed-section {
  background: #f7f7f7;
  padding: 3rem 1rem;
}

.services-performed-heading {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--deep-red);
  margin-bottom: 0.5rem;
}

.services-performed-intro {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

/* Services performed list */
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--body-text);
  text-align: center;
}

.services-list-grid a {
  padding: 0.25rem 0;
  color: var(--body-text);
  text-decoration: underline;
  transition: color 0.2s;
}

.services-list-grid a:hover {
  color: var(--deep-red);
}

.services-list-grid span {
  padding: 0.25rem 0;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  padding: 1.4rem;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.04);
}

.testimonial-quote {
  font-size: 0.8125rem;
  color: var(--body-text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--muted-text);
}

.review-card {
  background: #fff;
  padding: 1.25rem;
  border: 1px solid var(--border-color);
}

.review-text {
  font-size: 0.8125rem;
  color: var(--body-text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.review-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-list {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child { border-bottom: 0; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.faq-question-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  padding-right: 1rem;
  transition: color 0.2s;
}

.faq-question:hover .faq-question-text {
  color: var(--orange);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #999;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, padding 0.2s;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer-text {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
  padding: 0 0.25rem 0 1.5rem;
}

.faq-answer-text strong { color: var(--charcoal); }

/* ==========================================================
   SCHEDULE FORM
   ========================================================== */
.form-section { padding: 3rem 0; }

.form-fieldset { margin-bottom: 2rem; }

.form-legend {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #a8893a;
  margin-bottom: 1.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
}

.form-label-text {
  display: block;
  font-size: 0.875rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 0.375rem;
  }

.form-label-text .required {
  color: #ef4444;
  margin-left: 0.125rem;
}

.form-input,
  .form-select,
  .form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  color: #1a1a1a;
  background: #fff;
  }

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.form-textarea { resize: vertical; }

.col-span-2 { grid-column: span 1; }

.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-success {
  text-align: center;
  padding: 3rem 0;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  margin-bottom: 1.25rem;
}

.form-success-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.form-success-text {
  color: var(--body-text);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

.form-success-text a {
  color: var(--orange);
  font-weight: 500;
}

.form-success-text a:hover { text-decoration: underline; }

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.form-actions-note {
  font-size: 0.9375rem;
  color: #1a1a1a;
  }

.form-actions-note a {
  color: var(--orange);
  font-weight: 500;
}

.form-actions-note a:hover { text-decoration: underline; }

/* Date / Time picker enhancements */
.date-picker-wrap,
.time-picker-wrap {
  position: relative;
}

.date-picker-wrap .form-input,
.time-picker-wrap .form-input {
  cursor: pointer;
  padding-left: 3rem;
}

/* Custom icon on the left side */
.date-picker-wrap::before,
.time-picker-wrap::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0.625rem;
  width: 1.125rem;
  height: 1.125rem;
  pointer-events: none;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.date-picker-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23333' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.time-picker-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23333' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

/* Hide native calendar/clock icon (it stays on the right by default) */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.picker-hint {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.25rem;
}

.picker-hint svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

/* ==========================================================
   SCHEDULE HERO BANNER
   ========================================================== */
.schedule-hero {
  position: relative;
  height: 140px;
  overflow: hidden;
  }

.schedule-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.schedule-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.schedule-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.schedule-hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.375rem;
}

.schedule-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  max-width: 36rem;
}

/* ==========================================================
   BLOG INDEX & POSTS
   ========================================================== */
.blog-index-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-index-article {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-index-article:last-child { border-bottom: 0; }

.blog-index-thumb { flex-shrink: 0; }

.blog-index-thumb img { width: 100%; height: auto; object-fit: cover; }

.blog-index-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.blog-index-title a { transition: color 0.2s; }
.blog-index-title a:hover { color: var(--orange); }

.blog-index-excerpt {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--orange);
  transition: color 0.2s;
}

.blog-read-more:hover { color: var(--charcoal); }

/* Blog article prose */
.blog-prose {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.6;
}

.blog-prose p { margin-bottom: 1.25rem; }

.blog-prose h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.blog-prose a {
  color: var(--orange);
}

.blog-prose a:hover { text-decoration: underline; }

.blog-prose strong { color: var(--charcoal); }

.blog-back-link {
  font-size: 0.8125rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: color 0.2s;
}

.blog-back-link:hover { color: var(--charcoal); }

.blog-article-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-article-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 2rem;
}

.blog-article-cta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================
   FINANCING, ABOUT PAGES
   ========================================================== */
.content-box-gray {
  background: var(--light-bg);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.content-box-gray h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.content-box-dark {
  background: var(--charcoal);
  color: #fff;
  padding: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.content-box-dark h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.content-box-dark p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin: 0 auto;
}

.content-text {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.6;
}

.content-text p { margin-bottom: 1rem; }
.content-text strong { color: var(--charcoal); }

.content-text a {
  color: var(--orange);
  font-weight: 500;
}

.content-text a:hover { text-decoration: underline; }

.content-text ol {
  list-style: decimal;
  list-style-position: inside;
}

.content-text ol li { margin-bottom: 0.5rem; }

.page-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 0.75rem;
}

.page-subheading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 300;
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-intro {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-heading-serif {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (min-width: 640px) {
  .info-bar-email-text { display: inline; }
  .info-bar-brand { font-size: 0.8125rem; }
  .info-bar-links { gap: 1.25rem; }

  .blog-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-list-grid { grid-template-columns: 1fr 1fr 1fr; }

  .form-grid { grid-template-columns: 1fr 1fr; }
  .col-span-2 { grid-column: span 2; }

  .form-actions { flex-direction: row; }
  .btn-submit { width: auto; }

  .schedule-hero { height: 160px; }
  .schedule-hero-title { font-size: 1.75rem; }
  .schedule-hero-subtitle { font-size: 0.875rem; }

  .page-cta-band a { font-size: 1.875rem; }
  .page-cta-band p { font-size: 1rem; }
  .page-heading { font-size: 1.875rem; }
  .page-subheading { font-size: 1.5rem; }

  .blog-index-article {
    flex-direction: row;
  }
  .blog-index-thumb { width: 300px; flex-shrink: 0; }
  .blog-article-title { font-size: 1.875rem; }
  .blog-article-subtitle { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  .info-bar-socials {
    display: flex;
    gap: 0.65rem;
  }

  .info-bar-socials svg {
    width: 0.95rem;
    height: 0.95rem;
  }

  .info-bar-inner {
    gap: 1.5rem;
  }

  .info-bar-links {
    gap: 1.1rem;
    justify-content: flex-end;
  }

  .info-bar-phone,
  .info-bar-email {
    font-size: 1rem;
    gap: 0.38rem;
  }

  .icon-sm {
    width: 1rem;
    height: 1rem;
  }

  .desktop-nav { display: flex; }

  .nav-bar-inner {
    justify-content: center;
    gap: 2rem;
  }

  .hamburger { display: none; }

  .hero-content-inner {
    flex-direction: row;
    gap: 2.5rem;
  }

  .hero-heading { font-size: 2.25rem; }
  .hero-logo { order: 2; width: 250px; }
  .hero-text-col { order: 1; }

  .hero-banner { height: 300px; }

  .featured-card { flex-direction: row; }
  .featured-card.reverse { flex-direction: row-reverse; }
  .featured-card-img { min-height: 260px; }
  .featured-card-body { padding: 2rem; }

  .cta-band { padding: 2rem 0; }
  .cta-band-text { font-size: 1.25rem; }

  .footer-cols { flex-direction: row; }
  .footer-bottom { flex-direction: row; }

  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
  .call-me-btn { display: none; }

  .carousel-card-img { height: 200px; }
  .carousel-btn { top: 100px; }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 2rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-dark,
  .hero-actions .btn-outline-gold,
  .page-quick-actions .btn-dark,
  .page-quick-actions .btn-outline-gold {
    width: 100%;
    text-align: center;
  }

  .services-carousel-section {
    padding: 2.75rem 0;
  }

  .featured-cards-inner {
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1.15rem;
  }
}

@media (max-width: 767px) {
  .call-me-btn { display: flex; }
}

@media (min-width: 1024px) {
  .info-bar-phone,
  .info-bar-email {
    font-size: 1.1rem;
    gap: 0.42rem;
  }

  .icon-sm {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hero-banner { height: 350px; }

  .about-box-inner { flex-direction: row; }
  .about-portrait { width: 340px; min-height: 0; }
  .about-portrait img { position: relative; }
  .about-heading { font-size: 1.75rem; }

  .blog-grid { grid-template-columns: 1fr 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
  .services-list-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }

  .carousel-heading { font-size: 2rem; }
  .blog-heading { font-size: 2rem; }
}

/* ==========================================================
   ABOUT PAGE SPECIFICS
   ========================================================== */
.container-800 {
  max-width: 800px;
  margin: 0 auto;
}

.info-box {
  background: #f7f7f7;
  padding: 1.5rem 2rem;
}

.info-box-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

.info-box-text {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.7;
}

.guarantee-box {
  background: var(--charcoal);
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}

.testimonial-text {
  font-size: 0.8125rem;
  color: var(--body-text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-footer {
  font-size: 0.8125rem;
}

.testimonial-footer strong {
  color: var(--charcoal);
}

.testimonial-loc {
  color: var(--muted-text);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.review-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-accordion {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-question span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  padding-right: 1rem;
  transition: color 0.2s;
}

.faq-question:hover span {
  color: var(--orange);
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
  padding: 0 0.25rem 0 1.5rem;
}

.faq-answer p strong {
  color: var(--charcoal);
}

@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ==========================================================
   PAGE HERO (Financing etc.)
   ========================================================== */
.page-hero-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.page-hero-text {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

/* ==========================================================
   FEATURED GRID (Financing "How It Works")
   ========================================================== */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.featured-grid .featured-card {
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  text-align: center;
  flex-direction: column;
}

.featured-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-grid .featured-card-title {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.featured-card-desc {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .featured-grid { grid-template-columns: 1fr 1fr 1fr; }
  .page-hero-heading { font-size: 2.25rem; }
}

/* ==========================================================
   BLOG ARTICLE CONTAINER
   ========================================================== */
.container-750 {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================================
   PAGE HERO BANNER (reusable across main pages)
   ========================================================== */
.page-hero-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.page-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .page-hero-banner { height: 300px; }
}

@media (min-width: 1024px) {
  .page-hero-banner { height: 350px; }
}

/* ==========================================================
   PACKAGES IFRAME
   ========================================================== */
  .packages-iframe-wrap {
  position: relative;
  width: 100%;
  height: 800px;
  padding: 0;
  overflow: hidden;
  }
  
  .packages-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  }

  /* Overlay to prevent scroll trap -- removed on tap */
  .iframe-scroll-guard {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  background: transparent;
  }

  .iframe-scroll-guard::after {
  content: 'Click to browse packages';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  pointer-events: none;
  white-space: nowrap;
  }

  @media (max-width: 767px) {
    .packages-iframe-wrap {
      height: 600px;
    }
  }


/* Local SEO landing pages */
.location-service-grid,
.location-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.location-service-card,
.location-link-card {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: #fff;
  color: var(--charcoal);
  font-weight: 600;
}

.location-service-card:hover,
.location-link-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.location-link-card small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-text);
  font-weight: 500;
}

.seo-faq-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.seo-faq-item {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: var(--light-bg);
}

.service-area-list a {
  color: #fff7d6;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.service-area-list a:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .location-service-grid,
  .location-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Gift certificates */
.gift-hero-banner {
  background: linear-gradient(180deg, #fff8eb 0%, #fff 100%);
}

.gift-hero-banner img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.gift-page-shell {
  padding: 3rem 1rem 4.5rem;
  background: linear-gradient(180deg, #fff 0%, #f8f5ee 100%);
}

.gift-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.gift-copy-card,
.gift-calc-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(200, 168, 76, 0.18);
}

.gift-copy-card {
  padding: 0;
  overflow: hidden;
}

.gift-copy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  min-height: 100%;
}

.gift-copy-pane {
  padding: 2.25rem;
  background: linear-gradient(180deg, #fff 0%, #fcfbf8 100%);
}

.gift-image-pane {
  position: relative;
  min-height: 500px;
  background: linear-gradient(180deg, rgba(200, 168, 76, 0.16) 0%, rgba(200, 168, 76, 0.04) 100%);
  overflow: hidden;
}

.gift-image-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.gift-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.16) 100%);
}

.gift-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(200, 168, 76, 0.16);
  color: var(--deep-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gift-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  line-height: 1.08;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gift-intro,
.gift-help-text,
.gift-disclaimer,
.gift-tax-note,
.gift-calc-head p {
  color: var(--body-text);
  line-height: 1.75;
}

.gift-points {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.9rem;
}

.gift-points li {
  list-style: none;
  position: relative;
  padding-left: 1.6rem;
  color: var(--charcoal);
  font-weight: 500;
}

.gift-points li::before {
  content: '';
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--gold);
}

.gift-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.btn-dark-outline {
  background: transparent !important;
  color: var(--charcoal) !important;
  border: 1px solid rgba(51, 51, 51, 0.18);
}

.gift-calc-card {
  padding: 2rem;
  background: linear-gradient(180deg, #fff 0%, #fdfbf7 100%);
}

.gift-calc-kicker {
  margin-bottom: 0.5rem;
  color: var(--muted-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gift-calc-head h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.85rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.gift-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.gift-quick-btn {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 51, 51, 0.14);
  background: #fff;
  color: var(--charcoal);
  font-weight: 700;
}

.gift-quick-btn.active,
.gift-quick-btn:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 76, 0.14);
}

.gift-field-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.gift-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: #fff;
}

.gift-input-wrap span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
}

.gift-input-wrap input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  background: transparent;
}

.gift-breakdown {
  margin-top: 1.5rem;
  background: #fbfaf7;
  border-radius: 20px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(200, 168, 76, 0.18);
}

.gift-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.gift-breakdown-row:last-child {
  border-bottom: 0;
}

.gift-breakdown-total strong {
  color: var(--deep-red);
  font-size: 1.4rem;
}

.gift-copy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.gift-copy-status {
  color: var(--deep-red);
  font-weight: 600;
}

@media (max-width: 900px) {
  .gift-page-grid {
    grid-template-columns: 1fr;
  }

  .gift-copy-hero {
    grid-template-columns: 1fr;
  }

  .gift-image-pane {
    order: -1;
    min-height: 260px;
  }

  .gift-copy-pane,
  .gift-calc-card {
    padding: 1.5rem;
  }
}

@media (max-width: 520px) {
  .gift-page-shell {
    padding: 1rem 0.75rem 2.5rem;
  }

  .gift-page-grid {
    gap: 1rem;
  }

  .gift-copy-card,
  .gift-calc-card {
    border-radius: 20px;
  }

  .gift-image-pane {
    min-height: 180px;
  }

  .gift-copy-pane,
  .gift-calc-card {
    padding: 1.2rem;
  }

  .gift-actions .btn-dark,
  .gift-actions .btn-dark-outline,
  .gift-copy-row .btn-dark {
    width: 100%;
    text-align: center;
  }
}
