/* ============================================
   DESIGN TOKENS — WHITE PREMIUM THEME
   ============================================ */
:root {
  /* Colours */
  --white:        #ffffff;
  --off-white:    #faf9f7;
  --cream:        #f3f1ec;
  --warm-grey:    #e8e5de;
  --mid:          #6b6560;
  --charcoal:     #2e2a25;
  --dark:         #1e1b17;
  --accent:       #1a1a1a;
  --accent-hover: #333333;
  --accent-light: #f0efec;
  --accent-pale:  rgba(26, 26, 26, 0.06);
  --gold:         #b08d57;
  --gold-hover:   #937340;
  --gold-light:   #f8f2e9;
  --green-check:  #4a7c5a;
  --red-cross:    #b05050;
  --shadow-sm:    0 1px 3px rgba(30, 27, 23, 0.04);
  --shadow-md:    0 4px 20px rgba(30, 27, 23, 0.07);
  --shadow-lg:    0 8px 40px rgba(30, 27, 23, 0.09);

  /* Fonts */
  --font-display:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:     'DM Mono', monospace;

  /* Type scale — Major Third (1.25) · base 16px = 1rem · H1 anchor 3.5rem */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px — body copy */
  --text-xl:   1.25rem;    /* 20px — step 1 */
  --text-2xl:  1.563rem;   /* 25px — step 2 */
  --text-3xl:  1.8rem;     /* 28.8px — H4 */
  --text-4xl:  2.24rem;    /* 35.8px — H3 */
  --text-5xl:  2.8rem;     /* 44.8px — H2 */
  --text-6xl:  3.5rem;     /* 56px — H1 */

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --section-padding: 5rem 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-lg); /* 1.125rem / 18px */
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--section-padding);
}

.section-sub {
  color: var(--mid);
  margin-top: 0.75rem;
  margin-bottom: var(--space-lg);
  max-width: 520px;
  font-size: var(--text-base);
  line-height: 1.7;
}

.accent {
  color: var(--gold);
}

.icon-accent {
  color: var(--gold);
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

h2 {
  font-size: var(--text-5xl);
  font-weight: 700;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 4px;
  padding: 0.8125rem 1.75rem;
  min-height: 48px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--warm-grey);
}

.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--dark);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--warm-grey);
}

.btn-secondary:hover {
  border-color: var(--charcoal);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: 1px solid #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

.btn-lg {
  font-size: var(--text-base);
  padding: 0.9375rem 2.25rem;
}

/* ============================================
   SECTION 1: STICKY NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.nav-logo-accent {
  color: var(--gold);
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links > li > a,
.nav-dropdown-trigger {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  line-height: 1.5;
  vertical-align: middle;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links > li > a:hover,
.nav-dropdown-trigger:hover {
  color: var(--dark);
}

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

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: -1rem;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 210px;
  box-shadow: var(--shadow-lg);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--mid);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--dark);
}

/* Desktop nav CTAs */
.nav-ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta-call,
.nav-cta-quote {
  font-size: var(--text-sm);
  padding: 0.5rem 1.25rem;
  min-height: 40px;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 14px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem 0;
  gap: 0;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.nav-links.is-open > li {
  border-bottom: none;
}

.nav-links.is-open > li > a,
.nav-links.is-open .nav-dropdown-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.875rem var(--space-md);
  font-size: var(--text-base);
  color: var(--dark);
  text-align: left;
  min-height: 48px;
}

.nav-links.is-open > li > a:hover,
.nav-links.is-open .nav-dropdown-trigger:hover {
  background: var(--off-white);
}

/* Dropdown trigger chevron on mobile */
.nav-links.is-open .nav-dropdown-trigger {
  justify-content: space-between;
}

.nav-links.is-open .nav-dropdown-trigger::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--mid);
  transition: transform 0.25s ease;
}

.nav-links.is-open .nav-dropdown-trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Mobile dropdown sub-menu — hidden by default, toggled via JS */
.nav-links.is-open .nav-dropdown-menu {
  position: static;
  display: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  margin: 0 var(--space-md) 0.25rem var(--space-md);
}

.nav-links.is-open .nav-dropdown-menu.is-open {
  display: block;
}

.nav-links.is-open .nav-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem var(--space-md);
  font-size: var(--text-sm);
  color: var(--mid);
  min-height: 44px;
}

.nav-links.is-open .nav-dropdown-menu a:hover {
  color: var(--dark);
  background: var(--teal-light);
}

/* ============================================
   SECTION 2: HERO
   ============================================ */

/* Inner page hero — full-width background image */
.hero-inner {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.hero-inner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

.hero-inner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-inner-content h1 {
  color: var(--white);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-sm);
}

