/* Hanaeni Space - Design System (Figma: Plus Jakarta Sans + Allura) */
/* Fonts loaded async from index.html for faster first paint */

:root {
  /* Primary */
  --primary-black: #1A1A1A;   /* Headings */
  --text-dark: #333333;       /* Body text */
  --text-light: #666666;      /* Secondary text */

  /* Accent */
  --accent-gold: #B89B6A;     /* Buttons, links */
  --accent-dark: #A48756;     /* Hover states */

  /* Neutral */
  --white: #FFFFFF;
  --off-white: #F9F8F6;
  --light-gray: #F2F2F2;
  --border-gray: #E5E5E5;
  --divider-gray: #D9D9D9;
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --font-style: 'Allura', cursive;
  --font-body: var(--font-primary);
  --font-heading: var(--font-primary);
  --font-script: var(--font-style);
  --tracking-primary: -0.03em;
  --tracking-style: -0.04em;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
  --transition: 0.3s ease;
  --content-max: 1280px;
  --section-gutter: 24px;
  --header-height: 76px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: var(--tracking-primary);
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-black);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: var(--tracking-primary);
  line-height: 1.25;
}

p, li, label, input, select, textarea, button {
  color: inherit;
}

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

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  margin: 0;
  padding: 0 var(--section-gutter);
}

.script-text {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: var(--tracking-style);
  color: var(--accent-gold);
  line-height: 1.1;
}

/* Section/page heading accents: bold primary font (last highlight word) */
h1 .script-text:not(.hero-script),
h2 .script-text,
h3 .script-text {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--tracking-primary);
  color: var(--accent-gold);
  font-size: inherit;
  line-height: inherit;
}

.page-hero h1 .script-text {
  color: var(--accent-gold);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--tracking-primary);
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--primary-black);
  border-color: var(--accent-gold);
}

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

.btn-dark {
  background: var(--primary-black);
  color: var(--white);
  border-color: var(--primary-black);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-black);
  border-color: var(--primary-black);
}

.btn-outline:hover {
  background: var(--primary-black);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-black);
}

.btn-white {
  background: var(--white);
  color: var(--primary-black);
  border-color: var(--border-gray);
}

.btn-white:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--primary-black);
  z-index: 1000;
}

.site-header--hero {
  border-radius: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--white);
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: var(--tracking-primary);
  opacity: 0.9;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-gold);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: var(--tracking-primary);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 14px;
}

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

/* Cities mega menu */
.nav-dropdown--cities .nav-dropdown-toggle.active,
.nav-dropdown--cities:hover .nav-dropdown-toggle,
.nav-dropdown--cities.open .nav-dropdown-toggle {
  color: var(--accent-gold);
}

.cities-mega-menu {
  left: 50%;
  transform: translateX(-50%);
  min-width: 0;
  width: min(560px, calc(100vw - 48px));
  padding: 20px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  z-index: 1100;
}

.site-header,
.hero-shell,
.header-inner {
  overflow: visible;
}

.nav-dropdown--cities:hover .cities-mega-menu,
.nav-dropdown--cities.open .cities-mega-menu {
  transform: translateX(-50%);
}

.cities-mega-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  padding: 0 4px;
}

.cities-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.city-mega-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--primary-black);
  transition: background var(--transition);
}

.city-mega-link:hover {
  background: var(--off-white);
  color: var(--primary-black);
}

.city-mega-link.is-active {
  background: rgba(184, 155, 106, 0.1);
}

.city-mega-link.is-active .city-mega-name {
  color: var(--accent-dark);
}

.city-mega-thumb {
  display: block;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-gray);
}

.city-mega-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.city-mega-link:hover .city-mega-thumb img {
  transform: scale(1.05);
}

.city-mega-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-black);
  text-align: center;
  line-height: 1.3;
}

.header-cta {
  flex-shrink: 0;
}

.main-nav-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero */
.hero-wrapper {
  padding: 0 var(--section-gutter) 40px var(--section-gutter);
  background: var(--off-white);
}

.hero-shell {
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  padding-top: var(--header-height);
}

.hero-shell .header-inner,
.hero-shell .hero-content {
  max-width: none;
  margin: 0;
}

.hero-shell .header-inner {
  padding: 16px 32px;
}

.hero-section {
  position: relative;
  overflow: visible;
  min-height: clamp(520px, 62vh, 640px);
  display: flex;
  align-items: flex-end;
  background-image: url('../img/optimized/img-banner_image-jpg.jpg');
  background-image: image-set(
    url('../img/optimized/img-banner_image-jpg.webp') type('image/webp'),
    url('../img/optimized/img-banner_image-jpg.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center;
}

/* Hero banner — pendulum offer (text on bob) */
.hero-offer-pendulum {
  position: absolute;
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

.hero-offer-pendulum__claim {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.pendulum-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pendulum-offer__mount {
  width: 48px;
  height: 12px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #d4b88a 0%, var(--accent-gold) 50%, var(--accent-dark) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.pendulum-offer__mount::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.pendulum-offer__swing {
  transform-origin: top center;
  animation: pendulum-swing 3s ease-in-out infinite alternate;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.pendulum-offer__rod {
  width: 3px;
  height: 72px;
  background: linear-gradient(90deg, #8f7348 0%, #e8d5b5 45%, #8f7348 100%);
  border-radius: 2px;
  box-shadow: 1px 0 4px rgba(0, 0, 0, 0.2);
}

.pendulum-offer__bob {
  margin-top: -2px;
  min-width: 200px;
  padding: 18px 22px 16px;
  text-align: center;
  background: linear-gradient(145deg, #fffdf9 0%, #f7f0e4 55%, #ebe0d0 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 20px 20px 28px 28px;
  box-shadow:
    0 12px 28px rgba(26, 26, 26, 0.22),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset 0 -3px 8px rgba(184, 155, 106, 0.15);
  position: relative;
}

.pendulum-offer__bob::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0ddb8 0%, var(--accent-gold) 60%, #8f7348 100%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pendulum-offer__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary-black);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.pendulum-offer__discount {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.pendulum-offer__title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 8px;
}

.pendulum-offer__expiry {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(184, 155, 106, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
}

@media (prefers-reduced-motion: reduce) {
  .pendulum-offer__swing {
    animation: none;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 75% at 12% 100%, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 42%, transparent 72%),
    radial-gradient(ellipse 55% 90% at 88% 55%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 70%),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.42) 38%,
      rgba(0, 0, 0, 0.12) 68%,
      rgba(0, 0, 0, 0.04) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: end;
  padding: 80px 48px 56px;
  width: 100%;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: var(--tracking-primary);
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.65),
    0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-line {
  display: block;
}

.hero-text h1 .script-text.hero-script {
  font-family: var(--font-script);
  font-size: clamp(56px, 7vw, 88px);
  color: var(--white);
  display: inline;
  letter-spacing: var(--tracking-style);
  font-weight: 400;
  vertical-align: baseline;
  line-height: 1.1;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.65),
    0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-text p,
.hero-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  max-width: 480px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.hero-text h1 .hero-script {
  color: var(--white);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  min-height: 280px;
}

.hero-slide {
  display: none;
  animation: heroFadeIn 0.6s ease;
}

.hero-slide.is-active {
  display: block;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-features-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: var(--tracking-primary);
}

.hero-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.hero-features li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-features li strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: var(--tracking-primary);
}

.hero-features li span {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: var(--tracking-primary);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-slider-dot.is-active,
.hero-slider-dot:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Lead Form */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.lead-form-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 24px;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: var(--tracking-primary);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.form-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--primary-black);
  padding: calc(80px + var(--header-height)) 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  font-weight: 700;
  letter-spacing: var(--tracking-primary);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: var(--tracking-primary);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

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

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* About Cards Section */
.about-cards {
  padding: 72px 0;
  background: var(--off-white);
}

.about-cards-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.45fr);
  gap: 20px;
  align-items: stretch;
}

.gold-card {
  background: var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.gold-card--stats {
  background: linear-gradient(145deg, #9a7d52 0%, #b89b6a 48%, #d4bc94 100%);
  justify-content: center;
  align-items: center;
  padding: 40px 32px;
}

.gold-card-stats {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.gold-card p {
  color: var(--primary-black);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 30ch;
}

.gold-card .btn-outline {
  align-self: flex-start;
  border-color: var(--primary-black);
  color: var(--primary-black);
  font-size: 14px;
  padding: 12px 24px;
}

.gold-card .btn-outline:hover {
  background: var(--primary-black);
  color: var(--white);
}

.stat-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.gold-card--stats .stat-block {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  width: 100%;
  margin: 0;
  margin-top: 0;
}

.gold-card--stats .stat-icon {
  width: 40px;
  height: 40px;
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
}

.stat-block__copy {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--white);
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: var(--tracking-primary);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: var(--tracking-primary);
  line-height: 1.2;
}

.cream-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  min-height: 420px;
}

.cream-card-content {
  padding: 44px 32px 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cream-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 22px;
  line-height: 1.15;
}

.cream-card h2 .about-accent {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
}

.cream-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.cream-card p:last-child {
  margin-bottom: 0;
}

.cream-card-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.cream-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cream-card-image::before {
  content: '';
  position: absolute;
  left: -88px;
  top: 50%;
  transform: translateY(-50%);
  width: 176px;
  height: 118%;
  background: var(--off-white);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Section Titles */
.section {
  padding: 64px 0;
}

@media (min-width: 769px) {
  .catalogue-section,
  .recent-projects-section,
  .testimonials-section,
  .move-in-section,
  .service-offer-section,
  .brochure-download-section,
  .faq-section,
  .who-are-we-section,
  .trust-bar-section,
  .journey-cta-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 12px;
  letter-spacing: var(--tracking-primary);
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  letter-spacing: var(--tracking-primary);
}

.title-split-mobile__line {
  display: inline;
}

.section-header--left {
  text-align: left;
  margin-bottom: 0;
}

.section-header--left p {
  margin-left: 0;
  margin-right: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
}

.service-card-body a {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Why Choose Us */
.why-section {
  background: var(--primary-black);
  color: var(--white);
}

.why-section .section-header h2 {
  color: var(--white);
}

.why-section .section-header p {
  color: rgba(255,255,255,0.7);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.feature-item:hover {
  background: rgba(184, 155, 106, 0.15);
  border-color: var(--accent-gold);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent-gold);
}

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Recent Projects - Horizontal Scroll */
.recent-projects-section {
  background: var(--off-white);
  overflow: hidden;
}

.recent-projects-section .section-header-row {
  margin-bottom: 32px;
}

.recent-projects-section .section-header-row--center {
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.recent-projects-section .recent-projects-header {
  text-align: center;
  margin-bottom: 0;
}

.recent-projects-section .recent-projects-header h2 {
  margin-bottom: 0;
}

.recent-projects-section .recent-projects-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-controls--center {
  justify-content: center;
  margin-bottom: 40px;
}

.recent-projects-scroll-outer {
  width: 100%;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.scroll-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--primary-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.scroll-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.recent-projects-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  padding: 0 var(--section-gutter) 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.recent-projects-scroll::-webkit-scrollbar {
  display: none;
}

.recent-projects-scroll.is-dragging {
  cursor: grabbing;
}

.recent-project-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  transition: all var(--transition);
}

.recent-project-card--portrait {
  flex: 0 0 220px;
  border: none;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4.2;
  height: auto;
}

.recent-project-card--portrait picture {
  display: block;
  width: 100%;
  height: 100%;
}

.recent-project-card--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  transition: transform 0.5s ease;
}

.recent-project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.recent-project-card--portrait:hover img {
  transform: scale(1.04);
}

.recent-project-image {
  height: 240px;
  overflow: hidden;
}

.recent-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none;
  -webkit-user-drag: none;
}

.recent-project-card:hover .recent-project-image img {
  transform: scale(1.06);
}

.recent-project-info {
  padding: 20px 24px;
}

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-gold);
  background: rgba(184, 155, 106, 0.12);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.recent-project-info h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 4px;
}

.recent-project-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* Quick Quote */
.quick-quote-section {
  background: var(--primary-black);
  padding: 64px 0;
}

.quick-quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.quick-quote-text {
  flex: 1;
  max-width: 420px;
}

.quick-quote-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: var(--tracking-primary);
}

.quick-quote-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.quick-quote-form {
  flex: 1.4;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-quote-form .form-group {
  flex: 1;
  min-width: 160px;
  margin-bottom: 0;
}

.quick-quote-form input,
.quick-quote-form select {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.quick-quote-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.quick-quote-form select {
  color: rgba(255, 255, 255, 0.7);
}

.quick-quote-form select option {
  color: var(--text-dark);
  background: var(--white);
}

.quick-quote-form .btn {
  flex-shrink: 0;
  min-width: 150px;
}

/* Portfolio (legacy grid - used on other pages) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
}

/* Partners */
.partners-section {
  background: var(--white);
  padding: 56px 0 24px;
}

.partners-scroll {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 24px;
  padding: 8px 0 16px;
}

@media (max-width: 1024px) {
  .partners-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .partners-scroll::-webkit-scrollbar {
    display: none;
  }
}

.partner-item {
  flex: 0 0 140px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.partner-icon {
  width: 48px;
  height: 48px;
  color: var(--text-light);
}

.partner-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.partner-tagline {
  font-size: 10px;
  color: var(--divider-gray);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Dark CTA Banner */
.cta-contained-section {
  padding: 0 0 56px;
  background: var(--off-white);
}

.cta-contained-section + .section {
  padding-top: 0;
}

.partners-section + .cta-contained-section {
  padding-top: 8px;
}

.dark-cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 48px 0;
}

.dark-cta-banner--contained {
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 40px 48px;
  min-height: 148px;
  background-image: url('../img/optimized/img-page-assets-photos-cta-banner-jpg.jpg');
  background-image: image-set(
    url('../img/optimized/img-page-assets-photos-cta-banner-jpg.webp') type('image/webp'),
    url('../img/optimized/img-page-assets-photos-cta-banner-jpg.jpg') type('image/jpeg')
  );
}

.dark-cta-banner--contained .dark-cta-inner {
  padding: 0;
}

.dark-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 26, 26, 0.88) 0%,
    rgba(26, 26, 26, 0.72) 45%,
    rgba(26, 26, 26, 0.45) 100%
  );
}

.dark-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
}

.dark-cta-inner p {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: var(--tracking-primary);
  max-width: 68%;
  flex: 1;
  margin: 0;
}

.dark-cta-inner .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.cta-rotating-text {
  transition: opacity 0.4s ease;
}

.cta-rotating-text.is-fading {
  opacity: 0;
}

/* Office map */
.office-map-section {
  background: var(--off-white);
}

.office-map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
  background: var(--white);
}

