:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --gold: #d4a043;
  --gold-light: #e8bd5d;
  --gold-dark: #a87a2a;
  --text: #f5f5f5;
  --text-dim: #b8b8b8;
  --border: #2a2a2a;
  --radius: 12px;
  --max: 1200px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
iframe { max-width: 100%; }

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}
.section, .hero, .header, .footer { max-width: 100vw; overflow-x: clip; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

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

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1a1a;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 25px -10px var(--gold); color: #1a1a1a; }
.btn--ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: #1a1a1a; }

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo img { height: 56px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text-dim); }
.nav a:hover { color: var(--gold); }
.header__cta { padding: 10px 22px; font-size: 14px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  z-index: 110;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 90;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?w=1920') center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.4) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 80px 24px; max-width: 800px; }
.hero__eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__sub { font-size: 18px; color: var(--text-dim); margin-bottom: 36px; max-width: 600px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  color: var(--gold);
}
.hero__stats span { color: var(--text-dim); font-size: 14px; }

/* === Sections === */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section__eyebrow {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 56px;
  max-width: 720px;
}

/* === Services === */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(212, 160, 67, 0.3);
}
.service__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,160,67,0.15), rgba(212,160,67,0.04));
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  margin-bottom: 18px;
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 { font-family: 'Cinzel', serif; font-size: 22px; margin-bottom: 12px; color: var(--gold); }
.service p { color: var(--text-dim); font-size: 15px; }

/* === Pricing === */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.plan {
  position: relative;
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,160,67,0.08), var(--bg-card) 60%);
  transform: scale(1.02);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1a1a;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.plan__name { font-family: 'Cinzel', serif; font-size: 26px; margin-bottom: 8px; }
.plan__price { font-size: 28px; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.plan__tag { font-size: 13px; color: var(--text-dim); font-style: italic; margin-bottom: 24px; }
.plan ul { margin-bottom: 32px; flex: 1; }
.plan li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-dim); font-size: 15px; }
.plan li:last-child { border-bottom: none; }
.pricing__note { color: var(--text-dim); font-size: 14px; text-align: center; }

/* === Add-ons === */
.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.addon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.addon:hover { border-color: var(--gold); transform: translateY(-3px); }
.addon h3 { font-family: 'Cinzel', serif; font-size: 22px; color: var(--gold); margin-bottom: 6px; }
.addon__price { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 18px; }
.addon ul { margin-bottom: 18px; flex: 1; }
.addon ul li { padding: 6px 0; color: var(--text-dim); font-size: 14px; border-bottom: 1px dashed var(--border); }
.addon ul li:last-child { border-bottom: none; }
.addon__hook { font-style: italic; color: var(--gold-light); font-size: 14px; }

/* === Memberships === */
.memberships__lead { color: var(--text-dim); max-width: 720px; margin-bottom: 40px; font-size: 17px; }
.memberships {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.membership {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.membership:hover { border-color: var(--gold); transform: translateY(-3px); }
.membership--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,160,67,0.10), var(--bg-card) 55%);
}
.membership--gift {
  background: linear-gradient(180deg, rgba(212,160,67,0.05), var(--bg-card) 70%);
}
.membership__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1a1a;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.membership__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(212,160,67,0.12);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  margin-bottom: 16px;
}
.membership__icon svg { width: 28px; height: 28px; }
.membership__name {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.membership__price {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.1;
}
.membership__price span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 400;
}
.membership__tag {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.membership ul {
  margin-bottom: 24px;
  flex: 1;
}
.membership ul li {
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 14px;
  position: relative;
  padding-left: 22px;
}
.membership ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.membership__cta { width: 100%; }
.membership__gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px auto 0;
  font-size: 13px;
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}
.membership__gift svg { width: 14px; height: 14px; }
.membership__gift:hover { color: var(--gold); background: rgba(212,160,67,0.08); }

/* === Mobile / Collection === */
.mobile__lead { color: var(--text-dim); max-width: 720px; margin-bottom: 40px; font-size: 17px; }
.mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.mobile__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all var(--transition);
}
.mobile__card:hover { border-color: var(--gold); transform: translateY(-3px); }
.mobile__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,160,67,0.15), rgba(212,160,67,0.04));
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  margin-bottom: 16px;
}
.mobile__icon svg { width: 32px; height: 32px; }
.mobile__card h3 { font-family: 'Cinzel', serif; font-size: 24px; color: var(--gold); margin-bottom: 14px; }
.mobile__card p { color: var(--text-dim); margin-bottom: 14px; }
.mobile__fee {
  display: inline-block;
  background: rgba(212, 160, 67, 0.12);
  border: 1px solid var(--gold-dark);
  color: var(--gold-light) !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}
.mobile__note { color: var(--text-dim); font-size: 14px; text-align: center; margin-top: 16px; }

/* === Business / Fleet === */
.business {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.business__text p { color: var(--text-dim); margin-bottom: 16px; }
.business__list { margin: 16px 0 28px; }
.business__list li { padding: 8px 0; color: var(--text); }
.business__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.business__stats > div {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.business__stats strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 4px;
}
.business__stats span { color: var(--text-dim); font-size: 13px; }

/* === Form radios === */
.form__radios { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.form__radio {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  font-size: 14px !important;
  color: var(--text) !important;
  cursor: pointer;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition);
  word-break: break-word;
}
.form__radio:hover { border-color: var(--gold); }
.form__radio input { accent-color: var(--gold); }

/* Gift toggle + gift fields */
.form__check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(212, 160, 67, 0.06);
  border: 1px dashed var(--gold-dark);
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px !important;
  color: var(--text) !important;
}
.form__check input { accent-color: var(--gold); width: 18px; height: 18px; }
.form__check-label { display: inline-flex; align-items: center; gap: 8px; }
.form__check-label svg { width: 18px; height: 18px; color: var(--gold); }