.accent-light {
  color: var(--gold);
}

.hero-inner-sub {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xs);
}

.hero-inner-sub strong {
  color: var(--white);
}

.hero-inner-finance {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.hero-inner-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white);
  font-weight: 600;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

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

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

/* Homepage hero */
.hero {
  padding: var(--space-lg) var(--space-md);
  background: var(--off-white);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--mid);
  margin-bottom: var(--space-xs);
}

.hero-sub strong {
  color: var(--dark);
  font-weight: 600;
}

.hero-finance {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.finance-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Mobile: show inline image, hide desktop image */
.hero-image-mobile {
  margin-bottom: var(--space-lg);
  border-radius: 8px;
  overflow: hidden;
}

.hero-image-mobile .img-placeholder {
  min-height: 200px;
}

.hero-image-desktop {
  display: none;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.hero-ctas .btn {
  width: 100%;
}

.hero-secondary {
  margin-bottom: var(--space-lg);
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--mid);
  padding: 0.25rem 0;
  min-height: 48px;
  transition: color 0.2s ease;
}

.hero-whatsapp svg {
  color: #25d366;
}

.hero-whatsapp:hover {
  color: var(--dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--warm-grey);
  border: 1px solid var(--warm-grey);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stat {
  background: var(--white);
  padding: var(--space-md);
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.hero-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--mid);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.hero-image {
  margin-top: var(--space-lg);
}

/* Image placeholder */
.img-placeholder {
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 240px;
}

.img-placeholder span {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--mid);
  text-align: center;
}

/* ============================================
   SECTION 3: TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--white);
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--cream);
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  text-align: center;
}

.trust-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

.trust-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ============================================
   SECTION 4: STYLE GRID
   ============================================ */
/* BG flow: hero(cream) → trust(white) → styles(white) → wickes(cream) → gallery(white) → pricing(cream) → quality(white) → tenement(cream) → process(white) → reviews(cream) → areas(white) → whatsapp(dark) → form(cream) → footer(dark) */

.style-grid-section {
  background: var(--white);
}

.style-carousel {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-xs);
}

.style-carousel::-webkit-scrollbar {
  display: none;
}

.style-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.style-cards .style-card {
  flex: none;
}