.office-map-embed iframe {
  display: block;
  width: 100%;
  height: min(420px, 62vw);
  min-height: 280px;
  border: 0;
}

.office-map-embed--contact {
  margin-top: 40px;
}

.office-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-black);
  background: var(--white);
  border-top: 1px solid var(--border-gray);
  width: 100%;
  justify-content: center;
  transition: color var(--transition), background var(--transition);
}

.office-map-link:hover {
  color: var(--accent-gold);
  background: var(--off-white);
}

/* Why Choose Hanaeni */
.why-hanaeni-section {
  background: var(--off-white);
  padding-top: 64px;
}

.why-hanaeni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-hanaeni-item {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-hanaeni-item:hover {
  border-color: rgba(184, 155, 106, 0.45);
  box-shadow: var(--shadow-lg);
}

.why-hanaeni-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.why-hanaeni-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 12px;
  letter-spacing: var(--tracking-primary);
  line-height: 1.25;
}

.why-hanaeni-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.why-hanaeni-item h3 a:hover {
  color: var(--accent-gold);
}

.why-hanaeni-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  letter-spacing: var(--tracking-primary);
  margin: 0;
}

.why-hanaeni-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.why-hanaeni-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.why-hanaeni-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.why-hanaeni-card p {
  font-size: 14px;
  line-height: 1.7;
}

.why-card-light {
  background: var(--white);
  border: 1px solid var(--border-gray);
  min-height: 200px;
}

.why-card-light h3 {
  color: var(--primary-black);
}

.why-card-light p {
  color: var(--text-light);
}

.why-card-gold {
  background: linear-gradient(160deg, var(--accent-gold) 0%, var(--accent-dark) 100%);
  border: none;
}

.why-card-gold h3,
.why-card-gold p {
  color: var(--white);
}

.why-card-tall {
  grid-column: 3;
  grid-row: 1 / 3;
  min-height: 100%;
}

.why-card-image {
  grid-column: 1 / 3;
  grid-row: 2;
  padding: 0;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: none;
}

.why-card-image.why-card-tall {
  grid-column: 3;
  grid-row: 1 / 3;
  min-height: 100%;
}

.why-card-image.why-card-tall .why-card-image-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.35) 0%,
    rgba(26, 26, 26, 0.55) 45%,
    rgba(26, 26, 26, 0.72) 100%
  );
}

.why-card-image.why-card-tall .why-card-image-overlay p {
  max-width: 280px;
}

.why-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85), rgba(26,26,26,0.35));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px;
}

.why-card-image-overlay h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card-image-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  max-width: 480px;
}

/* Quote Calculator */
.quote-calculator-section {
  background: var(--light-gray);
  padding: 80px 0 0;
}

.quote-cta-wrap {
  padding-bottom: 80px;
  margin-top: 8px;
}

.bhk-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.bhk-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.bhk-card strong {
  display: block;
  font-size: 16px;
  color: var(--primary-black);
  margin-bottom: 4px;
}

.bhk-card span {
  font-size: 12px;
  color: var(--text-light);
}

.bhk-card:hover,
.bhk-card.active {
  border-color: var(--accent-gold);
  background: rgba(184, 155, 106, 0.08);
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  border-color: rgba(184, 155, 106, 0.45);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.pricing-card > p:not(.pricing-amount) {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  width: 100%;
  text-align: left;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--border-gray);
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 13px;
}

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

.pricing-card .btn {
  margin-top: auto;
  min-width: 160px;
}

.pricing-card-popular {
  border-color: var(--accent-gold);
  border-width: 2px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(184, 155, 106, 0.1) 0%, var(--white) 42%);
  padding-top: 40px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--primary-black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-tiers--packages {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  gap: 24px;
  align-items: stretch;
}

.quote-calculator-section .dark-cta-banner--contained {
  margin-top: 0;
}

/* Catalogue Services */
.catalogue-section {
  background: var(--white);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.catalogue-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

.catalogue-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow);
}

.catalogue-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

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

.catalogue-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-black);
  line-height: 1.25;
  letter-spacing: var(--tracking-primary);
  flex: 1;
}

@media (min-width: 769px) {
  .catalogue-card .catalogue-icon {
    width: 48px;
    height: 48px;
  }
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  transition: color var(--transition);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.cta-contained-section--faq {
  padding-top: 0;
  background: var(--white);
}

/* Download Brochure */
.brochure-download-section {
  background: var(--off-white);
  padding-top: 0;
}

.brochure-card {
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(184, 155, 106, 0.45);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.brochure-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light-gray);
}

.brochure-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.brochure-card__body {
  padding: 28px 28px 32px;
  background: linear-gradient(180deg, rgba(184, 155, 106, 0.12) 0%, var(--off-white) 55%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.brochure-card__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4.5vw, 30px);
  font-weight: 700;
  color: var(--primary-black);
  line-height: 1.2;
  margin: 0;
}

