/* ==========================================
   Maid Marvels v3 — Airbnb aesthetic, frictionless
   ========================================== */

:root {
  --rausch:    #FF385C;
  --rausch-dk: #E61E4D;
  --rausch-gd: linear-gradient(135deg, #FF385C 0%, #E61E4D 50%, #BD1E59 100%);

  --ink:       #222222;
  --ink-soft:  #484848;
  --muted:     #717171;
  --line:      #DDDDDD;
  --line-soft: #EBEBEB;
  --bg:        #FFFFFF;
  --bg-soft:   #F7F7F7;
  --bg-tint:   #F0F0F0;
  --bg-rose:   #FFF8F9;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --max: 1240px;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.muted { color: var(--muted); }

h1, h2, h3, h4 {
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3, h4 { font-weight: 700; }

.kicker {
  display: inline-flex; align-items: center;
  background: rgba(255,56,92,0.10);
  color: var(--rausch-dk);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
.kicker.dark { background: rgba(255,255,255,0.18); color: #fff; }

.hl { color: var(--rausch); }

/* =========== NAV =========== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--rausch);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  flex-shrink: 0;
}
.brand-mark { width: 30px; height: 30px; }
.brand-name { color: var(--rausch); }
.nav-right {
  display: flex; align-items: center; gap: 6px;
}
.nav-right a {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  transition: background .15s ease;
}
.nav-right a:hover { background: var(--bg-soft); }
.nav-right .signin {
  border: 1px solid var(--line);
  margin-left: 4px;
  padding: 10px 18px;
}
.nav-right .signin:hover { border-color: var(--ink); background: transparent; }

/* =========== HERO =========== */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(255,56,92,0.07), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(255,56,92,0.04), transparent 60%),
    var(--bg);
  position: relative;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.hero-text { max-width: 520px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.05;
}
.subhead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-bullets {
  display: grid; gap: 10px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.96rem;
  color: var(--ink);
  font-weight: 500;
}
.hero-bullets .dot {
  width: 8px; height: 8px;
  background: var(--rausch);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========== QUOTE CARD =========== */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
}
.qc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.qc-head h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.qc-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}
.qc-live::before {
  content: '';
  width: 6px; height: 6px;
  background: #1FCB4F;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(31,203,79,0.15);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

.qc-row { margin-bottom: 16px; }
.qc-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.opt-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.opt-group[data-group="bathrooms"] { grid-template-columns: repeat(4, 1fr); }
.opt {
  padding: 11px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: all .15s ease;
}
.opt:hover { border-color: var(--ink); }
.opt.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.seg-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.seg {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  transition: all .15s ease;
  white-space: nowrap;
}
.seg:hover { border-color: var(--ink); }
.seg.active {
  background: var(--rausch);
  background-image: var(--rausch-gd);
  border-color: var(--rausch);
  color: #fff;
}

.qc-gate {
  margin-top: 10px;
  background: rgba(255,56,92,0.06);
  border: 1px solid rgba(255,56,92,0.22);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.qc-gate[hidden] { display: none; }
.qc-gate strong { color: var(--rausch-dk); font-weight: 700; }

.qc-result {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.qc-price {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 8px;
}
.qc-strike {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}
.qc-amt {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.qc-per { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.qc-meta {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.qc-sep { color: var(--line); }

.qc-book {
  width: 100%;
  padding: 16px;
  background: var(--rausch);
  background-image: var(--rausch-gd);
  color: #fff;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: filter .2s ease, transform .15s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(255,56,92,0.32);
}
.qc-book:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,56,92,0.42); }
.qc-foot {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* =========== GALLERY =========== */
.gallery { padding: 80px 0 30px; }
.sec-head {
  margin-bottom: 36px;
  max-width: 720px;
}
.sec-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.sec-head p { font-size: 1.02rem; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gal-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #FFE5EC;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
}
.gal-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.gal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gal-card:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.88) 100%);
}
.gal-overlay {
  position: relative; z-index: 2;
  margin-top: auto;
  padding: 24px 22px 22px;
  color: #fff;
  width: 100%;
}
.gal-tag {
  display: inline-block;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.gal-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.gal-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  max-width: 92%;
  line-height: 1.45;
}
.gal-price {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,56,92,0.92);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Real photos (Unsplash) with gradient fallbacks */
.gal-1 {
  background-color: #FFD6E0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%),
    url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?w=800&auto=format&fit=crop&q=80');
}
.gal-2 {
  background-color: #D6EFF0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%),
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=800&auto=format&fit=crop&q=80');
}
.gal-3 {
  background-color: #FFEBD6;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&auto=format&fit=crop&q=80');
}
.gal-4 {
  background-color: #F5DDF5;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%),
    url('https://images.unsplash.com/photo-1556228720-195a672e8a03?w=800&auto=format&fit=crop&q=80');
}
.gal-5 {
  background-color: #DFF0DC;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%),
    url('https://images.unsplash.com/photo-1463797221720-6b07e6426c24?w=800&auto=format&fit=crop&q=80');
}
.gal-6 {
  background-color: #DCEAF5;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%),
    url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=800&auto=format&fit=crop&q=80');
}

/* =========== HOW IT WORKS =========== */
.how { padding: 70px 0; background: var(--bg-soft); margin-top: 50px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.how-step {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.how-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.how-num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  background: var(--rausch);
  background-image: var(--rausch-gd);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.how-step h4 { font-size: 1.15rem; margin-bottom: 8px; }
.how-step p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

/* =========== REVIEWS =========== */
.reviews { padding: 80px 0; }
.rev-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-soft);
}
.rev-big {
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--rausch);
  letter-spacing: -0.03em;
  line-height: 1;
}
.rev-sub { color: var(--muted); font-size: 1rem; margin-top: 8px; }
.rev-bars { display: grid; gap: 8px; }
.rev-bar {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
  color: var(--ink);
}
.rev-bar span:first-child { color: var(--muted); }
.rev-bar .bar {
  height: 8px;
  background: var(--bg-tint);
  border-radius: 999px;
  overflow: hidden;
}
.rev-bar .bar span {
  display: block; height: 100%;
  background: var(--ink);
  border-radius: 999px;
}
.rev-bar strong { font-weight: 600; text-align: right; font-size: 0.85rem; }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rev-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
}
.rev-stars { color: var(--rausch); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.rev-card blockquote {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 22px;
  font-weight: 500;
}
.rev-card figcaption {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.86rem;
}
.ravatar {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--rausch);
  background-image: var(--rausch-gd);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}
.rev-card figcaption strong { display: block; }
.rev-card figcaption span { color: var(--muted); font-size: 0.82rem; }

/* =========== TRUST STRIP =========== */
.trust-strip { background: var(--ink); color: #fff; padding: 36px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item {
  display: flex; flex-direction: column; gap: 4px;
}
.trust-item strong {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.trust-item span { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* =========== CLOSING =========== */
.closing { padding: 80px 0; }
.closing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-rose);
  border: 1px solid var(--line-soft);
}
.closing-text {
  padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.closing-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  font-weight: 800;
}
.closing-text p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 28px; max-width: 380px; }
.big-cta {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 16px 28px;
  background: var(--rausch);
  background-image: var(--rausch-gd);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  width: max-content;
  box-shadow: 0 6px 18px rgba(255,56,92,0.32);
  transition: transform .15s ease, box-shadow .25s ease;
}
.big-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(255,56,92,0.42); }

.closing-photo {
  background-color: #FFD6E0;
  background-image: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1000&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

/* =========== CAREERS BAND =========== */
.careers-band {
  background: linear-gradient(135deg, #2A0F1A 0%, #491025 50%, #6A0F2E 100%);
  color: #fff;
  padding: 36px 0;
}
.careers-grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.careers-band h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 8px 0 4px;
}
.careers-band p { color: rgba(255,255,255,0.78); font-size: 0.94rem; }
.ghost-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .2s ease;
}
.ghost-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* =========== FOOTER =========== */
.footer { background: var(--bg-soft); padding: 56px 0 24px; border-top: 1px solid var(--line-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 260px;
}
.footer h5 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.footer a {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 5px 0;
}
.footer a:hover { text-decoration: underline; }
.footer-base {
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.84rem;
  color: var(--ink-soft);
  flex-wrap: wrap; gap: 12px;
}
.footer-base > div { display: flex; gap: 18px; }
.footer-base a:hover { text-decoration: underline; }

/* =========== STICKY BOOK BAR =========== */
.sticky-book {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(0,0,0,0.10);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sticky-book.visible { transform: translateY(0); }
.sticky-book[hidden] { display: block !important; visibility: hidden; }
.sticky-book.visible[hidden] { visibility: visible; }
.sb-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.sb-text { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.sb-text strong { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; }
.sb-text span { color: var(--muted); font-size: 0.88rem; }
.sb-btn {
  padding: 12px 24px;
  background: var(--rausch);
  background-image: var(--rausch-gd);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(255,56,92,0.28);
  transition: transform .15s ease;
  flex-shrink: 0;
}
.sb-btn:hover { transform: translateY(-1px); }

/* =========== BOOKING MODAL =========== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 22, 26, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn .2s ease;
  overflow-y: auto;
}
.modal-overlay[hidden] { display: none !important; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 540px;
  padding: 36px 38px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.30);
  animation: slideUp .35s cubic-bezier(.2,.7,.2,1);
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  display: grid; place-items: center;
  transition: background .15s ease;
}
.modal-close:hover { background: var(--bg-tint); }

.modal-stepbar {
  display: flex; gap: 6px; margin-bottom: 22px;
}
.modal-stepbar span {
  flex: 1;
  height: 4px;
  background: var(--line-soft);
  border-radius: 999px;
  transition: background .25s ease;
}
.modal-stepbar span.active { background: var(--rausch); }
.modal-stepbar span.done { background: var(--ink); }

.modal-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.modal-sub { font-size: 0.92rem; margin-bottom: 22px; }

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.modal-full { display: block; margin-bottom: 12px; }
.modal-card label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 400;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  outline: none;
  border-color: var(--rausch);
  box-shadow: 0 0 0 4px rgba(255,56,92,0.10);
}
.modal-card textarea { resize: vertical; min-height: 80px; }

.modal-btn {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  background: var(--rausch);
  background-image: var(--rausch-gd);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 6px 18px rgba(255,56,92,0.30);
  transition: filter .15s ease, transform .15s ease;
}
.modal-btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.modal-back {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
  transition: color .15s ease;
}
.modal-back:hover { color: var(--ink); }

.modal-summary {
  display: flex; justify-content: space-between; align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  gap: 12px;
}
.modal-summary strong {
  font-size: 1rem;
  font-weight: 700;
  display: block;
}
.modal-summary p { font-size: 0.85rem; }
.modal-summary .sum-right { text-align: right; }
.modal-summary .sum-right strong {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.modal-summary .sum-right span { font-size: 0.78rem; margin-top: 4px; display: block; }

.modal-secure {
  background: rgba(31,203,79,0.08);
  border: 1px solid rgba(31,203,79,0.25);
  color: var(--ink-soft);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 18px;
}

/* Card form (demo placeholder for Stripe Payment Element) */
.card-placeholder { margin-bottom: 12px; }
.cp-row { margin-bottom: 12px; }
.cp-row-split {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.8fr;
  gap: 10px;
}
.cp-note {
  font-size: 0.75rem;
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 8px;
  border: 1px dashed var(--line);
}
.cp-note code {
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  border: 1px solid var(--line-soft);
}

.payment-error {
  background: rgba(255,56,92,0.08);
  border: 1px solid rgba(255,56,92,0.35);
  color: var(--rausch-dk);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 14px;
}
.payment-error[hidden] { display: none; }

/* Success state */
.modal-success { text-align: center; padding: 8px 0 0; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #1FCB4F;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(31,203,79,0.32);
}
.modal-success h3 { font-size: 1.6rem; margin-bottom: 8px; }
.modal-success > p { color: var(--muted); margin-bottom: 22px; }
.success-card {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 0 auto 22px;
  text-align: left;
}
.sc-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.88rem;
}
.sc-row:last-child { border-bottom: 0; }
.sc-row span { color: var(--muted); }
.sc-row strong { font-weight: 600; color: var(--ink); text-align: right; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-card { max-width: 560px; width: 100%; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-head { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .container, .nav-inner, .hero-grid, .sb-inner { padding-left: 20px; padding-right: 20px; }
  .nav-right a { font-size: 0.82rem; padding: 8px 10px; }
  .nav-right a:not(.signin):not(:last-of-type) { display: none; }
  .hero { padding: 40px 0 60px; }
  .gal-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .closing-card { grid-template-columns: 1fr; }
  .closing-text { padding: 36px 28px; }
  .closing-photo { min-height: 220px; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .quote-card { padding: 22px 20px; }
  .qc-amt { font-size: 2.1rem; }
  .seg { font-size: 0.78rem; padding: 9px 12px; }
}
@media (max-width: 460px) {
  .opt-group { gap: 4px; }
  .seg-group { gap: 4px; }
  .seg { padding: 8px 10px; font-size: 0.74rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .careers-grid { flex-direction: column; align-items: flex-start; }
}
