/* =============================================
   West Coast Kitchen Group — Landing Page
   ============================================= */

/* --- Custom Properties --- */
:root {
  --bg: #FDFAF6;
  --bg-alt: #F2EDE4;
  --bg-dark: #1B4332;
  --fg: #1A1A18;
  --fg-muted: #6B6560;
  --fg-on-dark: #FDFAF6;
  --accent: #C96E35;
  --accent-light: #E8B88A;
  --green: #1B4332;
  --border: rgba(26, 26, 24, 0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(26, 26, 24, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 26, 24, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 26, 24, 0.14);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* --- Typography --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover { background: #153726; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }

.btn-primary--large { padding: 1rem 2.2rem; font-size: 1.05rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--fg);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--fg); background: rgba(26,26,24,0.04); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--fg); background: rgba(26,26,24,0.05); }

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
}
.nav-cta:hover { background: #153726; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-steel-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27,67,50,0.03) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(26,26,24,0.04) 60px,
      rgba(26,26,24,0.04) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(26,26,24,0.04) 60px,
      rgba(26,26,24,0.04) 61px
    );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero-inner {
  grid-column: 1;
  position: relative;
  z-index: 1;
  padding: 4rem 3rem 4rem 2rem;
  max-width: 640px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

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

.hero-quiz-cta {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 2.25rem;
}

.hero-quiz-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-quiz-link:hover { opacity: 0.75; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.15rem;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual — CSS Kitchen Illustration */
.hero-visual {
  grid-column: 2;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26, 26, 24, 0.18), 0 2px 8px rgba(26, 26, 24, 0.08);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hk-station {
  background: linear-gradient(135deg, #E8E2DA 0%, #D9D0C5 100%);
  border-radius: 16px 16px 8px 8px;
  padding: 2rem;
  border: 1px solid rgba(26,26,24,0.1);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hk-hood {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 40px;
  background: var(--green);
  border-radius: 0 16px 0 0;
  opacity: 0.15;
}

.hk-counter {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hk-burner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #8B7355;
  background: #3D2B1F;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
  position: relative;
}
.hk-burner::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #2a1a0e 0%, transparent 70%);
}

.hk-shelf {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  border: 1px solid rgba(26,26,24,0.08);
}

.hk-jar {
  width: 28px;
  height: 40px;
  background: linear-gradient(135deg, #D4956A 0%, #A06830 100%);
  border-radius: 4px 4px 6px 6px;
  position: relative;
}
.hk-jar::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  background: #7A5530;
  border-radius: 2px 2px 0 0;
}
.hk-jar-sm { height: 30px; }
.hk-jar-sm::before { width: 10px; height: 6px; top: -6px; }

.hk-floor-tiles {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  height: 60px;
  background: repeating-linear-gradient(
    90deg,
    rgba(26,26,24,0.06),
    rgba(26,26,24,0.06) 1px,
    transparent 1px,
    transparent 40px
  );
  border-radius: 0 0 8px 8px;
}

/* Floating badge */
.hero-kitchen-art::before {
  content: '24/7 Access · Health Dept. Approved';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

/* =============================================
   KITCHENS SECTION
   ============================================= */
.kitchens {
  background: var(--bg);
  padding: 6rem 0;
}

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

.kitchens-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.kitchen-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.kitchen-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.kitchen-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kitchen-card:hover::before { transform: scaleX(1); }

.kc-icon {
  margin-bottom: 1rem;
}

.kc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.kc-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
  background: var(--bg-alt);
  padding: 6rem 0;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.features-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(27,67,50,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.feature-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Facility Diagram */
.facility-diagram {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.fd-header {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.fd-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(26,26,24,0.06);
}

.fd-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.fd-dot--on { background: #3D7A4A; }
.fd-dot--off { background: var(--accent); }

.fd-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.fd-status {
  font-size: 0.75rem;
  color: #3D7A4A;
  font-weight: 600;
}

.fd-status--limited { color: var(--accent); }
.fd-status--full { color: #8B6B4A; }

.fd-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.fd-leg {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.fd-cta {
  display: block;
  margin-top: 1.25rem;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
}
.fd-cta:hover { background: #153726; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--bg);
  padding: 6rem 0;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card--accent {
  background: var(--green);
  color: var(--fg-on-dark);
  border-color: transparent;
}

.tc-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.8;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.tc-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--fg);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-card--accent .tc-text { color: rgba(253,250,246,0.9); }

.tc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-avatar--c { background: var(--green); }

.tc-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.tc-role {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 0.1rem;
}

.testimonial-card--accent .tc-role { color: rgba(253,250,246,0.6); }

/* Stats card inside testimonials */
.tc-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.6);
  margin-bottom: 1.5rem;
}

.tc-counts {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
}

.tc-count {
  flex: 1;
  text-align: center;
}

.tc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.tc-lbl {
  display: block;
  font-size: 0.7rem;
  color: rgba(253,250,246,0.5);
  margin-top: 0.2rem;
}

.tc-divider {
  width: 1px;
  background: rgba(253,250,246,0.15);
  margin: 0.5rem 0;
}

.tc-cities {
  font-size: 0.7rem;
  color: rgba(253,250,246,0.5);
  line-height: 1.8;
  text-align: center;
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  background: var(--bg-alt);
  padding: 6rem 0;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  border-color: var(--green);
  border-width: 2px;
}

.pc-badge {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--fg-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.pc-badge--dark { background: var(--green); color: #fff; }

.pc-plan {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pc-from {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pc-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.pc-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.pc-features li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pc-features li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pc-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pc-link:hover { color: #153726; }

.pricing-addon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* =============================================
   LOCATION
   ============================================= */
.location {
  background: var(--bg);
  padding: 6rem 0;
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Stylized map */
.lm-frame {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lm-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 260px;
}

.lm-block {
  background: rgba(26,26,24,0.06);
  border-radius: 4px;
  aspect-ratio: 1;
  position: relative;
}

.lm-block--fill { background: rgba(27,67,50,0.12); }

.lm-block--highlight {
  background: rgba(201,110,53,0.25);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lm-pin { position: relative; z-index: 1; }

.lm-label {
  position: absolute;
  bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.location-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.location-address {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.location-nearby {
  margin-bottom: 2rem;
}

.ln-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.ln-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ln-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.location-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lc-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}
.lc-link:hover { text-decoration: underline; }

.lc-sep {
  color: var(--border);
}

/* =============================================
   CLOSING
   ============================================= */
.closing {
  background: var(--bg-alt);
  padding: 7rem 0;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--fg);
  color: rgba(253,250,246,0.5);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-name {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--fg-on-dark);
  font-size: 0.95rem;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(253,250,246,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg-on-dark); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(253,250,246,0.08);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  flex-wrap: wrap;
}
.footer-contact-link {
  color: rgba(253,250,246,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--fg-on-dark); }
.footer-sep { color: rgba(253,250,246,0.3); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .kitchens-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card--accent {
    grid-column: span 2;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 2.5rem auto 0;
  }
  .location-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 0;
  }
  .hero-inner {
    grid-column: 1;
    padding: 3rem 1.5rem;
    max-width: 100%;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card--accent {
    grid-column: 1;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .kitchens-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0; }
}