.brochure-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.brochure-card__btn {
  width: 100%;
  margin-top: 4px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brochure-card__btn-icon {
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .brochure-download-section {
    padding-left: 0;
    padding-right: 0;
  }

  .brochure-download-section .container {
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .brochure-card {
    max-width: none;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: stretch;
    min-height: 360px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .brochure-card__image {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .brochure-card__body {
    padding: 56px 64px;
    justify-content: center;
    gap: 22px;
    background: linear-gradient(180deg, rgba(184, 155, 106, 0.14) 0%, var(--off-white) 60%);
  }

  .brochure-card__title {
    font-size: clamp(34px, 3vw, 46px);
  }

  .brochure-card__text {
    font-size: 18px;
    line-height: 1.75;
    max-width: 560px;
  }

  .brochure-card__btn {
    width: auto;
    min-width: 260px;
    margin-top: 8px;
    padding: 18px 40px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .brochure-card__body {
    align-items: center;
    text-align: center;
    padding: 24px 20px 28px;
  }

  .brochure-card__title.title-split-mobile {
    align-items: center;
  }

  .brochure-card__btn {
    margin-top: auto;
    max-width: 100%;
  }
}

/* Testimonials Scroll */
.testimonials-section {
  background: var(--off-white);
  overflow: hidden;
}

.testimonials-section .section-header {
  margin-bottom: 40px;
}

.testimonials-scroll-outer {
  width: 100%;
}

.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  padding: 0 var(--section-gutter) 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonials-scroll.is-dragging {
  cursor: grabbing;
}

.testimonials-scroll .testimonial-card {
  flex: 0 0 340px;
}

.testimonials-scroll-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.scroll-progress-track {
  flex: 1;
  height: 3px;
  background: var(--divider-gray);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.scroll-progress-fill {
  height: 100%;
  width: 20%;
  background: var(--accent-gold);
  border-radius: 10px;
  transition: width 0.1s linear;
}

.scroll-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.scroll-btn--sm img {
  width: 18px;
  height: 18px;
}

.scroll-btn--sm {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-gray);
}

.testimonial-card .stars {
  color: var(--accent-gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.author-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-black);
}

.author-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 48px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid var(--border-gray);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.office-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}

.office-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow);
}

.office-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 8px;
}

.office-card .badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.office-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* Contact Page */
.contact-page {
  background: var(--off-white);
  overflow-x: hidden;
}

.contact-page .container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.contact-page .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-page .section-header p {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

.contact-page-hero {
  margin-bottom: 0;
}

.contact-intro-section {
  padding-top: 72px;
  padding-bottom: 0;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.contact-channel-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-channel-card:hover {
  border-color: rgba(184, 155, 106, 0.45);
  box-shadow: var(--shadow-lg);
}

.contact-channel-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(184, 155, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.contact-channel-icon svg {
  width: 24px;
  height: 24px;
}

.contact-channel-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 10px;
  letter-spacing: var(--tracking-primary);
}

.contact-channel-card p,
.contact-channel-card a {
  font-size: 15px;
  color: var(--primary-black);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: var(--tracking-primary);
}

.contact-channel-card a:hover {
  color: var(--accent-gold);
}

.contact-channel-meta {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

.contact-head-office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
  min-height: 280px;
}

.contact-head-office__image {
  min-height: 280px;
  background: var(--off-white);
}

.contact-head-office__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-head-office__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.contact-head-office__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-black);
  margin: 0 0 16px;
  letter-spacing: var(--tracking-primary);
  line-height: 1.2;
}

.contact-head-office__label svg {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-head-office__body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  letter-spacing: var(--tracking-primary);
  margin: 0;
  max-width: none;
}

.contact-estimate-section {
  padding-top: 72px;
  padding-bottom: 0;
}

.contact-estimate-split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.15fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
  min-height: 480px;
}

.contact-estimate-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.contact-estimate-widget {
  display: grid;
  grid-template-columns: 168px 1fr;
  background: linear-gradient(135deg, #1a1a1a 0%, #242018 100%);
  min-height: 480px;
}

.contact-estimate-widget__steps {
  padding: 28px 20px 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-estimate-widget__steps h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}

.contact-estimate-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-estimate-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}

.contact-estimate-step.is-active {
  color: var(--white);
}

.contact-estimate-step.is-active strong {
  color: var(--accent-gold);
}

.contact-estimate-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.contact-estimate-step.is-active .contact-estimate-step-num {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.contact-estimate-widget__panel {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
}

.contact-estimate-widget__panel h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: var(--tracking-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}

.contact-estimate-widget__panel h3 .script-text {
  color: var(--accent-gold);
}

.contact-estimate-widget__panel > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  line-height: 1.5;
}

.contact-estimate-widget .hero-bhk-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.contact-estimate-widget .hero-bhk-btn--dark {
  min-height: 76px;
  padding: 12px 6px 10px;
}

.contact-estimate-widget .hero-bhk-btn--dark span {
  font-size: 11px;
}

.contact-property-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.contact-property-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.contact-property-btn:hover {
  border-color: rgba(184, 155, 106, 0.45);
}

.contact-property-btn.active {
  background: var(--white);
  border-color: var(--accent-gold);
  color: var(--primary-black);
}

.contact-estimate-widget .btn-get-estimate {
  width: 100%;
  margin-top: auto;
}

.contact-page .service-offer-section {
  padding-top: 72px;
}

.contact-bottom-section {
  padding-top: 72px;
  padding-bottom: 80px;
}

.contact-bottom-split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(380px, 1.2fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.contact-bottom-text {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}

.contact-bottom-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--primary-black);
  letter-spacing: var(--tracking-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 400px;
}

.contact-bottom-text .btn-gold {
  width: fit-content;
}

.contact-bottom-split .contact-estimate-widget {
  min-height: 420px;
  border-radius: 0;
}

.contact-page .cta-contained-section--pre-testimonials {
  padding-top: 0;
}

.contact-page .trust-bar-section {
  background: var(--white);
}

/* City Page */
.city-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(26,26,26,0.5));
}

.city-hero .container {
  position: relative;
  z-index: 2;
}

.city-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}

.city-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 560px;
}

/* About Page */
.about-page {
  background: var(--off-white);
  overflow-x: hidden;
}

.about-page .container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.about-page-hero {
  position: relative;
  margin: 0 var(--section-gutter);
  min-height: clamp(420px, 52vh, 520px);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
}

.about-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 26, 26, 0.35) 0%,
    rgba(26, 26, 26, 0.55) 45%,
    rgba(26, 26, 26, 0.82) 100%
  );
}

.about-page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: inherit;
  padding: calc(var(--header-height) + 28px) 0 48px;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: var(--tracking-primary);
  color: rgba(255, 255, 255, 0.85);
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.about-breadcrumb a:hover {
  color: var(--white);
}

.about-breadcrumb__current {
  color: var(--accent-gold);
  font-weight: 600;
}

.about-page-hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.about-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: var(--tracking-primary);
  max-width: 520px;
}

.about-page-hero__line {
  display: block;
}

.about-hero-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: var(--tracking-style);
  color: var(--white);
  line-height: 1;
}

.about-page-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: var(--tracking-primary);
  max-width: 380px;
  margin: 0;
}

/* Legal Pages */
.legal-content-section {
  padding-top: 48px;
  padding-bottom: 80px;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.legal-block + .legal-block {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 16px;
  letter-spacing: var(--tracking-primary);
}

.legal-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 12px 0 16px;
  padding-left: 1.25rem;
}

.legal-block li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 8px;
}

.legal-block li:last-child {
  margin-bottom: 0;
}

.legal-contact {
  font-style: normal;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
}

.legal-contact a {
  color: var(--accent-dark);
}

.legal-contact a:hover {
  color: var(--primary-black);
}

/* Services Page */
.services-page {
  background: var(--off-white);
  overflow-x: hidden;
}

.services-page .container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.services-page .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-page .section-header p {
  margin-left: auto;
  margin-right: auto;
}

.services-catalogue-section {
  background: var(--off-white);
}

.services-catalogue-section .catalogue-card {
  background: var(--white);
}

.services-catalogue-section .catalogue-icon {
  opacity: 1;
}

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

.deliverables-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.deliverables-filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--border-gray);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: var(--tracking-primary);
  cursor: pointer;
  transition: all var(--transition);
}

.deliverables-filter-btn:hover,
.deliverables-filter-btn.active {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: var(--white);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 16px;
  width: 100%;
}

.deliverables-grid__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.deliverables-grid__item.is-hidden {
  display: none !important;
}

.deliverables-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.deliverables-grid__item:hover img {
  transform: scale(1.03);
}

.deliverables-grid__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-primary);
}

.deliverables-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.services-process-section {
  background: var(--off-white);
  padding: 80px 0;
}

.services-process-section .section-header {
  margin-bottom: 40px;
}

.services-process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px 44px;
  box-shadow: var(--shadow);
}

.services-process-card__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--primary-black);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: var(--tracking-primary);
}

.services-process-card .move-in-timeline {
  margin-bottom: 36px;
}

.services-process-card .btn-gold {
  color: var(--white);
  padding: 14px 32px;
}

.services-process-card .btn-gold:hover {
  color: var(--white);
}

.services-final-cta .about-final-cta__text h2 .script-text {
  color: var(--accent-gold);
}

.services-contact-form {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-contact-form .btn-gold {
  width: 100%;
  color: var(--white);
  margin-top: 4px;
}

.about-intro-section {
  padding: 80px 0 72px;
  background: var(--off-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.about-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-black);
  line-height: 1.18;
  letter-spacing: var(--tracking-primary);
  margin-bottom: 0;
}

.about-intro-title__line {
  display: block;
}

.about-intro-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: var(--tracking-style);
  color: var(--primary-black);
  line-height: inherit;
}

.about-intro-highlight {
  color: var(--accent-gold);
  font-weight: 700;
}

.about-intro-stats {
  display: flex;
  align-items: flex-start;
  margin-top: 36px;
  width: 100%;
  max-width: 480px;
}

.about-intro-stat {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  border-left: 1px solid var(--border-gray);
  text-align: left;
}

.about-intro-stat:first-child {
  padding-left: 0;
  border-left: none;
}

.about-intro-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 48px);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: var(--tracking-primary);
  white-space: nowrap;
}

.about-intro-stat__label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: var(--tracking-primary);
  line-height: 1.35;
}

.about-intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--primary-black);
  letter-spacing: var(--tracking-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-intro-heading .about-accent {
  color: var(--accent-gold);
  font-weight: 700;
}

.about-intro-right p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: var(--tracking-primary);
  margin-bottom: 18px;
}

.about-intro-right p:last-child {
  margin-bottom: 0;
}

.about-cta-section {
  padding-top: 0;
  padding-bottom: 72px;
  background: var(--off-white);
}

/* About — What drives us */
.about-values-section {
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  border-color: rgba(184, 155, 106, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.value-card-icon {
  width: 44px;
  height: 44px;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  letter-spacing: var(--tracking-primary);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  letter-spacing: var(--tracking-primary);
  margin: 0;
}

/* About — Team carousel */
.team-section {
  background: var(--off-white);
  overflow: hidden;
}

.team-section__header {
  text-align: center;
  margin-bottom: 36px;
}

.team-section__header h2 {
  font-size: clamp(22px, 2.8vw, 40px);
  white-space: nowrap;
}

.team-scroll-progress {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
}

.team-scroll-outer {
  width: 100%;
}

.team-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  padding: 4px max(var(--section-gutter), calc((100vw - var(--content-max)) / 2 + var(--section-gutter))) 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.team-scroll::-webkit-scrollbar {
  display: none;
}

.team-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.team-card {
  flex: 0 0 min(720px, calc(100vw - var(--section-gutter) * 2 - 48px));
  scroll-snap-align: start;
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
}

.team-card__photo {
  flex: 0 0 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
}

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

.team-card__body {
  flex: 1;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.team-card__quote {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  letter-spacing: var(--tracking-primary);
  margin-bottom: 22px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  letter-spacing: var(--tracking-primary);
}

.team-card__role {
  font-size: 14px;
  color: var(--accent-gold);
  margin-top: 6px;
  letter-spacing: var(--tracking-primary);
}

/* About — Final CTA with estimate form */
.about-final-cta-section {
  background: var(--off-white);
  padding-bottom: 80px;
}

.about-final-cta {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 400px;
}

.about-final-cta__text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.about-final-cta__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: var(--tracking-primary);
  margin-bottom: 14px;
  max-width: 480px;
  line-height: 1.25;
}

.about-final-cta__text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: var(--tracking-primary);
  max-width: 440px;
  margin-bottom: 28px;
}

.about-final-cta__text .btn-gold {
  width: fit-content;
  color: var(--white);
}

.about-estimate-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-estimate-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-black);
  letter-spacing: var(--tracking-primary);
  margin-bottom: 8px;
}

