/* ==========================================================================
   TAILORING BY CHI — DESIGN SYSTEM & EDITORIAL STYLESHEET
   Aesthetic: Warm Creamy Beige Canvas with Sleek Obsidian, Sand & Noir Accents
   (Completely removed orange for a refined luxury atelier aesthetic)
   ========================================================================== */

:root {
  /* Warm Creamy Beige Canvas & Surfaces */
  --bg-parchment: #EFE7D6;        /* Warm creamy beige background */
  --bg-parchment-soft: #EFE7D6;   /* Seamless warm canvas */
  --bg-card-sand: #DDD3BE;        /* Sand tone for featured banners */
  --bg-card-linen: #FAF4E8;       /* Light creamy card surface */
  --bg-card-light: #FDFBF7;       /* Soft high-contrast card */
  --bg-card-active: #E6DBC8;      /* Active state warm card fill */
  
  /* Sleek Obsidian & Noir Accents (Replaces Orange) */
  --color-noir: #181818;          /* Primary dark accent & button color */
  --color-noir-hover: #000000;    /* Dark hover */
  --color-noir-soft: rgba(24, 24, 24, 0.08);
  --color-noir-glow: rgba(24, 24, 24, 0.22);
  
  --color-gold: #C5A059;          /* Subtle refined champagne accent */
  --color-gold-soft: rgba(197, 160, 89, 0.15);

  /* Dark Obsidian Containers */
  --bg-dark: #181818;             /* Pure deep obsidian */
  --bg-dark-surface: #222222;     /* Dark hover / inner */
  --bg-dark-card: #282828;        /* Subtle dark highlight */

  /* Typography Colors */
  --text-dark: #181818;
  --text-body: #44403B;
  --text-muted: #7A746C;
  --text-light: #FAF6F0;
  --text-light-muted: #B8B2A8;

  /* Borders */
  --border-subtle: #DCD2BE;
  --border-card: rgba(24, 24, 24, 0.1);
  --border-light: rgba(255, 255, 255, 0.15);

  /* Fonts */
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --radius-pill: 9999px;

  --shadow-card: 0 14px 32px rgba(40, 35, 28, 0.06);
  --shadow-hover: 0 20px 42px rgba(40, 35, 28, 0.12);

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-parchment);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-parchment);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

button, input, select, textarea {
  font-family: inherit;
}

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

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

.site-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .site-container {
    padding: 0 1.25rem;
  }
}

/* ==========================================================================
   TOP MARQUEE TICKER (Sleek Obsidian & Champagne Warmth)
   ========================================================================== */
.top-marquee {
  background-color: var(--color-noir);
  color: #EFE7D6;
  padding: 0.65rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}

.marquee-content .dot {
  color: var(--color-gold);
  font-size: 1.1rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SITE HEADER & NAVIGATION (Properly Aligned, No Text Wrapping)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: rgba(239, 231, 214, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.logo-title {
  font-family: var(--font-editorial);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-body);
  position: relative;
  padding: 0.4rem 0.15rem;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-noir);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.38rem 0.85rem 0.38rem 0.45rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card-linen);
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.header-phone-link:hover {
  background-color: var(--color-noir);
  color: #FFFFFF;
  border-color: var(--color-noir);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.phone-icon-bubble {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EFE7D6;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.phone-icon-bubble i {
  width: 14px;
  height: 14px;
}

.header-phone-link:hover .phone-icon-bubble {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.primary-pill-btn {
  background-color: var(--color-noir);
  color: #FFFFFF;
  padding: 0.38rem 0.42rem 0.38rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-smooth);
}

.primary-pill-btn:hover {
  background-color: var(--color-noir-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--color-noir-glow);
}

.pill-arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #EFE7D6;
  color: var(--color-noir);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.primary-pill-btn:hover .pill-arrow-icon {
  background-color: #FFFFFF;
  color: var(--color-noir);
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card-linen);
  border: 1px solid var(--border-subtle);
  padding: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-toggle-btn:hover {
  background-color: var(--color-noir);
}

.mobile-toggle-btn:hover span {
  background-color: #FFFFFF;
}

.mobile-toggle-btn span {
  width: 18px;
  height: 2px;
  background-color: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-toggle-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO BENTO SECTION
   ========================================================================== */
.hero-bento-section {
  padding: 2.5rem 0 3.5rem;
}

.bento-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr;
  gap: 1.5rem;
  min-height: 580px;
}

.bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
}

.bento-hero-main {
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  min-height: 560px;
  box-shadow: var(--shadow-card);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.02) 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.card-overlay.light-gradient {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.02) 50%, rgba(0,0,0,0.3) 100%);
}

