/* ============================================
   CORMICK'S HOUSE OF FLOWERS LLC — style.css
   Theme: BOUTIQUE FLORIST | Playfair Display + Mulish
   Palette: Deep Rose #8B2252 + Champagne #F5E6D3 + Dark #1A0D14
   ============================================ */

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

:root {
  --dark:        #1A0D14;
  --dark-2:      #120809;
  --dark-3:      #2A1820;
  --rose:        #8B2252;
  --rose-2:      #6E1A40;
  --rose-3:      #A83068;
  --rose-dim:    rgba(139,34,82,0.1);
  --rose-dim2:   rgba(139,34,82,0.2);
  --champagne:   #F5E6D3;
  --champagne-2: #EDD5BA;
  --champagne-3: #FAF2E8;
  --gold:        #C9973A;
  --gold-dim:    rgba(201,151,58,0.15);
  --amber:       #D97706;
  --amber-dim:   rgba(217,119,6,0.12);
  --green:       #2A7A4A;
  --green-dim:   rgba(42,122,74,0.12);
  --border:      #E8D5C4;
  --border-2:    #D4BDA6;
  --bg:          #FDF8F3;
  --surface:     #FFFFFF;
  --surface-2:   #FAF4ED;
  --text:        #1A0D14;
  --text-sub:    #5A3040;
  --text-muted:  #9A7080;
  --radius:      8px;
  --radius-lg:   14px;
  --nav-h:       64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Mulish', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2 { font-family: 'Playfair Display', serif; font-weight: 700; }
h3 { font-family: 'Playfair Display', serif; font-weight: 600; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }

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

.section-label {
  font-family: 'Mulish', sans-serif;
  font-size: 0.52rem; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.18;
  color: var(--text); margin-bottom: 18px;
}
.title-rose { color: var(--rose); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: #fff;
  font-family: 'Mulish', sans-serif; font-size: 0.72rem; font-weight: 700;
  padding: 12px 24px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--rose-2); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,34,82,0.35);
}

.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: 'Mulish', sans-serif; font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }

/* ==============================
   NAV
   ============================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  background: rgba(253,248,243,0.92);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(253,248,243,0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(26,13,20,0.07);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img { width: 28px; height: 28px; }
.nav-brand-wrap { display: flex; flex-direction: column; }
.nav-brand {
  font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700;
  color: var(--text); line-height: 1.2;
}
.nav-brand em { font-style: italic; color: var(--rose); }
.nav-brand-sub {
  font-family: 'Mulish', sans-serif; font-size: 0.4rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
}
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a {
  font-family: 'Mulish', sans-serif; font-size: 0.64rem; font-weight: 700;
  color: var(--text-sub); transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  flex-shrink: 0; background: var(--rose); color: #fff;
  font-family: 'Mulish', sans-serif; font-size: 0.64rem; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--rose-2); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text-muted);
  border-radius: 2px; transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   HERO — Dark Romantic + Inventory Widget
   ============================== */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  background: var(--dark);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(139,34,82,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(201,151,58,0.08) 0%, transparent 45%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
  pointer-events: none; z-index: 0;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

.hero-left { padding: 72px 0; }

.hero-badge {
  display: inline-block; margin-bottom: 22px;
  font-family: 'Mulish', sans-serif; font-size: 0.52rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--champagne); opacity: 0.6;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  font-weight: 700; line-height: 1.06;
  color: #fff; margin-bottom: 20px;
}
.hero-headline em { font-style: italic; color: var(--champagne); }

.hero-sub {
  font-family: 'Mulish', sans-serif;
  font-size: 0.84rem; color: rgba(255,255,255,0.5);
  line-height: 1.82; margin-bottom: 28px; font-weight: 300; max-width: 440px;
}

.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-stats {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; backdrop-filter: blur(8px);
}
.hs-item { display: flex; flex-direction: column; gap: 2px; }
.hs-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--champagne); line-height: 1; }
.hs-label { font-family: 'Mulish', sans-serif; font-size: 0.44rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; }
.hs-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.12); }

/* ==============================
   INVENTORY WIDGET
   ============================== */
.hero-right { padding: 72px 0; }