.about-estimate-card > p:not(.hero-estimate-label) {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-estimate-card .hero-estimate-label {
  color: var(--primary-black);
}

.about-estimate-card .btn-gold {
  width: 100%;
  color: var(--white);
}

.city-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.city-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gray);
}

.city-stat-card .number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.city-stat-card .label {
  font-size: 13px;
  color: var(--text-light);
}

/* City Page — matches About / Contact / Services Figma layout */
.city-page {
  background: var(--off-white);
  overflow-x: hidden;
}

.city-page .container {
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.city-page-hero .about-page-hero__content {
  align-items: flex-end;
}

.city-areas-section {
  padding-top: 0;
}

.city-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.city-area-chip {
  background: var(--off-white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-black);
  letter-spacing: var(--tracking-primary);
}

.city-services-section {
  background: var(--white);
}

.city-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.city-service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow);
}

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

.city-service-card__body {
  padding: 24px;
}

.city-service-card__body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 8px;
  letter-spacing: var(--tracking-primary);
}

.city-service-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.city-page .journey-cta-section {
  padding-bottom: 80px;
}

/* CTA Banner */
.cta-banner {
  background: var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 60px 0;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  margin-top: 8px;
}

.cta-banner .btn-dark {
  flex-shrink: 0;
}

/* Trust Bar */
.trust-bar-section {
  background: var(--off-white);
  padding: 56px 0;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.trust-bar-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px dashed var(--divider-gray);
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
}

.trust-bar-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 10px;
}

.trust-bar-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 240px;
  margin: 0 auto;
}

/* Estimate Modal */
.estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--section-gutter);
}

.estimate-modal[hidden] {
  display: none !important;
}

.estimate-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(4px);
}

.estimate-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
}

.estimate-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.estimate-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.estimate-modal .journey-wizard {
  min-height: 480px;
  max-height: none;
}

/* Journey CTA Banner */
.journey-cta-section {
  background: var(--off-white);
  padding: 0 0 80px;
}

.journey-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-cta-banner-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 520px;
}

.journey-cta-banner-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

.journey-cta-banner .btn-gold {
  flex-shrink: 0;
  color: var(--white);
}

/* Journey Wizard */

.journey-wizard {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: #121212;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 520px;
}

.journey-wizard-sidebar {
  background: #0e0e0e;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
}

.journey-wizard-sidebar-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 28px;
}

.journey-wizard-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  position: relative;
}

.journey-wizard-step-list::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.journey-wizard-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  opacity: 0.45;
}

.journey-wizard-step-item.is-active {
  opacity: 1;
}

.journey-wizard-step-item.is-complete {
  opacity: 0.7;
}

.journey-wizard-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: #121212;
}

.journey-wizard-step-item.is-active .journey-wizard-step-num {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-black);
}

.journey-wizard-step-item.is-complete .journey-wizard-step-num {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: transparent;
  font-size: 0;
  position: relative;
}

.journey-wizard-step-item.is-complete .journey-wizard-step-num::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--primary-black);
  border-bottom: 2px solid var(--primary-black);
  transform: rotate(-45deg) translateY(-1px);
}

.journey-wizard-step-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.journey-wizard-step-copy span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.journey-wizard-step-pill {
  display: inline-block;
  margin-top: auto;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  align-self: flex-start;
}

.journey-wizard-panel {
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.btn-wizard-back {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-wizard-back:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.journey-wizard-pane {
  flex: 1;
}

.journey-wizard-pane[hidden] {
  display: none !important;
}

.btn-wizard-continue {
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-wizard-continue:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.wizard-room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.wizard-room-grid--steppers {
  gap: 14px;
}

.wizard-room-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.wizard-room-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}

.wizard-room-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.wizard-room-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wizard-room-minus,
.wizard-room-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.wizard-room-minus:hover,
.wizard-room-plus:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.wizard-room-minus:disabled,
.wizard-room-plus:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.25);
}

.wizard-room-minus:disabled:hover,
.wizard-room-plus:disabled:hover {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.25);
}

.wizard-room-count {
  min-width: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.wizard-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.wizard-summary-bar--compact {
  margin-bottom: 16px;
}

.wizard-unlock-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.wizard-whatsapp-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.wizard-whatsapp-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wizard-whatsapp-switch {
  width: 40px;
  height: 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  flex-shrink: 0;
  transition: background var(--transition);
}

.wizard-whatsapp-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform var(--transition);
}

.wizard-whatsapp-toggle input:checked + .wizard-whatsapp-switch {
  background: #25d366;
}

.wizard-whatsapp-toggle input:checked + .wizard-whatsapp-switch::after {
  transform: translateX(18px);
}