.card-top-tag, .card-bottom-content {
  position: relative;
  z-index: 2;
}

.badge-pill {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-pill.light {
  background: rgba(239, 231, 214, 0.92);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
}

.pill-action-btn {
  background: rgba(24, 24, 24, 0.88);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 0.45rem 0.5rem 0.45rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pill-action-btn:hover {
  background: var(--color-noir-hover);
  transform: translateY(-2px);
}

.action-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EFE7D6;
  color: var(--color-noir);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.pill-action-btn:hover .action-icon-circle {
  background: #FFFFFF;
  color: var(--color-noir);
}

/* Hero Right Column */
.bento-hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Atelier Top Card */
.bento-atelier-card {
  background-size: cover;
  background-position: center 30%;
  height: 250px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

.atelier-meta {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.atelier-meta .meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  opacity: 0.9;
}

.atelier-meta .meta-brand {
  font-family: var(--font-editorial);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 600;
  margin-top: 0.35rem;
}

.diagonal-arrow-btn {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(239, 231, 214, 0.92);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.diagonal-arrow-btn:hover {
  background: var(--color-noir);
  color: #FFFFFF;
  transform: rotate(45deg);
}

/* Statement Card (Bottom Right Dark Bento Card) */
.bento-statement-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.statement-title {
  font-family: var(--font-editorial);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.statement-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

/* Standardized Noir Pill Button (Replaces Terracotta Button) */
.terracotta-pill-btn {
  background-color: var(--color-noir);
  color: #FFFFFF;
  padding: 0.45rem 0.5rem 0.45rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px var(--color-noir-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.terracotta-pill-btn .action-icon-circle {
  background: #EFE7D6;
  color: var(--color-noir);
}

.terracotta-pill-btn:hover {
  background-color: var(--color-noir-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--color-noir-glow);
}

.terracotta-pill-btn:hover .action-icon-circle {
  background: #FFFFFF;
  color: var(--color-noir);
}

.terracotta-pill-btn.full-width {
  width: 100%;
  justify-content: space-between;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
}

/* ==========================================================================
   INTERACTIVE ARROW-DRIVEN SPECIALTIES CAROUSEL & SLIDER
   ========================================================================== */
.specialties-grid-section {
  padding: 4.5rem 0 5rem;
  background-color: var(--bg-parchment);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.specialties-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.header-titles .section-title {
  font-family: var(--font-editorial);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
}

.specialty-nav-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.specialty-tabs-bar {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-card-linen);
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  overflow-x: auto;
  max-width: 100%;
}

.spec-tab {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.spec-tab:hover {
  color: var(--text-dark);
}

.spec-tab.active {
  background-color: var(--color-noir);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.slider-arrow-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-linen);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slider-arrow-btn:hover {
  background: var(--color-noir);
  color: #FFFFFF;
  border-color: var(--color-noir);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.slider-arrow-btn i {
  width: 18px;
  height: 18px;
}

.slider-counter {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  min-width: 55px;
  text-align: center;
}

/* CAROUSEL VIEWPORT & SLIDES */
.specialties-carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.specialties-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.specialty-slide {
  min-width: 100%;
  box-sizing: border-box;
  opacity: 0.4;
  transform: scale(0.98);
  transition: var(--transition-smooth);
}

.specialty-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-card-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--bg-card-linen);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 460px;
}

.slide-media {
  background-size: cover;
  background-position: center top;
  position: relative;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
}

.slide-media-badge {
  background: rgba(24, 24, 24, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.slide-info-panel {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slide-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.slide-main-title {
  font-family: var(--font-editorial);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.slide-paragraph {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.slide-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--bg-card-active);
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 24, 24, 0.06);
}

.slide-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.slide-feat i {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.slide-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.slide-pricing-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .slide-card-layout {
    grid-template-columns: 1fr;
  }
  .slide-media {
    min-height: 300px;
  }
  .slide-info-panel {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   EDITORIAL TYPOGRAPHY STATEMENT (With inline image pills)
   ========================================================================== */
.editorial-statement-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background-color: var(--bg-parchment);
}

.statement-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-headline {
  font-family: var(--font-editorial);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
}

.inline-pill-image {
  display: inline-block;
  width: 86px;
  height: 44px;
  border-radius: var(--radius-pill);
  background-size: cover;
  background-position: center;
  vertical-align: middle;
  margin: 0 0.4rem;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
}

.inline-pill-image.wide {
  width: 110px;
}

.inline-pill-image:hover {
  transform: scale(1.08);
}

.statement-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.lead-quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.heritage-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card-linen);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.badge-num {
  font-family: var(--font-editorial);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-noir);
  line-height: 1;
}

.badge-text {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
}

.editorial-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: var(--font-editorial);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ==========================================================================
   FEATURED CULTURE BANNER
   ========================================================================== */
.culture-banner-section {
  padding: 4.5rem 0 2.5rem;
}

.culture-banner-card {
  background-color: var(--bg-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.culture-banner-text {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-light);
}

.culture-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.culture-title {
  font-family: var(--font-editorial);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.culture-paragraph {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.culture-banner-media {
  background-size: cover;
  background-position: center top;
  min-height: 380px;
}

/* ==========================================================================
   COLLECTION & SERVICES BENTO SECTION
   ========================================================================== */
.services-collection-section {
  padding: 4.5rem 0;
}

.section-editorial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-editorial);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
}

.header-desc {
  max-width: 480px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
}

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

.service-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-card);
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.2) 40%, rgba(18,17,16,0.92) 100%);
  pointer-events: none;
}

.service-arrow-pill {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-noir);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-bento-card:hover .service-arrow-pill {
  background: #FFFFFF;
  color: var(--color-noir);
  transform: rotate(45deg);
}

.service-card-info {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.service-card-title {
  font-family: var(--font-editorial);
  font-size: 1.85rem;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.service-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.service-tag-pill {
  display: inline-block;
  background: rgba(239, 231, 214, 0.95);
  color: var(--text-dark);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Dark Editorial Card in Services */
.dark-editorial-card {
  background-color: var(--bg-dark);
  justify-content: space-between;
}

.dark-card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.bullet-item i {
  color: var(--color-gold);
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   FEATURED EDITORIAL WIDE BANNER
   ========================================================================== */
.editorial-wide-banner {
  padding: 2rem 0 4.5rem;
}

.wide-banner-card {
  background-color: var(--bg-card-sand);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.wide-banner-media {
  background-size: cover;
  background-position: center top;
  min-height: 440px;
  position: relative;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
}

.media-badge {
  background: rgba(24, 24, 24, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 500;
}

.wide-banner-copy {
  padding: 3.5rem 3.5rem 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wide-banner-title {
  font-family: var(--font-editorial);
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.wide-banner-paragraph {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dark-btn {
  background: var(--color-noir);
  color: #FFFFFF;
}

.text-link-btn {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
}

.text-link-btn:hover {
  color: var(--color-noir);
  gap: 0.6rem;
}

/* ==========================================================================
   INTERACTIVE ESTIMATOR (Dropdown & Noir/Champagne Palette)
   ========================================================================== */
.estimator-section {
  padding: 5rem 0;
  background-color: var(--bg-parchment);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.estimator-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.estimator-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-top: 0.75rem;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.control-label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
}

/* LUXURY CUSTOM DROPDOWN COMPONENT (Pure Luxury UI, No Native Browser OS Select) */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-trigger {
  width: 100%;
  background-color: var(--bg-card-linen);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.dropdown-trigger:hover, .custom-dropdown.open .dropdown-trigger {
  border-color: var(--color-noir);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--color-noir-soft);
}

.dropdown-arrow-icon {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown.open .dropdown-arrow-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: var(--bg-card-linen);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(24, 24, 24, 0.14);
  padding: 0.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition-smooth);
}

.custom-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background-color: var(--bg-card-active);
}

.dropdown-item.active {
  background-color: var(--color-noir);
  color: #FFFFFF;
}

.item-text-group {
  display: flex;
  flex-direction: column;
}

.item-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.item-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.dropdown-item.active .item-sub {
  color: rgba(255, 255, 255, 0.75);
}

.item-check {
  opacity: 0;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

.dropdown-item.active .item-check {
  opacity: 1;
}

.item-check i {
  width: 18px;
  height: 18px;
}

/* ALTERATION CHECKBOXES (Warm Neutral Fill, NO ORANGE) */
.alteration-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card-linen);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.checkbox-card:hover {
  border-color: rgba(24, 24, 24, 0.4);
}

.checkbox-card.checked {
  border-color: var(--color-noir);
  background: var(--bg-card-active);
}

.checkbox-card input[type="checkbox"] {
  accent-color: var(--color-noir);
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.check-info {
  display: flex;
  flex-direction: column;
}

.check-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.check-cost {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* SPEED SELECTOR */
.speed-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.speed-option {
  cursor: pointer;
}

.speed-option input {
  display: none;
}

.speed-box {
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-card-linen);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.speed-option input:checked + .speed-box {
  border-color: var(--color-noir);
  background: var(--bg-card-active);
}

.speed-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.speed-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 2px 0 6px;
}

.speed-fee {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Estimator Summary Card */
.estimator-summary-card {
  position: sticky;
  top: 100px;
}

.summary-card-inner {
  background: var(--bg-card-linen);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.summary-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--color-noir);
  color: #EFE7D6;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.summary-garment-title {
  font-family: var(--font-editorial);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  min-height: 90px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-body);
}

.breakdown-row.speed-row {
  color: var(--text-dark);
  font-weight: 700;
}

.summary-total-block {
  background: var(--bg-card-sand);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.total-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.total-price {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-noir);
}

.turnaround-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(24, 24, 24, 0.15);
}

.turnaround-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1;
}

.turnaround-label i {
  width: 16px;
  height: 16px;
  color: var(--color-noir);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.turnaround-value {
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  text-align: right;
}

.estimate-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.guarantee-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e6b3b;
  margin-top: 1.25rem;
}

.guarantee-tag i {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   BEFORE & AFTER TRANSFORMATION SLIDER
   ========================================================================== */
.transformation-section {
  padding: 5rem 0;
  background-color: var(--bg-parchment);
  border-bottom: 1px solid var(--border-subtle);
}

.transformation-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.transformation-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-top: 0.75rem;
}

.transformation-interactive-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  background: var(--bg-card-linen);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  align-items: center;
}

.transformation-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.slider-image-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  user-select: none;
  pointer-events: none;
}

.after-layer {
  width: 100% !important;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  will-change: clip-path;
  z-index: 2;
}

.layer-label {
  position: absolute;
  top: 1.25rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.after-label {
  right: 1.25rem;
  background: rgba(24, 24, 24, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.before-label {
  left: 1.25rem;
  background: rgba(239, 231, 214, 0.95);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  border: 1px solid var(--border-subtle);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.handle-line {
  flex: 1;
  width: 2px;
  background: #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.handle-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-noir);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  border: 2.5px solid #FFFFFF;
  transition: transform 0.15s ease;
}

.transformation-slider-container:hover .handle-circle {
  transform: scale(1.08);
}

.transformation-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.detail-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-active);
  border: 1.5px solid var(--border-subtle);
  color: var(--color-noir);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition-smooth);
}

.detail-item:hover .detail-icon-bubble {
  background: var(--color-noir);
  color: #FFFFFF;
  border-color: var(--color-noir);
  transform: translateY(-2px);
}

.detail-icon-bubble i {
  width: 20px;
  height: 20px;
}

.detail-text {
  flex: 1;
}

.detail-title {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.detail-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   REVIEWS & LOCAL TRUST
   ========================================================================== */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--bg-parchment);
}

.reviews-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.award-rating-card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  color: #D4AF37;
}

.stars-row .filled-star {
  fill: #D4AF37;
  width: 20px;
  height: 20px;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.review-card {
  background: var(--bg-card-linen);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition-smooth);
}

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

.review-card.featured-review {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--border-light);
}

.review-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: var(--color-noir);
  color: #EFE7D6;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.review-stars {
  color: #D4AF37;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-quote {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.review-card.featured-review .reviewer-meta {
  border-top-color: var(--border-light);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.reviewer-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-card.featured-review .reviewer-tag {
  color: var(--text-light-muted);
}

/* ==========================================================================
   LOCATION, MAP & HOURS SECTION
   ========================================================================== */
.contact-location-section {
  padding: 5rem 0;
  background-color: var(--bg-parchment);
  border-top: 1px solid var(--border-subtle);
}

.contact-bento-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card-linen);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.contact-info-side {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-title {
  font-family: var(--font-editorial);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.contact-lead {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-detail-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-noir-soft);
  color: var(--color-noir);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-row h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-detail-row p {
  font-size: 0.92rem;
  color: var(--text-body);
}

.phone-link {
  color: var(--color-noir);
  font-weight: 700;
  font-size: 1.15rem;
}

.sub-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.map-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-noir);
  margin-top: 0.35rem;
}

.map-action-link i {
  width: 14px;
  height: 14px;
}

.hours-schedule {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.hours-schedule strong {
  color: var(--text-dark);
}

.location-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-map-side {
  position: relative;
  min-height: 480px;
}

.map-visual-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ==========================================================================
   EDITORIAL FOOTER WITH GIANT WATERMARK
   ========================================================================== */
.site-footer {
  background-color: var(--bg-card-sand);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-family: var(--font-editorial);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
  display: block;
  margin-bottom: 1rem;
}

.footer-bio {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.newsletter-inline {
  display: flex;
  background: var(--bg-parchment);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.3rem 0.3rem 1.1rem;
  box-shadow: var(--shadow-card);
  max-width: 340px;
  border: 1px solid var(--border-subtle);
}

.newsletter-input {
  border: none;
  background: none;
  outline: none;
  font-size: 0.85rem;
  flex: 1;
  color: var(--text-dark);
}

.newsletter-submit-btn {
  background: var(--color-noir);
  color: #FFFFFF;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.newsletter-submit-btn:hover {
  background: var(--color-noir-hover);
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.footer-links, .footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-noir);
  padding-left: 4px;
}

.footer-contact-info li {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.45;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(24, 24, 24, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a:hover {
  color: var(--text-dark);
}

/* Giant Watermark Typography */
.giant-watermark-container {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  user-select: none;
  pointer-events: none;
  line-height: 0.8;
  overflow: hidden;
}

.giant-watermark-text {
  font-family: var(--font-editorial);
  font-size: 14vw;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(24, 24, 24, 0.05);
  display: block;
  white-space: nowrap;
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--bg-card-linen);
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-subtle);
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.75rem 2rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-muted);
}

.modal-title {
  font-family: var(--font-editorial);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card-sand);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--color-noir);
  color: #FFFFFF;
}

.modal-form {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 75vh;
  overflow-y: auto;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-field input, .form-field select, .form-field textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-parchment);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-noir);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px var(--color-noir-soft);
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.modal-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-note i {
  width: 16px;
  height: 16px;
  color: var(--color-noir);
}

.modal-submit {
  width: 100%;
  justify-content: space-between;
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
}

.floating-quick-bar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 95;
  display: none;
  background: rgba(24, 24, 24, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 4px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  gap: 6px;
  width: auto;
  max-width: 280px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.float-btn.call {
  background: rgba(255, 255, 255, 0.12);
  color: #EFE7D6;
}

.float-btn.call:hover {
  background: rgba(255, 255, 255, 0.2);
}

.float-btn.book {
  background: #EFE7D6;
  color: var(--color-noir);
}

.float-btn.book:hover {
  background: #FFFFFF;
}

.float-btn i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1100;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  color: #22c55e;
  display: flex;
  align-items: center;
}

.toast-icon i {
  width: 28px;
  height: 28px;
}

.toast-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.toast-message {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
/* Navigation responsive scaling for laptop screens */
@media (max-width: 1200px) {
  .header-container {
    padding: 0.8rem 1.25rem;
    gap: 1rem;
  }
  .main-nav .nav-list {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .logo-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 1024px) {
  .slide-card-layout {
    grid-template-columns: 1fr;
  }

  .slide-media {
    min-height: 280px;
  }

  .slide-info-panel {
    padding: 2rem;
  }

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

  .bento-hero-main {
    min-height: 480px;
  }

  .culture-banner-card {
    grid-template-columns: 1fr;
  }

  .culture-banner-media {
    min-height: 300px;
  }

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

  .dark-editorial-card {
    grid-column: span 2;
  }

  .wide-banner-card {
    grid-template-columns: 1fr;
  }

  .wide-banner-media {
    min-height: 320px;
  }

  .editorial-headline {
    font-size: 2.6rem;
  }

  .statement-sub-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .estimator-grid {
    grid-template-columns: 1fr;
  }

  .transformation-interactive-card {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-bento-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 992px) {
  body.menu-open {
    overflow: hidden;
  }

  .top-marquee {
    font-size: 0.75rem;
  }

  /* Header Mobile Bar */
  .header-container {
    padding: 0.75rem 1.25rem;
    gap: 1rem;
    width: 100%;
  }

  .brand-logo .logo-title {
    font-size: 1.85rem;
  }

  .brand-logo .logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .primary-pill-btn {
    display: none !important;
  }

  .header-phone-link {
    display: inline-flex !important;
    padding: 0.35rem 0.6rem;
    gap: 0.35rem;
  }

  .header-phone-link .phone-number {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex !important;
    flex-shrink: 0;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 58px);
    background: rgba(239, 231, 214, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.25rem 2rem 5rem;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--border-subtle);
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    animation: slideDownNav 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

  .main-nav .nav-link {
    font-family: var(--font-editorial);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .status-indicator-pill {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
  }

  .site-container {
    padding: 0 1.25rem;
  }

  .transformation-slider-container {
    touch-action: pan-y;
  }

  /* Hero Section Mobile */
  .hero-bento-section {
    padding: 1.25rem 0 2.25rem;
  }

  .bento-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .bento-hero-main {
    min-height: 380px;
    height: 380px;
    padding: 1.5rem 1.25rem;
    order: 1;
  }

  .bento-hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    order: 2;
  }

  .bento-statement-card {
    padding: 1.75rem 1.25rem;
    order: 1;
  }

  .bento-atelier-card {
    height: 200px;
    padding: 1.25rem;
    order: 2;
  }

  .statement-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .statement-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  /* Specialties Carousel Mobile */
  .specialties-grid-section {
    padding: 3.5rem 0 4rem;
  }

  .specialties-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .header-titles .section-title {
    font-size: 2.2rem;
  }

  .specialty-nav-controls {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .specialty-tabs-bar {
    max-width: 100%;
    overflow-x: auto;
    padding: 0.3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .specialty-tabs-bar::-webkit-scrollbar {
    display: none;
  }

  .slide-card-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .slide-media {
    min-height: 240px;
    padding: 1rem;
  }

  .slide-info-panel {
    padding: 1.5rem 1.25rem;
  }

  .slide-main-title {
    font-size: 1.75rem;
  }

  .slide-features-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1rem;
  }

  .slide-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .slide-actions-row .terracotta-pill-btn {
    width: 100%;
    justify-content: space-between;
  }

  /* Culture Banner Mobile */
  .culture-statement-section {
    padding: 3.5rem 0;
  }

  .culture-banner-card {
    grid-template-columns: 1fr;
  }

  .culture-banner-copy {
    padding: 1.75rem 1.25rem;
  }

  .editorial-headline {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .inline-pill-image {
    width: 52px;
    height: 26px;
  }

  .inline-pill-image.wide {
    width: 70px;
  }

  /* Collection Grid Mobile */
  .services-bento-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card-tall {
    min-height: 380px;
  }

  .service-card-stacked {
    min-height: 220px;
  }

  .dark-editorial-card {
    grid-column: span 1;
    padding: 1.5rem 1.25rem;
  }

  /* Wide Banner Mobile */
  .wide-banner-card {
    grid-template-columns: 1fr;
  }

  .wide-banner-media {
    min-height: 240px;
  }

  .wide-banner-copy {
    padding: 1.75rem 1.25rem;
  }

  .wide-banner-title {
    font-size: 1.8rem;
  }

  .banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .banner-actions .pill-action-btn {
    width: 100%;
    justify-content: space-between;
  }

  /* Estimator Mobile - Clean Transparent Cardless Layout */
  .estimator-wrapper {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .estimator-summary-card {
    position: static;
  }

  .summary-card-inner {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .estimator-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .alteration-checklist {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .speed-selector {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .summary-box {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Before / After Slider Mobile */
  .transformation-section {
    padding: 3.5rem 0;
  }

  .transformation-interactive-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.75rem;
  }

  .transformation-slider-container {
    height: 340px;
  }

  .layer-label {
    font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
    top: 0.75rem;
  }

  .after-label {
    right: 0.75rem;
  }

  .before-label {
    left: 0.75rem;
  }

  .transformation-details {
    gap: 1.5rem;
  }

  .detail-item {
    gap: 1rem;
  }

  .detail-icon-bubble {
    width: 38px;
    height: 38px;
  }

  .detail-icon-bubble i {
    width: 18px;
    height: 18px;
  }

  .detail-title {
    font-size: 1.18rem;
  }

  /* Reviews & Contact Mobile */
  .reviews-section {
    padding: 3.5rem 0;
  }

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

  .review-card {
    padding: 1.5rem 1.25rem;
  }

  .award-badge-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }

  .contact-location-section {
    padding: 3.5rem 0 5rem;
  }

  .contact-bento-card {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    padding: 2rem 1.25rem;
  }

  .contact-title {
    font-size: 2.1rem;
  }

  .contact-map-side {
    min-height: 300px;
    height: 300px;
  }

  .location-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .location-cta-group .terracotta-pill-btn,
  .location-cta-group .pill-action-btn {
    width: 100%;
    justify-content: space-between;
  }

  /* Floating Bar & Footer Mobile */
  .floating-quick-bar {
    display: flex;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .giant-watermark-text {
    font-size: 18vw;
  }

  .modal-card {
    width: 94%;
    max-height: 88vh;
    padding: 1.5rem 1.25rem;
  }

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

/* Extra small mobile screens (< 480px) */
@media (max-width: 480px) {
  .site-container {
    padding: 0 1rem;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  .logo-title {
    font-size: 1.8rem;
  }

  .header-phone-link {
    padding: 0.35rem 0.5rem;
  }

  .header-phone-link .phone-number {
    display: none;
  }

  .bento-hero-main {
    min-height: 360px;
    padding: 1.25rem 1rem;
  }

  .statement-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .transformation-slider-container {
    height: 290px;
  }

  .slide-main-title {
    font-size: 1.55rem;
  }

  .total-price {
    font-size: 1.85rem;
  }
}