.form__gift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  background: rgba(212, 160, 67, 0.04);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
}
.form__gift .form__full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form__gift { grid-template-columns: 1fr; } }

/* Booking total summary */
.form__total {
  background: linear-gradient(180deg, rgba(212,160,67,0.08), rgba(212,160,67,0.02));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 8px;
}
.form__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-dim);
  border-bottom: 1px dashed rgba(212,160,67,0.2);
  flex-wrap: wrap;
}
.form__total-row strong { color: var(--text); font-weight: 600; word-break: break-word; text-align: right; }
.form__total-row--final {
  border-bottom: none;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--gold-dark);
}
.form__total-row--final span { color: var(--gold-light); font-size: 15px; font-weight: 600; }
.form__total-row--final strong {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 26px;
}
.form__total-note { color: var(--text-dim); font-size: 12px; margin-top: 10px; font-style: italic; }

/* === Gallery === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery__item {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  filter: grayscale(20%);
}
.gallery__item:hover { filter: grayscale(0%); transform: scale(1.02); }

/* === About === */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__text p { color: var(--text-dim); margin-bottom: 16px; }
.about__list { margin-top: 24px; }
.about__list li { padding: 8px 0; color: var(--text); }
.about__image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* === Reviews === */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review {
  background: var(--bg-card);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.review::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 20px;
  font-family: 'Cinzel', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.review p { color: var(--text-dim); margin-bottom: 20px; font-style: italic; position: relative; }
.review__author { display: flex; flex-direction: column; }
.review__author strong { color: var(--gold); font-family: 'Cinzel', serif; font-size: 16px; }
.review__author span { font-size: 13px; color: var(--text-dim); }

/* === Contact === */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info p { color: var(--text-dim); margin-bottom: 24px; }
.contact__list { margin-bottom: 28px; }
.contact__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}
.contact__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(212,160,67,0.08);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
}
.contact__icon svg { width: 18px; height: 18px; }
.contact__map { margin-bottom: 24px; }
.contact__socials { display: flex; gap: 12px; }
.contact__socials a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contact__socials a:hover { background: var(--gold); color: #1a1a1a; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-dim); }
.form__full { grid-column: 1 / -1; }
.form input, .form select, .form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--transition);
  width: 100%;
  max-width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form textarea { resize: vertical; }
.form__submit { grid-column: 1 / -1; margin-top: 6px; }
.form__status { grid-column: 1 / -1; font-size: 14px; color: var(--gold); min-height: 20px; }

/* === Footer === */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo img { height: 48px; }
.footer p { color: var(--text-dim); font-size: 14px; }
.footer__nav { display: flex; gap: 24px; }
.footer__nav a { font-size: 14px; color: var(--text-dim); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.footer__socials a:hover { background: var(--gold); color: #1a1a1a; }

/* === Responsive === */
@media (max-width: 1024px) {
  .nav { gap: 18px; }
  .nav a { font-size: 14px; }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .about, .contact, .business, .mobile { grid-template-columns: 1fr; gap: 40px; }
  .form { grid-template-columns: 1fr; padding: 24px; }
  .plan--featured { transform: none; }
  .section { padding: 70px 0; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--bg-alt);
    flex-direction: column;
    align-items: stretch;
    padding: 96px 28px 32px;
    gap: 4px;
    border-left: 1px solid var(--border);
    transform: translateX(105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 100;
    box-shadow: -20px 0 40px rgba(0,0,0,0.4);
  }
  .nav.open { transform: translateX(0); }
  .nav a {
    font-size: 17px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .nav a:last-child { border-bottom: none; }
  body.nav-locked { overflow: hidden; }
  .burger { display: flex; }
  .header__cta { display: none; }
}

@media (max-width: 700px) {
  .container { padding: 0 16px; }
  .header__inner { height: 72px; }
  .logo img { height: 44px; }

  .section { padding: 56px 0; }
  .section__title { margin-bottom: 36px; }

  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero__content { padding: 20px 0; }
  .hero__sub { font-size: 16px; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 40px; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { gap: 18px; }
  .hero__stats li { flex: 1 1 30%; min-width: 0; }
  .hero__stats strong { font-size: 24px; }
  .hero__stats span { font-size: 12px; }

  .services, .pricing, .addons, .reviews { gap: 16px; }
  .service, .plan, .addon, .review, .mobile__card { padding: 28px 22px; }

  .plan__price { font-size: 24px; }
  .plan__name, .addon h3, .mobile__card h3 { font-size: 20px; }

  .about__image { aspect-ratio: 16/10; }

  .business__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .business__stats > div { padding: 20px 14px; }
  .business__stats strong { font-size: 26px; }

  .form { padding: 20px; gap: 14px; }
  .form input, .form select, .form textarea { font-size: 16px; padding: 12px 12px; } /* 16px prevents iOS zoom */
  .form__total-row--final strong { font-size: 22px; }

  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }

  .footer__inner { flex-direction: column; text-align: center; gap: 18px; }
  .footer__nav, .footer__socials { justify-content: center; flex-wrap: wrap; }

  .contact__list li { font-size: 14px; }
  .contact__map iframe { height: 200px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 32px; }
  .hero__eyebrow { font-size: 12px; letter-spacing: 2px; }
  .hero__stats { flex-direction: column; gap: 12px; }
  .hero__stats li { flex-direction: row; align-items: baseline; gap: 10px; }
  .hero__stats strong { font-size: 22px; }

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

  .form__radio { font-size: 13px !important; padding: 10px 12px; }
  .plan__price { font-size: 22px; }
}