.wizard-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.wizard-pricing-card {
  position: relative;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.wizard-pricing-card--popular {
  border-color: var(--accent-gold);
  background: rgba(184, 155, 106, 0.08);
}

.wizard-pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--accent-gold);
  color: var(--primary-black);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.wizard-pricing-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.wizard-pricing-amount {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.wizard-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.btn-wizard-continue.is-gold {
  background: var(--accent-gold);
  color: var(--primary-black);
}

.btn-wizard-continue.is-gold:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.wizard-details-form .form-group input,
.wizard-details-form .form-group select {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.wizard-details-form .form-group select option {
  color: var(--text-dark);
  background: var(--white);
}

.wizard-details-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.wizard-estimate-result {
  margin-top: 12px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.wizard-estimate-tier {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.wizard-estimate-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.wizard-estimate-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.journey-form-card {
  margin: 0;
}

/* Hero Estimate Widget */
.hero-estimate-card {
  background: linear-gradient(
    145deg,
    rgba(72, 58, 46, 0.92) 0%,
    rgba(48, 40, 34, 0.88) 55%,
    rgba(32, 28, 24, 0.9) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.hero-estimate-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: var(--tracking-primary);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-estimate-card > p:not(.hero-estimate-label) {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-estimate-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

.hero-bhk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hero-bhk-btn {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 16px 8px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  color: var(--primary-black);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-bhk-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-bhk-btn span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-black);
}

.hero-bhk-btn:hover {
  border-color: rgba(184, 155, 106, 0.45);
}

.hero-bhk-btn.active {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px var(--accent-gold);
}

.hero-estimate-card .btn-gold,
.hero-estimate-card .btn-get-estimate {
  width: 100%;
  padding: 14px 24px;
  font-weight: 600;
  color: var(--white);
}

.hero-estimate-card .btn-gold:hover {
  color: var(--white);
}

.hero-estimate-steps {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.hero-estimate-card--steps .hero-estimate-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-sqft-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-sqft-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-sqft-btn:hover {
  border-color: rgba(184, 155, 106, 0.45);
}

.hero-sqft-btn.active {
  background: var(--white);
  border-color: var(--accent-gold);
  color: var(--primary-black);
}

/* Journey floorplan picker */
.journey-estimate-card {
  margin: 0;
}

.journey-wizard-panel .floorplan-picker-title {
  font-size: 28px;
}

.journey-wizard-panel .floorplan-preview {
  min-height: 120px;
}

.floorplan-start-pill {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.floorplan-picker-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.floorplan-picker-accent {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
}

.floorplan-picker-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
  line-height: 1.5;
}

.hero-bhk-btn--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  min-height: 82px;
}

.hero-bhk-btn--dark .hero-bhk-icon,
.hero-bhk-btn--dark span {
  color: inherit;
}

.hero-bhk-btn--dark:hover {
  border-color: rgba(184, 155, 106, 0.35);
  color: rgba(255, 255, 255, 0.65);
}

.hero-bhk-btn--dark.active {
  background: rgba(184, 155, 106, 0.06);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: none;
}

.hero-sqft-toggle--dark {
  margin-bottom: 16px;
}

.hero-sqft-btn--dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.4);
}

.hero-sqft-icon {
  width: 22px;
  height: 22px;
  color: inherit;
}

.hero-sqft-btn--dark span {
  font-size: 11px;
  font-weight: 600;
  color: inherit;
}

.hero-sqft-btn--dark:hover {
  border-color: rgba(184, 155, 106, 0.35);
  color: rgba(255, 255, 255, 0.65);
}

.hero-sqft-btn--dark.active {
  background: rgba(184, 155, 106, 0.06);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.floorplan-preview {
  min-height: 160px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.floorplan-preview .floorplan-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

.floorplan-preview .floorplan-svg text {
  font-family: var(--font-body);
}

.floorplan-bhk-caption {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  text-align: center;
  line-height: 1.2;
}


/* Service Offer Cards */
.service-offer-section {
  background: var(--white);
  padding-top: 0;
}

.service-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-offer-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-offer-icon {
  width: 56px;
  height: 56px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.service-offer-icon[src] {
  object-fit: contain;
  display: block;
}

.service-offer-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 12px;
}

.service-offer-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 280px;
}

.cta-contained-section--expert {
  padding-top: 0;
}

.cta-contained-section--pre-testimonials {
  padding-top: 0;
  padding-bottom: 56px;
}

.move-in-section + .cta-contained-section--pre-testimonials {
  padding-top: 0;
}

.cta-contained-section--pre-testimonials + .testimonials-section {
  padding-top: 0;
}

/* Pendulum Clock Offer */
.offer-clock-section {
  background: linear-gradient(180deg, var(--off-white) 0%, #f3efe8 50%, var(--off-white) 100%);
  padding-bottom: 72px;
}

.offer-clock-section .section-header p {
  max-width: 520px;
  margin: 12px auto 0;
  color: var(--text-light);
}

.pendulum-clock-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}

.pendulum-clock {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 340px);
}

.pendulum-clock__top-ornament {
  width: 72px;
  height: 18px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #d4b88a 0%, var(--accent-gold) 45%, var(--accent-dark) 100%);
  box-shadow: 0 4px 12px rgba(184, 155, 106, 0.35);
  margin-bottom: -4px;
  z-index: 2;
}

.pendulum-clock__case {
  position: relative;
  width: 100%;
  padding: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8d5b5 0%, var(--accent-gold) 35%, #8f7348 100%);
  box-shadow:
    0 20px 50px rgba(26, 26, 26, 0.18),
    inset 0 2px 4px rgba(255, 255, 255, 0.35),
    inset 0 -3px 8px rgba(0, 0, 0, 0.15);
}

.pendulum-clock__frame-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.pendulum-clock__face {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 45%),
    radial-gradient(circle, #fffdf9 0%, #f7f2ea 70%, #ebe3d6 100%);
  box-shadow: inset 0 0 0 3px rgba(184, 155, 106, 0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pendulum-clock__ticks {
  position: absolute;
  inset: 0;
}

.pendulum-clock__ticks span {
  position: absolute;
  inset: 0;
}

.pendulum-clock__ticks span::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 2px;
  height: 10px;
  margin-left: -1px;
  background: var(--accent-gold);
  border-radius: 1px;
}

.pendulum-clock__ticks span:nth-child(1) { transform: rotate(0deg); }
.pendulum-clock__ticks span:nth-child(1)::before,
.pendulum-clock__ticks span:nth-child(4)::before,
.pendulum-clock__ticks span:nth-child(7)::before,
.pendulum-clock__ticks span:nth-child(10)::before {
  width: 3px;
  height: 14px;
  margin-left: -1.5px;
  background: var(--primary-black);
}

.pendulum-clock__ticks span:nth-child(2) { transform: rotate(30deg); }
.pendulum-clock__ticks span:nth-child(3) { transform: rotate(60deg); }
.pendulum-clock__ticks span:nth-child(4) { transform: rotate(90deg); }
.pendulum-clock__ticks span:nth-child(5) { transform: rotate(120deg); }
.pendulum-clock__ticks span:nth-child(6) { transform: rotate(150deg); }
.pendulum-clock__ticks span:nth-child(7) { transform: rotate(180deg); }
.pendulum-clock__ticks span:nth-child(8) { transform: rotate(210deg); }
.pendulum-clock__ticks span:nth-child(9) { transform: rotate(240deg); }
.pendulum-clock__ticks span:nth-child(10) { transform: rotate(270deg); }
.pendulum-clock__ticks span:nth-child(11) { transform: rotate(300deg); }
.pendulum-clock__ticks span:nth-child(12) { transform: rotate(330deg); }

.pendulum-clock__hands {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pendulum-clock__hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 3px;
}

.pendulum-clock__hand--hour {
  width: 5px;
  height: 22%;
  margin-left: -2.5px;
  background: linear-gradient(180deg, var(--primary-black) 0%, #444 100%);
  transform: rotate(300deg);
  animation: clock-hour-tick 12s steps(12) infinite;
}

.pendulum-clock__hand--minute {
  width: 3px;
  height: 32%;
  margin-left: -1.5px;
  background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-dark) 100%);
  transform: rotate(45deg);
  animation: clock-minute-sweep 8s linear infinite;
}

.pendulum-clock__hand-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.pendulum-clock__offer {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 28px;
  max-width: 88%;
}

.pendulum-clock__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary-black);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.pendulum-clock__discount {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(36px, 9vw, 48px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.pendulum-clock__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 4px;
}

.pendulum-clock__meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pendulum-clock__expiry {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(184, 155, 106, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
}

.pendulum-clock__swing {
  margin-top: -6px;
  transform-origin: top center;
  animation: pendulum-swing 2.8s ease-in-out infinite alternate;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pendulum-clock__rod {
  width: 4px;
  height: 88px;
  background: linear-gradient(90deg, #8f7348 0%, #d4b88a 50%, #8f7348 100%);
  border-radius: 2px;
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.15);
}

.pendulum-clock__bob {
  position: relative;
  width: 44px;
  height: 44px;
  margin-top: -2px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #f0ddb8 0%, var(--accent-gold) 40%, #8f7348 100%);
  box-shadow:
    0 8px 20px rgba(26, 26, 26, 0.25),
    inset 0 -4px 8px rgba(0, 0, 0, 0.2),
    inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.pendulum-clock__bob-shine {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 12px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-25deg);
}

.pendulum-clock__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pendulum-clock__perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
}

.pendulum-clock__perks li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}

.pendulum-clock__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
}

@keyframes pendulum-swing {
  from { transform: rotate(-14deg); }
  to { transform: rotate(14deg); }
}

@keyframes clock-minute-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes clock-hour-tick {
  from { transform: rotate(300deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .pendulum-clock__swing,
  .pendulum-clock__hand--hour,
  .pendulum-clock__hand--minute {
    animation: none;
  }

  .pendulum-clock__hand--minute {
    transform: rotate(90deg);
  }
}

/* Who Are We */
.who-are-we-section {
  background: var(--off-white);
}

.who-are-we-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr) minmax(260px, 1fr);
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.who-are-we-grid .gold-card {
  border-radius: 0;
  min-height: 100%;
}

.who-are-we-content {
  background: var(--off-white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-are-we-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 22px;
  line-height: 1.15;
}

.who-are-we-content h2 .about-accent {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
}

.who-are-we-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.who-are-we-content p:last-child {
  margin-bottom: 0;
}

.who-are-we-image {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.who-are-we-image::before {
  content: '';
  position: absolute;
  left: -88px;
  top: 50%;
  transform: translateY(-50%);
  width: 176px;
  height: 118%;
  background: var(--off-white);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.who-are-we-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.who-are-we-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* From Design to Move in */
.move-in-section {
  background: var(--white);
}

.move-in-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 40px;
}

.move-in-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border-gray);
  z-index: 0;
}

.move-in-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.move-in-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  color: var(--primary-black);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.move-in-step--active .move-in-num {
  background: var(--accent-gold);
  color: var(--white);
}

.move-in-step h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 8px;
}

.move-in-step p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
}

.move-in-cta {
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--primary-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 0;
}

.site-footer .container {
  padding-left: 16px;
  padding-right: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 20px 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter h4 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 340px;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-footer-submit {
  padding: 12px 22px;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  color: var(--primary-black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-footer-submit:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
}

.footer-col ul a:hover {
  color: var(--accent-gold);
}

.footer-col--visit {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col--visit h4 {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-visit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-visit-list li {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.footer-visit-list a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
}

.footer-visit-list a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  padding: 14px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

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

.footer-social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(0.65);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-social a:hover img {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1400px) {
  .main-nav {
    gap: 22px;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    font-size: 13px;
  }

  .header-cta.btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .logo-img {
    height: 40px;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    padding: 12px 24px;
    position: relative;
  }

  .hero-shell .header-inner {
    padding: 12px 24px;
  }

  .main-nav {
    display: none;
    margin-left: 0;
  }

  .header-cta {
    display: inline-flex;
    margin-left: auto;
    padding: 10px 14px;
    font-size: 12px;
  }

  .mobile-toggle {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    order: 3;
  }

  .logo {
    order: 1;
  }

  .header-cta {
    order: 2;
  }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-black);
    padding: 20px 24px;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.mobile-open > a {
    width: 100%;
    padding: 6px 0;
    font-size: 15px;
  }

  .main-nav.mobile-open > .nav-dropdown {
    width: 100%;
  }

  .main-nav.mobile-open .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    color: var(--white);
    padding: 6px 0;
    font-size: 15px;
  }

  .main-nav.mobile-open .main-nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 4px;
    order: -1;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
    min-width: 0;
    border: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
  }

  .cities-mega-menu {
    left: auto;
    transform: none;
    width: 100%;
    min-width: 0;
    padding: 12px 0 0;
    border: none;
    border-radius: 0;
  }

  .nav-dropdown--cities:hover .cities-mega-menu,
  .nav-dropdown--cities.open .cities-mega-menu {
    transform: none;
  }

  .cities-mega-title {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
  }

  .cities-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .city-mega-link {
    padding: 6px;
    min-width: 0;
  }

  .city-mega-link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .city-mega-link.is-active {
    background: rgba(184, 155, 106, 0.15);
  }

  .city-mega-name {
    color: var(--white);
    font-size: 13px;
  }

  .city-mega-link.is-active .city-mega-name {
    color: var(--accent-gold);
  }

  .city-mega-thumb {
    height: 72px;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .nav-dropdown--cities:not(.open) .cities-mega-menu {
    display: none;
  }

  .nav-dropdown--cities.open .cities-mega-menu {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 80px 48px 40px;
  }

  .hero-offer-pendulum {
    top: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .pendulum-offer__bob {
    min-width: 180px;
    padding: 16px 18px 14px;
  }

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

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-final-cta {
    grid-template-columns: 1fr;
  }

  .about-page-hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-page-hero__lead {
    max-width: none;
  }

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

  .contact-head-office {
    grid-template-columns: 1fr;
  }

  .contact-estimate-split,
  .contact-bottom-split {
    grid-template-columns: 1fr;
  }

  .contact-estimate-image img {
    min-height: 280px;
  }

  .contact-estimate-widget {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-estimate-widget__steps {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
  }

  .contact-estimate-step-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .cream-card {
    grid-template-columns: 1fr;
  }

  .cream-card-image {
    height: 300px;
  }

  .cream-card-image::before {
    display: none;
  }

  .services-grid,
  .features-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .trust-bar-item {
    border-right: none;
    border-bottom: 1px dashed var(--divider-gray);
  }

  .trust-bar-item:nth-child(odd) {
    border-right: 1px dashed var(--divider-gray);
  }

  .trust-bar-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .journey-wizard {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .journey-wizard-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 20px;
  }

  .journey-wizard-step-list::before {
    display: none;
  }

  .journey-wizard-step-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
  }

  .journey-wizard-step-item {
    margin-bottom: 0;
  }

  .process-step::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col--visit {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .city-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .city-areas-grid,
  .city-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

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

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

  .why-card-image {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gutter: 16px;
  }

  .hero-wrapper {
    padding: 0 var(--section-gutter) 24px var(--section-gutter);
  }

  .hero-shell {
    border-radius: var(--radius-lg);
    padding-top: var(--header-height);
  }

  .site-header--hero {
    border-radius: 0;
  }

  .header-inner {
    padding: 12px var(--section-gutter);
    justify-content: flex-start;
  }

  .hero-shell .header-inner {
    padding: 12px var(--section-gutter);
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    margin-left: auto;
    order: 2;
  }

  .hero-text {
    text-align: center;
  }

  .hero-tagline {
    font-size: 17px;
    line-height: 1.65;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-estimate-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px 20px 20px;
  }

  .hero-estimate-label {
    text-align: left;
  }

  .hero-estimate-card .btn-get-estimate {
    margin-top: 4px;
    width: 100%;
  }

  .section-header h2 {
    font-size: clamp(22px, 6vw, 32px);
    word-wrap: break-word;
    line-height: 1.3;
    text-align: center;
  }

  .title-split-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .title-split-mobile__line {
    display: block;
  }

  .section-header p {
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
  }

  .why-hanaeni-item {
    text-align: center;
  }

  .why-hanaeni-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-hanaeni-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .floorplan-picker-title,
  .floorplan-picker-subtitle {
    text-align: center;
  }

  .floorplan-picker-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
  }

  .floorplan-start-pill {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .floorplan-preview {
    flex-direction: column;
    padding: 14px 14px 12px;
    margin-bottom: 4px;
  }

  .floorplan-preview .floorplan-svg {
    max-width: 100%;
  }

  .journey-wizard-panel .hero-bhk-grid {
    margin-bottom: 14px;
  }

  .journey-wizard-panel .hero-sqft-toggle--dark {
    margin-bottom: 18px;
  }

  .journey-wizard-panel {
    padding: 24px 20px 0;
    min-height: min(72vh, 560px);
  }

  .btn-wizard-continue {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    z-index: 2;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 18px 24px;
    background: #141414;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .who-are-we-grid {
    grid-template-columns: 1fr;
  }

  .who-are-we-content {
    text-align: center;
    order: 2;
  }

  .who-are-we-grid .gold-card {
    order: 1;
  }

  .who-are-we-image {
    order: 3;
  }

  .gold-card-stats {
    max-width: 280px;
  }

  .hero-section {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
  }

  .hero-offer-pendulum {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0 auto 20px;
    order: -1;
    width: fit-content;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  }

  .pendulum-offer__rod {
    height: 56px;
  }

  .pendulum-offer__bob {
    min-width: 168px;
  }

  .hero-content {
    padding: 24px var(--section-gutter) 24px;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .about-page-hero {
    min-height: 380px;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
  }

  .about-page-hero__inner {
    padding: 20px 0 32px;
  }

  .contact-estimate-widget .hero-bhk-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-bottom-text,
  .contact-head-office__body {
    padding: 28px 24px;
  }

  .service-offer-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-section {
    padding: 48px 0 40px;
  }

  .city-areas-grid,
  .city-services-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-stats {
    max-width: none;
    margin-top: 32px;
  }

  .about-intro-stat {
    padding: 0 16px;
  }

  .about-intro-stat:first-child {
    padding-left: 0;
  }

  .about-cta-section {
    padding-bottom: 48px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    flex: 0 0 min(320px, calc(100vw - var(--section-gutter) * 2 - 24px));
    padding: 20px;
    gap: 16px;
  }

  .team-card__photo {
    flex: none;
    width: 100%;
    min-height: 200px;
    max-height: 220px;
  }

  .team-section__header h2 {
    font-size: clamp(15px, 3.8vw, 22px);
  }

  .about-final-cta__text {
    padding: 32px 24px;
  }

  .about-estimate-card {
    padding: 28px 24px;
  }

  .about-final-cta__text .btn-gold {
    width: 100%;
  }

  .lead-form-card {
    padding: 24px 20px;
  }

  .form-actions {
    flex-direction: column;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar-item,
  .trust-bar-item:nth-child(odd) {
    border-right: none;
    border-bottom: 1px dashed var(--divider-gray);
  }

  .trust-bar-item:last-child {
    border-bottom: none;
  }

  .estimate-modal {
    padding: 12px var(--section-gutter);
    align-items: flex-end;
  }

  .estimate-modal-dialog {
    max-height: calc(100vh - 24px);
    width: 100%;
  }

  .journey-wizard-step-list {
    grid-template-columns: 1fr;
  }

  .wizard-room-grid {
    grid-template-columns: 1fr;
  }

  .wizard-pricing-grid {
    grid-template-columns: 1fr;
  }

  .journey-cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    text-align: center;
  }

  .journey-cta-banner-text h2,
  .journey-cta-banner-text p {
    max-width: none;
  }

  .services-grid,
  .features-grid,
  .portfolio-grid,
  .testimonials-grid,
  .process-grid,
  .office-locations {
    grid-template-columns: 1fr;
  }

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

  .footer-col--visit {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .footer-col--visit h4 {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .footer-visit-list {
    display: block;
  }

  .footer-visit-list li {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-visit-list a {
    font-size: 14px;
    font-weight: 400;
  }

  .footer-newsletter-form {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .recent-projects-section .recent-projects-controls {
    position: static;
    transform: none;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
  }

  .recent-projects-section .section-header-row--center {
    text-align: center;
  }

  .recent-project-card {
    flex: 0 0 280px;
  }

  .quick-quote-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .quick-quote-text {
    max-width: none;
  }

  .quick-quote-form {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-quote-form .btn {
    width: 100%;
  }

  .dark-cta-banner--contained {
    padding: 28px 24px;
  }

  .dark-cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }

  .dark-cta-inner p {
    max-width: none;
  }

  .dark-cta-inner .btn {
    width: 100%;
    white-space: normal;
  }

  .why-hanaeni-grid {
    grid-template-columns: 1fr;
  }

  .why-hanaeni-bento {
    grid-template-columns: 1fr;
  }

  .why-card-image {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
  }

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

  .pricing-tiers {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-card-popular {
    order: -1;
  }

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

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

  .testimonials-scroll .testimonial-card {
    flex: 0 0 280px;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalogue-card {
    padding: 28px 20px 24px;
    min-height: 220px;
    align-items: center;
  }

  .catalogue-card .catalogue-icon {
    width: 48px;
    height: 48px;
  }

  .catalogue-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: var(--tracking-primary);
    line-height: 1.25;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .catalogue-card .btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-filters {
    justify-content: center;
  }

  .cream-card-content {
    padding: 28px;
  }

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

  .delivery-process-grid,
  .how-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .about-stats-image {
    min-height: 260px;
  }

  .recent-project-card--portrait {
    flex: 0 0 180px;
  }

  .service-offer-grid {
    grid-template-columns: 1fr;
  }

  .service-offer-card {
    padding: 32px 24px;
  }

  .who-are-we-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .who-are-we-image::before {
    display: none;
  }

  .who-are-we-image {
    min-height: 280px;
  }

  .who-are-we-content {
    padding: 32px 24px;
    text-align: center;
  }

  .move-in-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .move-in-timeline::before {
    display: none;
  }

  .services-process-section {
    padding: 64px 0;
  }

  .services-process-card {
    padding: 36px 24px 32px;
  }

  .services-process-card__title {
    margin-bottom: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .move-in-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .who-are-we-grid {
    grid-template-columns: 1fr 1fr;
  }

  .who-are-we-image {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .who-are-we-image::before {
    display: none;
  }
}

/* Kitchen Estimate Wizard */
.kitchen-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--section-gutter);
}

.kitchen-modal[hidden] {
  display: none !important;
}

.kitchen-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
}

.kitchen-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #f7f6f3;
  border-radius: var(--radius-lg);
  padding: 36px 40px 32px;
}

.kitchen-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--primary-black);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.kitchen-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.kitchen-wizard-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 0 8px;
}

.kitchen-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 88px;
  opacity: 0.45;
}

.kitchen-progress-step.is-active,
.kitchen-progress-step.is-complete {
  opacity: 1;
}

.kitchen-progress-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  background: transparent;
  position: relative;
}

.kitchen-progress-step.is-active .kitchen-progress-dot,
.kitchen-progress-step.is-complete .kitchen-progress-dot {
  background: var(--accent-gold);
  box-shadow: inset 0 0 0 4px #f7f6f3;
}

.kitchen-progress-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-black);
  text-align: center;
  line-height: 1.3;
}

.kitchen-progress-line {
  flex: 1;
  height: 2px;
  background: #ddd;
  margin-top: 9px;
  min-width: 24px;
  max-width: 80px;
}

.kitchen-wizard-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: stretch;
}

.kitchen-wizard-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.kitchen-wizard-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--primary-black);
  line-height: 1.25;
  margin-bottom: 12px;
}

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

.kitchen-wizard-subtitle {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.kitchen-wizard-subtitle a {
  color: var(--primary-black);
  text-decoration: underline;
}

.kitchen-wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn-kitchen-back,
.btn-kitchen-next {
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-kitchen-back {
  background: #e8e8e8;
  color: var(--primary-black);
}

.btn-kitchen-back:hover {
  background: #ddd;
}

.btn-kitchen-next {
  background: var(--accent-gold);
  color: var(--white);
}

.btn-kitchen-next:hover {
  background: var(--accent-dark);
}

.kitchen-wizard-right {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 380px;
}

.kitchen-wizard-pane[hidden] {
  display: none !important;
}

.kitchen-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.kitchen-layout-card {
  position: relative;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.kitchen-layout-card:hover {
  border-color: rgba(184, 155, 106, 0.5);
}

.kitchen-layout-card.active {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px var(--accent-gold);
}

.kitchen-layout-radio {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: var(--white);
}

.kitchen-layout-card.active .kitchen-layout-radio {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  box-shadow: inset 0 0 0 4px var(--white);
}

.kitchen-layout-visual {
  background: #f5f5f5;
  padding: 16px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kitchen-layout-visual svg {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.kitchen-layout-name {
  display: block;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-black);
}

.kitchen-measure-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.kitchen-measure-diagram {
  background: #f0f0f0;
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.kitchen-measure-diagram svg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.kitchen-measure-inputs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kitchen-measure-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
}

.kitchen-measure-label {
  font-weight: 600;
  color: var(--primary-black);
}

.kitchen-measure-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5L6 8L9 5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.kitchen-measure-unit {
  font-size: 14px;
  color: var(--text-light);
  min-width: 28px;
}

.kitchen-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 100%;
}

.kitchen-package-card {
  position: relative;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  background: var(--white);
  transition: border-color var(--transition), background var(--transition);
}

.kitchen-package-card:hover {
  border-color: rgba(184, 155, 106, 0.45);
}

.kitchen-package-card.active {
  border-color: var(--accent-gold);
  background: #f5f3ef;
  box-shadow: 0 0 0 1px var(--accent-gold);
}

.kitchen-package-radio {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.kitchen-package-card.active .kitchen-package-radio {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  box-shadow: inset 0 0 0 4px #f5f3ef;
}

.kitchen-package-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 4px;
}

.kitchen-crown {
  color: var(--accent-gold);
  font-size: 14px;
}

.kitchen-package-tag {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.kitchen-package-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 12px;
  filter: blur(4px);
  user-select: none;
}

.kitchen-package-card.active .kitchen-package-price {
  filter: none;
}

.kitchen-package-card ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.kitchen-package-card ul li::before {
  content: '✓ ';
  color: var(--accent-gold);
  font-weight: 700;
}

.kitchen-package-desc {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0;
}

.kitchen-quote-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kitchen-quote-summary {
  background: #f5f3ef;
  border-radius: var(--radius-sm);
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark);
}

.kitchen-quote-summary p {
  margin: 0 0 8px;
}

.kitchen-quote-summary p:last-child {
  margin-bottom: 0;
}

.kitchen-quote-price {
  color: var(--accent-gold);
  font-weight: 700;
}

.kitchen-quote-form .form-group {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .kitchen-modal-dialog {
    padding: 28px 20px 24px;
  }

  .kitchen-wizard-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .kitchen-wizard-left {
    display: contents;
    min-height: auto;
  }

  .kitchen-wizard-copy {
    order: 1;
    text-align: center;
  }

  .kitchen-wizard-right {
    order: 2;
    min-height: auto;
  }

  .kitchen-wizard-nav {
    order: 3;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-gray);
    justify-content: center;
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: #f7f6f3;
    padding-bottom: 4px;
  }

  .kitchen-wizard-title {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .kitchen-wizard-subtitle {
    font-size: 16px;
  }

  .kitchen-package-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-progress-step {
    min-width: 64px;
  }

  .kitchen-progress-label {
    font-size: 10px;
  }
}

/* WhatsApp floating action button */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.05);
  color: inherit;
}

.whatsapp-fab__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
}

.whatsapp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: whatsapp-pulse 2s ease-out infinite;
}