.inv-widget {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.iw-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: rgba(139,34,82,0.4); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.iwh-title {
  font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600;
  color: #fff; font-style: italic;
}
.iwh-live {
  font-family: 'Mulish', sans-serif; font-size: 0.52rem; font-weight: 700;
  color: #4ADE80; letter-spacing: 0.1em;
}

.iw-summary {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.iws-item {
  padding: 12px 16px; border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 2px;
}
.iws-item:last-child { border-right: none; }
.iws-item--alert .iws-val { color: #FCA5A5; }
.iws-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--champagne); line-height: 1; }
.iws-label { font-family: 'Mulish', sans-serif; font-size: 0.44rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }

.iw-items { padding: 10px 20px 6px; display: flex; flex-direction: column; gap: 9px; }

.iwi-row { display: flex; align-items: center; gap: 8px; }
.iwi-icon { font-size: 1rem; flex-shrink: 0; }
.iwi-name { font-family: 'Mulish', sans-serif; font-size: 0.64rem; color: rgba(255,255,255,0.75); width: 70px; flex-shrink: 0; }
.iwi-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.iwi-bar { height: 100%; background: var(--rose-3); border-radius: 100px; }
.iwi-bar--low { background: #F97316; }
.iwi-count { font-family: 'Mulish', sans-serif; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.8); width: 26px; text-align: right; flex-shrink: 0; }
.iwi-count--low { color: #FCA5A5; }
.iwi-unit { font-family: 'Mulish', sans-serif; font-size: 0.46rem; color: rgba(255,255,255,0.3); width: 36px; flex-shrink: 0; }

.iw-alert {
  display: flex; align-items: center; gap: 8px;
  margin: 10px 20px;
  padding: 8px 12px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius);
  font-family: 'Mulish', sans-serif; font-size: 0.6rem; color: #FCA5A5;
}
.iwa-icon { font-size: 0.8rem; flex-shrink: 0; }

.iw-cta {
  display: block; margin: 0 20px 18px;
  background: var(--rose); color: #fff; text-align: center;
  font-family: 'Mulish', sans-serif; font-size: 0.7rem; font-weight: 700;
  padding: 12px; border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s;
}
.iw-cta:hover { background: var(--rose-2); transform: translateY(-1px); }

/* ==============================
   FEATURES
   ============================== */
.features-section { padding: 110px 0; background: var(--surface); border-top: 1px solid var(--border); }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.feat-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: 0 6px 24px rgba(139,34,82,0.08); transform: translateY(-3px); }
.feat-card--rose { background: var(--rose-dim); border-color: var(--rose-dim2); }
.fc-icon { font-size: 1.7rem; display: block; margin-bottom: 10px; }
.feat-card h3 { font-family: 'Playfair Display', serif; font-size: 0.96rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.feat-card p { font-family: 'Mulish', sans-serif; font-size: 0.76rem; color: var(--text-sub); line-height: 1.78; font-weight: 300; }

/* ==============================
   PHOTO BAND
   ============================== */
.photo-band {
  display: grid; grid-template-columns: 2fr 1fr 1fr; height: 230px; gap: 3px;
}
.pb-item { overflow: hidden; }
.pb-item img { height: 100%; transition: transform 0.5s; filter: brightness(0.88); }
.pb-item:hover img { transform: scale(1.04); filter: brightness(1.0); }

/* ==============================
   HOW IT WORKS
   ============================== */
.how-section { padding: 110px 0; background: var(--champagne-3); border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  transition: box-shadow 0.2s;
}
.step-card:hover { box-shadow: 0 6px 24px rgba(139,34,82,0.07); }
.step-card--rose { background: var(--rose-dim); border-color: var(--rose-dim2); }
.step-num { font-family: 'Mulish', sans-serif; font-size: 0.52rem; font-weight: 800; letter-spacing: 0.2em; color: var(--text-muted); display: block; margin-bottom: 8px; }
.step-card--rose .step-num { color: var(--rose); }
.step-icon { font-size: 1.7rem; display: block; margin-bottom: 10px; }
.step-card h3 { font-family: 'Playfair Display', serif; font-size: 0.96rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.step-card p { font-family: 'Mulish', sans-serif; font-size: 0.76rem; color: var(--text-sub); line-height: 1.78; font-weight: 300; }

/* ==============================
   APP SECTION
   ============================== */
.app-section { padding: 110px 0; background: var(--surface); border-top: 1px solid var(--border); }
.app-inner { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center; }

.app-phone-wrap { position: relative; flex-shrink: 0; }
.phone-frame {
  width: 230px; background: var(--dark);
  border: 2px solid rgba(255,255,255,0.1); border-radius: 34px;
  overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(26,13,20,0.2);
}
.phone-notch {
  width: 90px; height: 22px; background: var(--dark); border-radius: 0 0 14px 14px;
  margin: 0 auto; position: relative; z-index: 2;
}
.phone-screen {
  background: var(--dark-3); padding: 8px 12px 8px; min-height: 380px;
  display: flex; flex-direction: column; gap: 8px;
}
.ps-header { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
.ps-appname { font-family: 'Playfair Display', serif; font-size: 0.76rem; font-weight: 600; color: var(--champagne); font-style: italic; }
.ps-notif {
  font-family: 'Mulish', sans-serif; font-size: 0.44rem; font-weight: 700;
  background: rgba(139,34,82,0.3); color: #FCA5A5;
  padding: 2px 7px; border-radius: 100px; border: 1px solid rgba(139,34,82,0.5);
}

.ps-today-summary {
  background: rgba(139,34,82,0.2); border: 1px solid rgba(139,34,82,0.3);
  border-radius: 10px; padding: 10px 12px;
}
.psts-label { font-family: 'Mulish', sans-serif; font-size: 0.44rem; font-weight: 800; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.psts-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.psts-k { font-family: 'Mulish', sans-serif; font-size: 0.58rem; color: rgba(255,255,255,0.5); }
.psts-v { font-family: 'Mulish', sans-serif; font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.psts-v--rose { color: var(--champagne); }

.ps-stock-mini { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); border-radius: 8px; padding: 8px 10px; }
.pssm-label { font-family: 'Mulish', sans-serif; font-size: 0.44rem; font-weight: 800; color: #FCA5A5; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px; }
.pssm-row { display: flex; justify-content: space-between; font-family: 'Mulish', sans-serif; font-size: 0.56rem; margin-bottom: 3px; }
.pssm-row--warn { color: #FCA5A5; }

.ps-orders-mini { display: flex; flex-direction: column; gap: 3px; }
.psom-row {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border-radius: 6px; padding: 5px 8px;
  font-family: 'Mulish', sans-serif; font-size: 0.56rem; color: rgba(255,255,255,0.6);
}
.psom-row span:nth-child(2) { flex: 1; }
.psom-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.psom-dot--green { background: #4ADE80; }
.psom-dot--amber { background: #FCA5A5; }
.psom-dot--blue { background: #60A5FA; }

.ps-add-btn {
  background: var(--rose); color: #fff; text-align: center; border-radius: 8px; padding: 9px;
  font-family: 'Mulish', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
}
.ps-bar { display: flex; justify-content: center; gap: 14px; padding: 6px 0 2px; }
.ps-bar span { width: 22px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; }
.ps-bar span:first-child { background: rgba(255,255,255,0.4); }
.phone-home-bar { height: 22px; background: var(--dark-2); display: flex; align-items: center; justify-content: center; }
.phone-home-bar::after { content: ''; width: 80px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; }

.phone-badge {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px 10px; display: flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 16px rgba(26,13,20,0.1);
}
.phone-badge span:first-child { font-size: 1rem; }
.phone-badge div { display: flex; flex-direction: column; gap: 1px; }
.phone-badge strong { font-family: 'Playfair Display', serif; font-size: 0.66rem; font-weight: 700; color: var(--text); }
.phone-badge span:last-child { font-family: 'Mulish', sans-serif; font-size: 0.44rem; color: var(--text-muted); }
.phone-badge--1 { bottom: 70px; left: -56px; }
.phone-badge--2 { bottom: 20px; right: -56px; }

.app-p { font-family: 'Mulish', sans-serif; font-size: 0.86rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.app-bullets { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.ab-item { display: flex; align-items: flex-start; gap: 10px; font-family: 'Mulish', sans-serif; font-size: 0.78rem; color: var(--text-sub); }
.ab-check { color: var(--rose); font-weight: 700; flex-shrink: 0; }
.app-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.arr-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }
.arr-score { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.arr-count { font-family: 'Mulish', sans-serif; font-size: 0.62rem; color: var(--text-muted); }

.gplay-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 18px;
  transition: background 0.15s, border-color 0.15s;
}
.gplay-btn:hover { border-color: var(--rose-dim2); }
.gplay-logo { width: 22px; height: 22px; flex-shrink: 0; }
.gplay-text { display: flex; flex-direction: column; gap: 1px; }
.gplay-small { font-family: 'Mulish', sans-serif; font-size: 0.4rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.gplay-big { font-family: 'Playfair Display', serif; font-size: 0.86rem; font-weight: 700; color: var(--text); }

/* ==============================
   REVIEWS
   ============================== */
.reviews { padding: 110px 0; background: var(--champagne-3); border-top: 1px solid var(--border); }
.reviews .section-title { margin-bottom: 36px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.rev-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s;
}
.rev-card:hover { box-shadow: 0 6px 24px rgba(139,34,82,0.08); }
.rev-card--dark { background: var(--dark); border-color: var(--dark); }
.rev-card--dark .rev-stars { color: var(--champagne); }
.rev-card--dark blockquote { color: rgba(245,230,211,0.65); }
.rev-card--dark .rev-author strong { color: var(--champagne); }
.rev-card--dark .rev-author span { color: rgba(245,230,211,0.4); }
.rev-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; }
.rev-card blockquote { font-family: 'Mulish', sans-serif; font-size: 0.78rem; color: var(--text-sub); line-height: 1.84; flex: 1; font-weight: 300; }
.rev-author strong { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text); }
.rev-author span { font-family: 'Mulish', sans-serif; font-size: 0.54rem; color: var(--text-muted); }

/* ==============================
   CONTACT
   ============================== */
.contact { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--text); margin-bottom: 12px; }
.contact-desc { font-family: 'Mulish', sans-serif; font-size: 0.86rem; color: var(--text-sub); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.contact-links { display: flex; flex-direction: column; gap: 9px; }
.contact-phone { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--rose); transition: color 0.2s; }
.contact-phone:hover { color: var(--rose-2); }
.contact-email { font-family: 'Mulish', sans-serif; font-size: 0.74rem; color: var(--text-sub); transition: color 0.2s; word-break: break-all; }
.contact-email:hover { color: var(--rose); }
.contact-links address { font-family: 'Mulish', sans-serif; font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.contact-img-wrap { position: relative; }
.contact-img-wrap img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.contact-badge-row {
  position: absolute; bottom: -14px; right: -14px;
  display: flex; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 16px rgba(139,34,82,0.1);
}
.cbr-item { padding: 10px 14px; display: flex; flex-direction: column; gap: 2px; border-right: 1px solid var(--border); }
.cbr-item:last-child { border-right: none; }
.cbr-val { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700; color: var(--rose); line-height: 1; }
.cbr-label { font-family: 'Mulish', sans-serif; font-size: 0.4rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.14em; }

/* ==============================
   FOOTER
   ============================== */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 52px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr; gap: 60px; align-items: start; padding-bottom: 40px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-icon { width: 32px; height: 32px; flex-shrink: 0; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700; color: var(--champagne); margin-bottom: 6px; font-style: italic; }
.footer-desc { font-family: 'Mulish', sans-serif; font-size: 0.72rem; color: rgba(245,230,211,0.3); line-height: 1.65; font-weight: 300; }
.footer-cols { display: flex; gap: 52px; }
.footer-col h4 { font-family: 'Mulish', sans-serif; font-size: 0.44rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(245,230,211,0.18); margin-bottom: 14px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col address { font-family: 'Mulish', sans-serif; font-size: 0.72rem; color: rgba(245,230,211,0.22); line-height: 1.65; transition: color 0.2s; }
.footer-col a:hover { color: var(--champagne); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 14px 28px; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-family: 'Mulish', sans-serif; font-size: 0.5rem; color: rgba(245,230,211,0.15); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-bottom: 60px; }
  .hero-left { padding: 52px 0 20px; }
  .hero-right { padding: 0 0 52px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .app-inner { grid-template-columns: 1fr; gap: 48px; }
  .app-phone-wrap { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-badge-row { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .rev-card:last-child { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(253,248,243,0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 12px 0 20px; border-bottom: 1px solid var(--border); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr; height: auto; }
  .pb-item { aspect-ratio: 16/9; }
  .pb-item:nth-child(n+2) { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rev-card:last-child { display: block; }
  .footer-cols { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-stats { flex-wrap: wrap; gap: 14px; border-radius: 16px; }
  .hs-sep { display: none; }
}