.style-card {
  flex: 0 0 80%;
  scroll-snap-align: start;
  display: block;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.style-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.style-prev,
.style-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  background: var(--white);
  font-size: var(--text-lg);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.style-prev:hover,
.style-next:hover {
  border-color: var(--dark);
  background: var(--off-white);
}

.style-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.style-card-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
  background: var(--dark);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.style-card-img.img-placeholder {
  border-radius: 0;
  min-height: 180px;
}

.style-card-body {
  padding: var(--space-md);
}

.style-card-body h3 {
  margin-bottom: 0.375rem;
  font-size: var(--text-lg);
}

.style-card-body p {
  color: var(--mid);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.style-card-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.blog-date {
  display: block;
  font-size: var(--text-xs);
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.blog-date-article {
  display: block;
  padding-top: var(--space-md);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--off-white);
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.included-section {
  background: var(--off-white);
}

.included-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.included-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.375rem 1.25rem;
  border-radius: 4px;
  margin-bottom: var(--space-md);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.included-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 12px;
  padding: var(--space-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.included-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.included-img-wrap {
  flex-shrink: 0;
}

.included-img {
  width: 80px;
  height: 80px;
  min-height: 0;
  border-radius: 50%;
  padding: 0;
  border: 2px solid var(--gold);
}

.included-img span {
  font-size: var(--text-xs);
}

.included-text h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.included-text p {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================
   FEATURE POINTS (numbered list)
   ============================================ */
.feature-points {
  margin: var(--space-lg) 0;
}

.feature-point {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--cream);
}

.feature-point:last-child {
  border-bottom: none;
}

.feature-point-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.feature-point strong {
  display: block;
  font-size: var(--text-base);
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.feature-point p {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   MID-PAGE QUOTE FORM
   ============================================ */
.midform-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.midform-layout {
  display: grid;
  gap: var(--space-xl);
}

.midform-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(176, 141, 87, 0.35);
  padding: 0.375rem 1rem;
  border-radius: 4px;
  margin-bottom: var(--space-md);
}

.midform-section h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.midform-accent {
  color: var(--gold);
}

.midform-lead {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.midform-points {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.midform-points li {
  padding-left: 2rem;
  position: relative;
}

.midform-points li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-lg);
}

.midform-points li strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.125rem;
}

.midform-points li span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.midform-trust {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.midform-trust-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.midform-trust-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

/* Mid form — the form card */
.midform-form-wrap {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.midform-form-header {
  background: var(--off-white);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--cream);
}

.midform-form-header h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.25rem;
}

.midform-form-header p {
  font-size: var(--text-sm);
  color: var(--mid);
}

.midform-form {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg);
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-section {
  background: var(--white);
}

.featured-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.featured-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.featured-grid {
  display: grid;
  gap: var(--space-lg);
}

.featured-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--cream);
}

.featured-card-img .img-placeholder {
  min-height: 300px;
  border-radius: 0;
}

.featured-card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.featured-card-body {
  padding: var(--space-lg);
}

.featured-card-body h3 {
  margin-bottom: var(--space-xs);
}

.featured-card-body p {
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.featured-list {
  margin-bottom: var(--space-md);
}

.featured-list li {
  font-size: var(--text-sm);
  color: var(--charcoal);
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  border-bottom: 1px solid var(--cream);
  line-height: 1.5;
}

.featured-list li:last-child {
  border-bottom: none;
}

.featured-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.featured-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

/* ============================================
   SPECIAL OFFER
   ============================================ */
.offer-section {
  background: var(--off-white);
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
}

.offer-inner {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.offer-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.375rem 1rem;
  border-radius: 4px;
  margin-bottom: var(--space-md);
}

.offer-section h2 {
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.offer-highlight {
  color: var(--gold);
}

.offer-sub {
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  line-height: 1.75;
}

.offer-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.offer-image-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.offer-img {
  min-height: 220px;
  border-radius: 8px;
  background: var(--cream);
  border-color: var(--warm-grey);
}

.offer-image-badge {
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.25rem;
  flex: 1;
}

.offer-badge-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.offer-badge-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.offer-badge-worth {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.offer-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.offer-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--charcoal);
  font-weight: 500;
}

.offer-perk svg {
  color: var(--gold);
  flex-shrink: 0;
}

.btn-offer {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn-offer:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

/* ============================================
   ABOUT US
   ============================================ */
.about-section {
  background: var(--white);
}

.about-layout {
  display: grid;
  gap: var(--space-lg);
}

.about-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.about-content p:last-of-type {
  margin-bottom: var(--space-md);
}

.about-image .img-placeholder {
  min-height: 300px;
  border-radius: 8px;
}

/* ============================================
   HOME DESIGN APPOINTMENT
   ============================================ */
.appointment-section {
  background: var(--white);
}

.appointment-layout {
  display: grid;
  gap: var(--space-xl);
}

.appointment-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.375rem 1rem;
  border-radius: 4px;
  margin-bottom: var(--space-md);
}

.appointment-content h2 {
  margin-bottom: var(--space-md);
}

.appointment-lead {
  font-size: var(--text-lg);
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.appointment-content > p {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.appointment-benefits {
  margin: var(--space-md) 0;
  display: grid;
  gap: 0.625rem;
}

.appointment-benefits li {
  font-size: var(--text-sm);
  color: var(--charcoal);
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.appointment-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.appointment-closing {
  font-size: var(--text-sm);
  color: var(--mid);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.appointment-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.appointment-image .img-placeholder {
  min-height: 360px;
  border-radius: 8px;
}

.appointment-testimonial {
  background: var(--off-white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.appointment-testimonial .review-stars {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.appointment-testimonial blockquote {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-style: normal;
}

.appointment-testimonial cite {
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
}

.appointment-testimonial cite span {
  font-weight: 400;
  color: var(--mid);
}

/* ============================================
   SECTION 5: PRICING
   ============================================ */
.pricing-section {
  background: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card-featured {
  border-color: var(--dark);
  box-shadow: var(--shadow-lg);
}

.pricing-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.625rem 1rem;
  text-align: center;
}

.pricing-card-header {
  text-align: center;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--cream);
}

.pricing-card-price {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card-featured {
  padding-top: calc(var(--space-lg) + 3rem);
}

.pricing-card-featured .pricing-card-price {
  color: var(--dark);
}

.pricing-card-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid);
  margin-top: 0.5rem;
}

.pricing-card-list {
  flex: 1;
  margin-bottom: var(--space-md);
}

.pricing-card-list li {
  font-size: var(--text-sm);
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream);
}

.pricing-card-list li:last-child {
  border-bottom: none;
}

.pricing-card-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-finance-bar {
  background: var(--dark);
  padding: var(--space-lg);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.finance-bar-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.finance-bar-label {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
}

.finance-bar-detail {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
}

.finance-bar-detail strong {
  color: var(--white);
}

.finance-bar-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.finance-bar-phone {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.finance-bar-phone:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ============================================
   INVESTMENT VALUE
   ============================================ */
.investment-section {
  background: var(--dark);
}

.investment-layout {
  display: grid;
  gap: var(--space-xl);
}

.investment-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.investment-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.investment-accent {
  color: var(--gold);
}

.investment-content > p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.investment-stats {
  display: grid;
  gap: var(--space-md);
}

.investment-stat {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.investment-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.investment-stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Investment card */
.investment-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.investment-card-header {
  background: var(--off-white);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--cream);
}

.investment-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
}

.investment-card-body {
  padding: var(--space-lg);
}

.investment-calc {
  margin-bottom: var(--space-lg);
}

.investment-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.investment-calc-label {
  font-size: var(--text-sm);
  color: var(--mid);
}

.investment-calc-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
}

.investment-calc-add {
  color: var(--mid);
  font-weight: 500;
  font-size: var(--text-base);
}

.investment-calc-divider {
  height: 1px;
  background: var(--cream);
  margin: 0.25rem 0;
}

.investment-calc-result {
  padding-top: var(--space-sm);
}

.investment-calc-result .investment-calc-label {
  font-weight: 600;
  color: var(--dark);
}

.investment-calc-highlight {
  font-size: var(--text-2xl);
  color: var(--gold);
}

.investment-points {
  margin-bottom: var(--space-lg);
  display: grid;
  gap: 0.625rem;
}

.investment-points li {
  font-size: var(--text-sm);
  color: var(--charcoal);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.investment-points li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.investment-cta {
  width: 100%;
}

/* ============================================
   SECTION 6: TENEMENT SPECIALIST
   ============================================ */
.tenement-section {
  background: var(--off-white);
}

.tenement-layout {
  display: grid;
  gap: var(--space-lg);
}

.tenement-content h2 {
  margin-bottom: var(--space-md);
}

.tenement-content p {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.tenement-content p:last-of-type {
  margin-bottom: var(--space-md);
}

/* ============================================
   SECTION 7: QUALITY STANDARDS
   ============================================ */
.quality-section {
  background: var(--white);
}

.quality-grid {
  display: grid;
  gap: var(--space-md);
}

.quality-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.quality-icon {
  margin-bottom: var(--space-sm);
  color: var(--gold);
}

.quality-card h3 {
  margin-bottom: 0.5rem;
  font-size: var(--text-lg);
}

.quality-card p {
  color: var(--mid);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ============================================
   SECTION 8: COMPARISON
   ============================================ */
.comparison-section {
  background: var(--white);
}

.comparison-cards {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.comparison-col {
  border-radius: 8px;
  padding: var(--space-lg);
}

.comparison-col-us {
  background: var(--gold-light);
  border: 2px solid var(--gold);
}

.comparison-col-them {
  background: var(--off-white);
  border: 1px solid var(--cream);
}

.comparison-col-heading {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--warm-grey);
}

.comparison-col-us .comparison-col-heading {
  color: var(--gold);
  border-color: rgba(150, 121, 74, 0.25);
}

.comparison-col-them .comparison-col-heading {
  color: var(--mid);
}

.comparison-list {
  display: grid;
  gap: 0;
}

.comparison-list li {
  font-size: var(--text-sm);
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.5;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-check::before {
  content: '\2713';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--green-check);
}

.comparison-cross::before {
  content: '\2717';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--red-cross);
  opacity: 0.5;
}

.comparison-col-them .comparison-list li {
  color: var(--mid);
}

.comparison-cta {
  text-align: center;
}

/* ============================================
   SECTION 9: 3-STEP PROCESS
   ============================================ */
.process-section {
  background: var(--off-white);
}

.process-grid {
  display: grid;
  gap: var(--space-md);
}

.process-step {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--mid);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ============================================
   SECTION 10: REVIEWS
   ============================================ */
.reviews-section {
  background: var(--white);
}

.reviews-section h2 {
  margin-bottom: var(--space-xl);
}

.reviews-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: var(--space-lg);
}

.review-stars {
  color: var(--gold);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
}

.review-text {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  font-style: normal;
}

.review-author {
  display: block;
  font-style: normal;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
}

.review-area {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--mid);
  margin-top: 0.125rem;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 56px;
}

.trust-badge:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.trust-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge-icon {
  font-size: var(--text-xl);
  color: var(--gold);
}

.trust-badge-text {
  font-size: var(--text-sm);
  color: var(--charcoal);
}

.trust-badge-text strong {
  color: var(--dark);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--cream);
}

.faq-list details:first-child {
  border-top: 1px solid var(--cream);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

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

.faq-list summary::marker {
  display: none;
  content: "";
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--mid);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--cream);
  transition: all 0.3s ease;
}

.faq-list details[open] summary::after {
  content: "\2212";
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: rotate(180deg);
}

.faq-list summary:hover {
  color: var(--teal);
}

.faq-list summary:hover::after {
  border-color: var(--teal);
  color: var(--teal);
}

.faq-list details[open] summary:hover::after {
  color: var(--white);
}

.faq-list details p {
  padding: 0 0 var(--space-md) 0;
  color: var(--body);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 700px;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.faq-cta p {
  color: var(--mid);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

/* ============================================
   SECTION 11: AREAS COVERED
   ============================================ */
.areas-section {
  background: var(--off-white);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: var(--space-md);
}

.area-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
}

a.area-tag:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.areas-note {
  font-size: var(--text-sm);
  color: var(--mid);
}

.areas-note a {
  color: var(--dark);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

.areas-note a:hover {
  text-decoration-color: var(--dark);
}

/* ============================================
   SECTION 12: WHATSAPP STRIP
   ============================================ */
.whatsapp-strip {
  background: var(--dark);
  padding: var(--space-xl) var(--space-md);
}

.whatsapp-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.whatsapp-strip h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.whatsapp-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.btn-whatsapp-alt {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white);
  font-weight: 600;
}

.btn-whatsapp-alt:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SECTION 13: QUOTE FORM
   ============================================ */
.form-section {
  background: var(--off-white);
}

.form-layout {
  display: grid;
  gap: var(--space-xl);
}

.form-kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.form-intro h2 {
  margin-bottom: var(--space-sm);
}

.form-intro > p {
  color: var(--mid);
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.form-reassurance {
  display: grid;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.form-reassurance li {
  font-size: var(--text-sm);
  color: var(--charcoal);
  padding-left: 2rem;
  position: relative;
  line-height: 1.5;
}

.form-reassurance li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.form-intro-contact {
  padding-top: var(--space-md);
  border-top: 1px solid var(--warm-grey);
}

.form-intro-contact p {
  font-size: var(--text-sm);
  color: var(--mid);
}

.form-intro-contact a {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

.form-testimonial {
  margin-top: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: var(--space-md);
}

.form-testimonial .review-stars {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.form-testimonial blockquote {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-style: normal;
}

.form-testimonial cite {
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
}

.form-testimonial cite span {
  font-weight: 400;
  color: var(--mid);
}

.quote-form {
  display: grid;
  gap: var(--space-md);
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  display: grid;
  gap: 0.375rem;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark);
}

.form-optional {
  font-weight: 400;
  color: var(--mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0.8125rem 1rem;
  border: 1px solid var(--warm-grey);
  border-radius: 6px;
  background: var(--white);
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.form-group input.is-invalid,
.form-group select.is-invalid {
  border-color: var(--red-cross);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--red-cross);
  min-height: 0;
}

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-submit {
  width: 100%;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--mid);
  text-align: center;
}

.form-success {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: var(--space-md);
  text-align: center;
}

.form-success p {
  color: var(--charcoal);
  font-size: var(--text-sm);
}

/* ============================================
   SECTION 14: FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-2xl) var(--space-md) var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-address {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.footer-phone a,
.footer-email a {
  font-size: var(--text-sm);
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
  text-decoration-color: var(--gold);
}

.footer-phone {
  margin-bottom: 0.25rem;
}

.footer-email {
  margin-bottom: var(--space-sm);
}

.footer-hours {
  font-size: var(--text-sm);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  display: grid;
  gap: 0.5rem;
}

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   IMAGE DISPLAY
   ============================================ */
.hero-image-mobile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.hero-image-desktop img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.style-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.offer-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.tenement-image img,
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.appointment-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--off-white);
  border: 1px solid var(--cream);
  border-radius: 12px;
  padding: var(--space-lg);
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.contact-card-icon-wa {
  color: #25d366;
}

.contact-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.contact-card p {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-section {
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 640px;
  margin: 0 auto;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.thank-you-lead {
  font-size: var(--text-xl);
  color: var(--charcoal);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.thank-you-next {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.thank-you-next h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.thank-you-contact {
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
  color: var(--mid);
}

.thank-you-contact a {
  color: var(--dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 2px;
}

/* ============================================
   BLOG ARTICLES
   ============================================ */
.blog-article {
  padding: var(--space-2xl) var(--space-md);
}

.blog-article .container {
  max-width: 760px;
}

.blog-article h2 {
  font-size: var(--text-4xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.blog-article h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.blog-article p {
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.blog-article ul,
.blog-article ol {
  margin-bottom: var(--space-sm);
  padding-left: 1.5rem;
}

.blog-article li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.blog-article ul li {
  list-style: disc;
}

.blog-article ol li {
  list-style: decimal;
}

.blog-cta {
  text-align: center;
  padding: var(--space-lg) 0;
  margin: var(--space-lg) 0;
  border-top: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
}

.blog-cards {
  display: grid;
  gap: var(--space-md);
}

/* Article summary box */
.article-summary {
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  border-radius: 0 6px 6px 0;
}

.article-summary p {
  font-size: var(--text-base);
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}

.article-summary strong {
  color: var(--dark);
}

/* Table of contents */
.article-toc {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.article-toc-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.article-toc ol {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 0;
}

.article-toc li {
  counter-increment: toc;
  padding: 0;
}

.article-toc a {
  display: block;
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  color: var(--mid);
  text-decoration: none;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease;
  position: relative;
}

.article-toc li:last-child a {
  border-bottom: none;
}

.article-toc a::before {
  content: counter(toc) ".";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.article-toc a:hover {
  color: var(--dark);
}

/* Blog article image */
.blog-article-img {
  margin: var(--space-lg) 0;
  border-radius: 8px;
  overflow: hidden;
}

.blog-article-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Related articles */
.related-articles {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--rule);
}

.related-articles h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.related-articles ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.related-articles li {
  padding: 0;
}

.related-articles a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.related-articles a:hover {
  background: var(--teal-light);
  border-color: var(--gold);
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--dark);
  padding: 0;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-call,
.mobile-sticky-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}

.mobile-sticky-call {
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-sticky-quote {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.whatsapp-float-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.whatsapp-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

/* ============================================
   COUNTDOWN TIMER — Premium animated
   ============================================ */
.countdown-wrap {
  position: relative;
  margin-top: var(--space-xl);
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.4), rgba(176, 141, 87, 0.1), rgba(176, 141, 87, 0.4));
  background-size: 200% 200%;
  animation: borderShimmer 4s ease infinite;
}

@keyframes borderShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.countdown-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.15), transparent, rgba(176, 141, 87, 0.15));
  background-size: 200% 200%;
  animation: borderShimmer 4s ease infinite;
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

.countdown-inner {
  position: relative;
  z-index: 1;
  background: #111111;
  border-radius: 14px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: var(--space-lg);
}

.countdown-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.countdown-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

.countdown-boxes {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
  padding: 0 0.25rem;
  line-height: 1;
  align-self: flex-start;
  padding-top: 0.625rem;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  min-width: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.3), transparent);
}

.countdown-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: transform 0.15s ease;
}

.countdown-number.tick {
  animation: numberTick 0.3s ease;
}

@keyframes numberTick {
  0% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(-6px); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}

.countdown-unit {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.375rem;
}

.countdown-cta {
  display: inline-flex;
  width: auto;
  min-width: 260px;
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.countdown-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  60%, 100% { left: 100%; }
}

.countdown-cta:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 4px 24px rgba(176, 141, 87, 0.3);
  transform: translateY(-1px);
}

.countdown-slots {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

/* ============================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* Sticky CTA bar */
  .mobile-sticky-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-sticky-call,
  .mobile-sticky-quote {
    white-space: nowrap;
  }

  body {
    padding-bottom: 56px;
  }

  .whatsapp-float {
    bottom: 72px;
  }

  /* Reduce section padding — match hero */
  :root {
    --section-padding: var(--space-md) var(--space-sm);
  }

  /* Typography scale-down */
  h2 {
    font-size: var(--text-4xl);
  }

  /* Homepage hero */
  .hero {
    padding: var(--space-md) var(--space-sm);
  }

  .hero h1 {
    font-size: var(--text-4xl);
  }

  .hero-ctas .btn {
    width: 100%;
  }

  /* Inner page hero */
  .hero-inner {
    min-height: 50vh;
    padding: var(--space-2xl) var(--space-sm);
  }

  .hero-inner-content h1 {
    font-size: var(--text-4xl);
  }

  .hero-inner-ctas .btn {
    width: 100%;
  }

  /* Countdown */
  .countdown-inner {
    padding: var(--space-lg) var(--space-md);
  }

  .countdown-box {
    min-width: 60px;
    padding: 0.75rem 0.5rem;
  }

  .countdown-number {
    font-size: var(--text-3xl);
  }

  .countdown-sep {
    font-size: var(--text-xl);
    padding: 0 0.125rem;
    padding-top: 0.375rem;
  }

  .countdown-cta {
    width: 100%;
    min-width: 0;
  }

  /* Offer section */
  .offer-section {
    padding: var(--space-md) var(--space-sm);
  }

  .offer-section h2 {
    font-size: var(--text-3xl);
  }

  .offer-sub {
    font-size: var(--text-base);
    margin-bottom: var(--space-lg);
  }

  .offer-images {
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
  }

  .offer-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
  }

  .offer-image-badge {
    padding: 0.75rem 1rem;
  }

  .offer-badge-value {
    font-size: var(--text-lg);
  }

  .offer-badge-label {
    font-size: var(--text-xs);
  }

  .offer-perks {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
  }

  .offer-perk {
    width: 100%;
  }

  .countdown {
    margin-bottom: var(--space-md);
  }

  /* Mid-page form */
  .midform-section {
    padding: var(--space-lg) var(--space-sm);
  }

  .midform-form-header {
    padding: var(--space-md);
  }

  .midform-form {
    padding: var(--space-md);
  }

  /* Featured products */
  .featured-section {
    padding: var(--space-md) var(--space-sm);
  }

  .featured-header {
    margin-bottom: var(--space-lg);
  }

  .featured-card-body {
    padding: var(--space-md);
  }

  .featured-grid {
    gap: var(--space-md);
  }

  /* Gallery */
  .gallery-grid {
    gap: 0.5rem;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }

  /* Blog articles */
  .blog-article h2 {
    font-size: var(--text-3xl);
  }

  .blog-article {
    padding: var(--space-md) var(--space-sm);
  }

  /* Pricing cards */
  .pricing-card {
    padding: var(--space-md);
  }

  .pricing-card-featured {
    padding-top: calc(var(--space-md) + 3rem);
  }

  .pricing-finance-bar {
    padding: var(--space-md);
  }

  .finance-bar-label {
    font-size: var(--text-xl);
  }

  /* Form */
  .quote-form {
    padding: var(--space-md);
  }

  /* Contact cards — prevent email overflow */
  .contact-card-value {
    word-break: break-all;
    font-size: var(--text-base);
  }

  /* Form rows — stack on mobile */
  .form-row {
    display: grid;
    gap: var(--space-md);
  }

  /* Footer */
  .site-footer {
    padding: var(--space-xl) var(--space-sm) var(--space-md);
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (max-width: 400px)
   ============================================ */
@media (max-width: 400px) {
  .hero h1,
  .hero-inner-content h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  .countdown-box {
    min-width: 52px;
    padding: 0.5rem 0.375rem;
  }

  .countdown-number {
    font-size: var(--text-2xl);
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .offer-image-badge {
    padding: 0.5rem 0.75rem;
  }

  .nav-logo {
    font-size: var(--text-base);
  }
}

/* ============================================
   RESPONSIVE: TABLET (768px)
   ============================================ */
@media (min-width: 768px) {
  .hero-inner-content h1 {
    font-size: var(--text-6xl);
  }

  .hero-inner-ctas {
    flex-direction: row;
  }

  .hero h1 {
    font-size: var(--text-6xl);
  }

  .hero-ctas {
    flex-direction: row;
  }

  .hero-ctas .btn {
    width: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .style-card {
    flex: 0 0 calc(33.333% - 1rem);
  }

  .style-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .included-img {
    width: 88px;
    height: 88px;
  }

  .offer-img {
    min-height: 300px;
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .about-image .img-placeholder {
    min-height: 420px;
  }

  .appointment-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .appointment-ctas {
    flex-direction: row;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item {
    aspect-ratio: 3 / 4;
  }

  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-finance-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .investment-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .investment-stats {
    grid-template-columns: 1fr 1fr;
  }

  .investment-cta {
    width: auto;
  }

  .tenement-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .quality-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .midform-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .form-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-cards {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-finance-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .finance-bar-ctas {
    flex-direction: row;
    width: auto;
  }

  .finance-bar-content {
    gap: 0.125rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE: DESKTOP (1024px)
   ============================================ */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-ctas {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .hero {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .hero h1 {
    font-size: var(--text-6xl);
  }

  .hero-image-mobile {
    display: none;
  }

  .hero-image-desktop {
    display: block;
  }

  .hero-image-desktop .img-placeholder,
  .tenement-image .img-placeholder {
    min-height: 420px;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   CASE STUDIES
   ============================================ */

/* --- Index page hero --- */
.cs-hero {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.cs-hero h1 {
  font-size: var(--text-5xl);
  margin-bottom: 0;
}

.cs-hero .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* --- Index page card grid --- */
.cs-index-section {
  padding-top: 0;
}

.cs-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.cs-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.cs-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.cs-card-image {
  overflow: hidden;
}

.cs-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 0.4s ease;
}

.cs-card:hover .cs-card-image img {
  transform: scale(1.03);
}

.cs-card-body {
  padding: var(--space-md);
}

.cs-card-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.cs-card-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.cs-card-summary {
  font-size: var(--text-base);
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.cs-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: var(--space-sm);
}

.cs-card-tags li {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--charcoal);
  background: var(--cream);
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
}

.cs-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s ease;
}

.cs-card:hover .cs-card-link {
  color: var(--gold);
}

/* --- Single case study page --- */

/* Breadcrumb */
.cs-breadcrumb {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--cream);
}

.cs-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--mid);
}

.cs-breadcrumb a {
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cs-breadcrumb a:hover {
  color: var(--dark);
}

.cs-breadcrumb span[aria-current] {
  color: var(--dark);
  font-weight: 500;
}

/* Single page wrapper */
.cs-single {
  padding-top: var(--space-xl);
}

.cs-single .cs-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: 0.75rem;
}

/* Shared components (header, gallery, details, etc.) */
.cs-header {
  margin-bottom: var(--space-lg);
}

.cs-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

.cs-header h2 {
  font-size: var(--text-4xl);
  margin-bottom: 0.75rem;
}

.cs-tagline {
  font-size: var(--text-lg);
  color: var(--mid);
  max-width: 600px;
}

/* Image Gallery */
.cs-gallery {
  margin-bottom: var(--space-lg);
}

.cs-gallery-main {
  margin-bottom: var(--space-sm);
  border-radius: 6px;
  overflow: hidden;
}

.cs-gallery-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  max-height: 600px;
}

.cs-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.cs-gallery-thumbs img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cs-gallery-thumbs img:hover {
  opacity: 0.85;
}

/* Extra gallery images */
.cs-gallery-extra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.cs-gallery-extra img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
}

/* Project Details — 3-card grid */
.cs-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cs-details-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 6px;
  padding: var(--space-md);
}

.cs-details-card h2,
.cs-details-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream);
}

/* Spec list */
.cs-specs {
  list-style: none;
}

.cs-specs li {
  padding: 0.4rem 0;
  font-size: var(--text-base);
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream);
}

.cs-specs li:last-child {
  border-bottom: none;
}

.cs-specs li strong {
  color: var(--dark);
  font-weight: 600;
  min-width: 90px;
  display: inline-block;
}

/* Bullet lists */
.cs-bullet {
  list-style: none;
}

.cs-bullet li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.4rem;
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.6;
}

.cs-bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm-grey);
}

.cs-bullet-check li::before {
  content: '✓';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--green-check);
  font-weight: 700;
  font-size: var(--text-sm);
  top: 0.4rem;
}

/* Testimonial */
.cs-testimonial {
  background: var(--cream);
  border-radius: 6px;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.cs-testimonial .review-stars {
  color: var(--gold);
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
}

.cs-testimonial blockquote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.cs-testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--dark);
}

.cs-testimonial cite span {
  font-weight: 400;
  color: var(--mid);
}

/* CTA buttons */
.cs-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Related links */
.cs-related {
  border-top: 1px solid var(--cream);
  padding-top: var(--space-lg);
}

.cs-related h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.cs-related ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cs-related ul li a {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--charcoal);
  background: var(--cream);
  padding: 0.4rem 0.875rem;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.cs-related ul li a:hover {
  background: var(--dark);
  color: var(--white);
}

/* Bottom CTA */
.cs-bottom-cta {
  text-align: center;
  background: var(--dark);
  color: var(--white);
}

.cs-bottom-cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cs-bottom-cta p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.cs-bottom-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cs-bottom-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cs-bottom-cta .btn-outline:hover {
  border-color: var(--white);
}

/* ---- Case studies tablet (768px) ---- */
@media (min-width: 768px) {
  .cs-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-details {
    grid-template-columns: 1fr 1fr;
  }

  .cs-details-card:first-child {
    grid-column: 1 / -1;
  }

  .cs-cta {
    flex-direction: row;
  }

  .cs-bottom-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cs-testimonial {
    padding: var(--space-lg);
  }
}

/* ---- Case studies desktop (1024px) ---- */
@media (min-width: 1024px) {
  .cs-hero h1 {
    font-size: var(--text-6xl);
  }

  .cs-single .cs-header h1 {
    font-size: var(--text-5xl);
  }

  .cs-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cs-details {
    grid-template-columns: repeat(3, 1fr);
  }

  .cs-details-card:first-child {
    grid-column: auto;
  }

  .cs-gallery-main img {
    aspect-ratio: 3 / 4;
    max-height: 700px;
  }
}

/* ============================================
   RESPONSIVE: WIDE (1280px)
   ============================================ */
@media (min-width: 1280px) {
  .nav-links {
    gap: var(--space-lg);
  }
}