.whatsapp-fab__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab__icon svg,
.whatsapp-fab__icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.whatsapp-fab__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-black);
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab__pulse {
    animation: none;
    opacity: 0.25;
  }
}

@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-fab__icon-wrap,
  .whatsapp-fab__icon {
    width: 52px;
    height: 52px;
  }

  .whatsapp-fab__icon svg,
  .whatsapp-fab__icon img {
    width: 26px;
    height: 26px;
  }

  .whatsapp-fab__label {
    font-size: 12px;
  }
}


 /* ═══════════════════════════════════════════════════════════════
       BLOG PAGE — only additive overrides, no new design tokens
       All colours/fonts/radii/spacing pulled from existing CSS vars
    ═══════════════════════════════════════════════════════════════ */

    /* ── Category pill bar ── */
    .blog-cat-bar {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      padding: 0 0 4px;
      margin-bottom: 40px;
    }

    .blog-cat-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border: 1.5px solid var(--border-gray);
      border-radius: 999px;
      background: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
      cursor: pointer;
      transition: all var(--transition);
      white-space: nowrap;
      letter-spacing: var(--tracking-primary);
    }

    .blog-cat-pill:hover,
    .blog-cat-pill.active {
      border-color: var(--accent-gold);
      background: var(--accent-gold);
      color: var(--primary-black);
    }

    .blog-cat-pill .cat-count {
      font-size: 11px;
      font-weight: 700;
      background: rgba(26,26,26,0.08);
      border-radius: 999px;
      padding: 1px 7px;
    }

    .blog-cat-pill.active .cat-count,
    .blog-cat-pill:hover .cat-count {
      background: rgba(26,26,26,0.15);
    }

    /* ── Featured post (full-width card) ── */
    .blog-featured {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--border-gray);
      box-shadow: var(--shadow);
      margin-bottom: 56px;
      min-height: 420px;
    }

    .blog-featured__image {
      position: relative;
      overflow: hidden;
    }

    .blog-featured__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .blog-featured:hover .blog-featured__image img {
      transform: scale(1.03);
    }

    .blog-featured__badge {
      position: absolute;
      top: 20px;
      left: 20px;
      padding: 5px 14px;
      background: var(--accent-gold);
      color: var(--primary-black);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border-radius: 999px;
    }

    .blog-featured__body {
      padding: 44px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--off-white);
    }

    .blog-featured__meta {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .blog-cat-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-dark);
      background: rgba(184,155,106,0.12);
      padding: 4px 11px;
      border-radius: 999px;
    }

    .blog-meta-date,
    .blog-meta-read {
      font-size: 12px;
      color: var(--text-light);
      letter-spacing: var(--tracking-primary);
    }

    .blog-meta-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--divider-gray);
      flex-shrink: 0;
    }

    .blog-featured__title {
      font-family: var(--font-heading);
      font-size: clamp(22px, 2.5vw, 30px);
      font-weight: 700;
      color: var(--primary-black);
      line-height: 1.22;
      margin-bottom: 16px;
      letter-spacing: var(--tracking-primary);
    }

    .blog-featured__excerpt {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-light);
      margin-bottom: 28px;
      letter-spacing: var(--tracking-primary);
    }

    .blog-featured__author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid var(--border-gray);
    }

    .blog-author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--accent-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }

    .blog-author-info h5 {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-black);
      margin-bottom: 2px;
    }

    .blog-author-info span {
      font-size: 11px;
      color: var(--text-light);
    }

    /* ── Post card grid ── */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .blog-card {
      background: var(--white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: all var(--transition);
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .blog-card__image {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

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

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

    .blog-card__cat {
      position: absolute;
      bottom: 12px;
      left: 14px;
    }

    .blog-card__body {
      padding: 22px 24px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-card__meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .blog-card__title {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 600;
      color: var(--primary-black);
      line-height: 1.35;
      margin-bottom: 10px;
      letter-spacing: var(--tracking-primary);
    }

    .blog-card:hover .blog-card__title {
      color: var(--accent-dark);
    }

    .blog-card__excerpt {
      font-size: 13px;
      line-height: 1.65;
      color: var(--text-light);
      margin-bottom: 20px;
      flex: 1;
      letter-spacing: var(--tracking-primary);
    }

    .blog-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--border-gray);
    }

    .blog-card__author {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .blog-card__author-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--accent-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 11px;
      flex-shrink: 0;
    }

    .blog-card__author-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-black);
    }

    .blog-read-link {
      font-size: 12px;
      font-weight: 700;
      color: var(--accent-dark);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      letter-spacing: var(--tracking-primary);
      transition: color var(--transition);
    }

    .blog-read-link:hover {
      color: var(--primary-black);
    }

    .blog-read-link svg {
      transition: transform var(--transition);
    }

    .blog-read-link:hover svg {
      transform: translateX(3px);
    }

    /* ── Inline lead capture card (sits inside grid flow) ── */
    .blog-lead-card {
      background: var(--primary-black);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 18px;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .blog-lead-card__icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(184,155,106,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
    }

    .blog-lead-card__title {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.25;
      letter-spacing: var(--tracking-primary);
    }

    .blog-lead-card__sub {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
      letter-spacing: var(--tracking-primary);
    }

    /* ── Newsletter strip ── */
    .blog-newsletter-strip {
      background: var(--light-gray);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-lg);
      padding: 40px 48px;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .blog-newsletter-text {
      flex: 1;
    }

    .blog-newsletter-text h3 {
      font-family: var(--font-heading);
      font-size: clamp(20px, 2.5vw, 26px);
      font-weight: 700;
      color: var(--primary-black);
      margin-bottom: 8px;
      letter-spacing: var(--tracking-primary);
    }

    .blog-newsletter-text p {
      font-size: 14px;
      color: var(--text-light);
      letter-spacing: var(--tracking-primary);
    }

    .blog-newsletter-form {
      display: flex;
      gap: 0;
      flex-shrink: 0;
      width: 360px;
    }

    .blog-newsletter-form input {
      flex: 1;
      padding: 13px 18px;
      border: 1.5px solid var(--border-gray);
      border-right: none;
      border-radius: var(--radius-sm) 0 0 var(--radius-sm);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-dark);
      background: var(--white);
      outline: none;
      transition: border-color var(--transition);
    }

    .blog-newsletter-form input:focus {
      border-color: var(--accent-gold);
    }

    .blog-newsletter-form input::placeholder {
      color: #b3aca3;
    }

    .blog-newsletter-form button {
      padding: 13px 24px;
      border: none;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      background: var(--accent-gold);
      color: var(--primary-black);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: background var(--transition), color var(--transition);
    }

    .blog-newsletter-form button:hover {
      background: var(--accent-dark);
      color: var(--white);
    }

    /* ── Trending topics chips (reuse city-area-chip pattern) ── */
    .blog-topics-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* ── Stats strip inside why-hanaeni-item ── */
    .blog-stat-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px 28px;
      background: var(--white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow);
    }

    .blog-stat-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(184,155,106,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      flex-shrink: 0;
    }

    .blog-stat-number {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: var(--primary-black);
      line-height: 1;
      letter-spacing: var(--tracking-primary);
    }

    .blog-stat-label {
      font-size: 13px;
      color: var(--text-light);
      letter-spacing: var(--tracking-primary);
      margin-top: 3px;
    }

    /* ── Load more / pagination ── */
    .blog-load-more {
      text-align: center;
      margin-top: 48px;
    }

    .blog-load-more .btn {
      min-width: 180px;
    }

    /* ── Page hero override for blog (use existing .page-hero) ── */
    .page-hero--blog {
      padding-bottom: 0;
    }

    .page-hero--blog .page-hero__inner {
      padding-bottom: 56px;
    }

    /* ── Sticky sidebar (desktop only) ── */
    .blog-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 40px;
      align-items: start;
    }

    .blog-sidebar {
      position: sticky;
      top: calc(var(--header-height) + 24px);
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .blog-sidebar-card {
      background: var(--white);
      border: 1px solid var(--border-gray);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .blog-sidebar-card__head {
      padding: 18px 20px 16px;
      border-bottom: 1px solid var(--border-gray);
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 700;
      color: var(--primary-black);
      letter-spacing: var(--tracking-primary);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .blog-sidebar-card__head::before {
      content: '';
      width: 3px;
      height: 16px;
      background: var(--accent-gold);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .blog-sidebar-card__body {
      padding: 16px 20px 20px;
    }

    .blog-popular-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid var(--border-gray);
      text-decoration: none;
      transition: color var(--transition);
    }

    .blog-popular-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .blog-popular-item:hover .blog-popular-item__title {
      color: var(--accent-dark);
    }

    .blog-popular-rank {
      font-family: var(--font-heading);
      font-size: 20px;
      font-weight: 700;
      color: var(--border-gray);
      line-height: 1;
      flex-shrink: 0;
      width: 24px;
      padding-top: 2px;
    }

    .blog-popular-item.top-1 .blog-popular-rank { color: var(--accent-gold); }
    .blog-popular-item.top-2 .blog-popular-rank { color: var(--accent-dark); }

    .blog-popular-item__title {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-black);
      line-height: 1.45;
      letter-spacing: var(--tracking-primary);
      transition: color var(--transition);
    }

    .blog-popular-item__meta {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 4px;
    }

    /* ── Sidebar lead form ── */
    .sidebar-lead-form {
      background: linear-gradient(145deg, var(--primary-black) 0%, #2a2520 100%);
      border-radius: var(--radius-md);
      padding: 28px 24px;
    }

    .sidebar-lead-form h4 {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 8px;
      letter-spacing: var(--tracking-primary);
    }

    .sidebar-lead-form p {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 18px;
      line-height: 1.55;
      letter-spacing: var(--tracking-primary);
    }

    .sidebar-lead-form input {
      width: 100%;
      padding: 11px 14px;
      margin-bottom: 10px;
      border: 1.5px solid rgba(255,255,255,0.14);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.06);
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--white);
      outline: none;
      transition: border-color var(--transition);
    }

    .sidebar-lead-form input:focus {
      border-color: var(--accent-gold);
    }

    .sidebar-lead-form input::placeholder {
      color: rgba(255,255,255,0.38);
    }

    .sidebar-lead-form .btn-gold {
      width: 100%;
      font-size: 13px;
      padding: 12px;
      color: var(--white);
    }

    .sidebar-lead-form .sidebar-form-note {
      font-size: 10px;
      color: rgba(255,255,255,0.38);
      text-align: center;
      margin-top: 10px;
    }

    /* ── Sidebar category list ── */
    .sidebar-cat-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 0;
      border-bottom: 1px solid var(--border-gray);
      text-decoration: none;
      transition: color var(--transition);
    }

    .sidebar-cat-item:last-child { border-bottom: none; }

    .sidebar-cat-item:hover .sidebar-cat-name { color: var(--accent-dark); }

    .sidebar-cat-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dark);
      letter-spacing: var(--tracking-primary);
      transition: color var(--transition);
    }

    .sidebar-cat-num {
      font-size: 11px;
      font-weight: 700;
      color: var(--accent-dark);
      background: rgba(184,155,106,0.12);
      padding: 2px 8px;
      border-radius: 999px;
    }

    /* ── Search bar ── */
    .blog-search-wrap {
      position: relative;
      max-width: 560px;
      margin: 0 auto 40px;
    }

    .blog-search-wrap input {
      width: 100%;
      padding: 14px 52px 14px 20px;
      border: 1.5px solid var(--border-gray);
      border-radius: 999px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--text-dark);
      background: var(--white);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
      letter-spacing: var(--tracking-primary);
    }

    .blog-search-wrap input:focus {
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 3px rgba(184,155,106,0.14);
    }

    .blog-search-wrap input::placeholder { color: #b3aca3; }

    .blog-search-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: var(--accent-gold);
      color: var(--primary-black);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }

    .blog-search-btn:hover { background: var(--accent-dark); }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .blog-layout {
        grid-template-columns: 1fr;
      }
      .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      .sidebar-lead-form {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 768px) {
      .blog-featured {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .blog-featured__image { min-height: 240px; }
      .blog-featured__body { padding: 28px 24px; }
      .blog-grid { grid-template-columns: 1fr; }
      .blog-newsletter-strip {
        flex-direction: column;
        padding: 28px 24px;
        text-align: center;
        align-items: stretch;
      }
      .blog-newsletter-form {
        width: 100%;
      }
      .blog-sidebar {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .blog-cat-bar { gap: 8px; }
      .blog-cat-pill { font-size: 12px; padding: 7px 14px; }
    }



  /* ═══════════════════════════════════════════════════════════════
     BLOG ARTICLE — additive CSS only. Zero new design tokens.
     All variables pulled from existing :root in style.css.
     ADD THIS BLOCK to the bottom of your main style.css file.
  ═══════════════════════════════════════════════════════════════ */

  /* ── Article page layout ── */
  .article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
  }
 

  /* ── Article hero ── */
  .article-hero {
    position: relative;
    width: 100%;
    margin-top:20px;
    aspect-ratio: 16 / 7;
    max-height: 520px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 36px;
  }

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

  .article-hero-overlay 
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(26,26,26,0.60) 0%,
      rgba(26,26,26,0.18) 50%,
      transparent 100%
    );
    border-radius: var(--radius-lg);
  }

  /* ── Meta bar (date / read / category) ── */
  .article-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
  }

  .article-meta-date,
  .article-meta-read {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: var(--tracking-primary);
  }

  .article-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--divider-gray);
    flex-shrink: 0;
  }

  .article-meta-updated {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
  }

  /* ── Share bar ── */
  .article-share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0;
    padding: 18px 20px;
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
  }

  .article-share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: var(--tracking-primary);
    flex-shrink: 0;
    margin-right: 4px;
  }

  .share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border-gray);
    background: var(--white);
    color: var(--primary-black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    text-decoration: none;
    flex-shrink: 0;
  }

  .share-btn:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
  }

  .share-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .share-btn--wa:hover  { background: #25D366; border-color: #25D366; color: #fff; }
  .share-btn--x:hover   { background: #000000; border-color: #000000; color: #fff; }
  .share-btn--mail:hover{ background: var(--accent-gold); border-color: var(--accent-gold); color: #fff; }
  .share-btn--copy:hover{ background: var(--primary-black); border-color: var(--primary-black); color: #fff; }

  .share-btn--copy.copied {
    background: #22a85a;
    border-color: #22a85a;
    color: #fff;
  }

  /* ── Article body typography ── */
  .article-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    letter-spacing: var(--tracking-primary);
  }

  .article-body h2 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: var(--tracking-primary);
    line-height: 1.25;
    margin: 44px 0 18px;
    padding-top: 8px;
    border-top: 2px solid var(--border-gray);
  }

  .article-body h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }

  .article-body h3 {
    font-family: var(--font-heading);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 600;
    color: var(--primary-black);
    letter-spacing: var(--tracking-primary);
    line-height: 1.3;
    margin: 28px 0 12px;
  }

  .article-body p {
    margin-bottom: 20px;
    color: var(--text-dark);
  }

  .article-body p:last-child {
    margin-bottom: 0;
  }

  .article-body ul,
  .article-body ol {
    margin: 0 0 20px 0;
    padding-left: 0;
    list-style: none;
  }

  .article-body ul li,
  .article-body ol li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
  }

  .article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
  }

  .article-body ol {
    counter-reset: article-ol;
  }

  .article-body ol li {
    counter-increment: article-ol;
  }

  .article-body ol li::before {
    content: counter(article-ol) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 14px;
  }

  .article-body strong {
    font-weight: 700;
    color: var(--primary-black);
  }

  .article-body a {
    color: var(--accent-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .article-body a:hover {
    color: var(--primary-black);
  }

  /* Intro paragraph (lead) */
  .article-body .article-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 28px;
    padding: 22px 24px;
    border-left: 3px solid var(--accent-gold);
    background: rgba(184,155,106,0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }

  /* Highlight callout box */
  .article-callout {
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin: 28px 0;
  }

  .article-callout p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
  }

  .article-callout strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 6px;
  }

  /* Trend card (numbered) */
  .article-trend {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-gray);
  }

  .article-trend:last-child {
    border-bottom: none;
  }

  .article-trend-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--accent-gold);
    color: var(--primary-black);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .article-trend-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0 0 8px;
  }

  .article-trend-content p {
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--text-dark);
  }

  .article-trend-content ul {
    margin: 0;
  }

  /* Inline CTA banner inside article */
  .article-inline-cta {
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2520 100%);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(255,255,255,0.06);
  }

  .article-inline-cta p {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    margin: 0;
    max-width: 380px;
    letter-spacing: var(--tracking-primary);
  }

  .article-inline-cta .btn-gold {
    flex-shrink: 0;
    color: var(--white);
  }

  /* ── Author card ── */
  .article-author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    margin-top: 48px;
  }

  .article-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-gold), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .article-author-info h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 4px;
    letter-spacing: var(--tracking-primary);
  }

  .article-author-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    display: block;
  }

  .article-author-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    letter-spacing: var(--tracking-primary);
    margin: 0;
  }

  /* ── Table of Contents ── */
  .article-toc {
    padding: 0;
  }

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

  .article-toc-item {
    counter-increment: toc-counter;
  }

  .article-toc-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: var(--tracking-primary);
    transition: color var(--transition);
    line-height: 1.45;
  }

  .article-toc-link::before {
    content: counter(toc-counter) '.';
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 12px;
    flex-shrink: 0;
    padding-top: 1px;
    min-width: 18px;
  }

  .article-toc-item:last-child .article-toc-link {
    border-bottom: none;
  }

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

  .article-toc-link.is-active {
    color: var(--accent-dark);
    font-weight: 700;
  }

  /* ── Related articles grid ── */
  .article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* ── Reading progress bar ── */
  .article-progress-bar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gold);
    z-index: 1001;
    transition: width 0.1s linear;
  }

  /* ── Sticky sidebar ── */
  .article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: flex;
    margin-top:20px;
    flex-direction: column;
    gap: 24px;
  }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .article-layout {
      grid-template-columns: 1fr;
    }
    .article-sidebar {
      position: static;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .sidebar-lead-form { grid-column: 1 / -1; }
    .article-related-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .article-hero { aspect-ratio: 16 / 9; max-height: 260px; }
    .article-inline-cta { flex-direction: column; padding: 22px 20px; }
    .article-inline-cta p { max-width: none; }
    .article-inline-cta .btn-gold { width: 100%; }
    .article-author-card { flex-direction: column; gap: 14px; }
    .article-related-grid { grid-template-columns: 1fr; }
    .article-sidebar { grid-template-columns: 1fr; }
    .article-body { font-size: 15px; }
    .article-body .article-lead { font-size: 16px; }
    .article-share-bar { flex-wrap: wrap; }
  }

