/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --black:      #0d0a0b;
  --deep:       #1a1015;
  --rose:       #e8a0b0;
  --rose-light: #f2c4d0;
  --rose-dark:  #c47080;
  --champ:      #f5e6d0;
  --champ-dim:  #d4b896;
  --gold:       #c9a96e;
  --glass:      rgba(232,160,176,.07);
  --glass-b:    rgba(232,160,176,.18);

  --f-display: "Playfair Display", Georgia, serif;
  --f-italic:  "Cormorant Garamond", Georgia, serif;
  --f-body:    "Jost", system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--champ);
  font-family: var(--f-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
input, select, textarea, button { font-family: inherit; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--rose-dark); border-radius: 2px; }
input[type="date"]         { color-scheme: dark; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--champ) 40%, var(--gold) 70%, var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hidden { display: none !important; }

/* ── Animations ─────────────────────────────────────────────────────────── */
@keyframes float-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-pulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%     { opacity:  1; transform: scaleY(1.3); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.fade-up {
  opacity: 0;
  animation: float-up .75s ease both;
  animation-delay: var(--delay, 0s);
}

/* ── Sparkle Canvas ─────────────────────────────────────────────────────── */
#sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .75;
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(13,10,11,.65);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-b);
  transition: background .3s;
}
#navbar.scrolled { background: rgba(13,10,11,.96); }

.nav-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.45rem;
  background: linear-gradient(135deg,var(--rose-light),var(--champ),var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--champ-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--rose-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--rose-light);
  transition: .3s;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(280px, 85vw);
  z-index: 60;
  background: var(--deep);
  border-left: 1px solid var(--glass-b);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  color: var(--rose); font-size: 1.2rem;
  cursor: pointer;
}
.drawer-link {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--champ-dim);
  transition: color .2s;
}
.drawer-link:hover { color: var(--rose-light); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 55;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 2rem;
  background: linear-gradient(135deg,var(--rose-dark),var(--rose));
  color: var(--black);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,112,128,.35);
}
.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 2rem;
  background: transparent;
  color: var(--champ);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--glass-b);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose-light); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(196,112,128,.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 15% 85%, rgba(201,169,110,.10) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 85% 15%, rgba(232,160,176,.12) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1.4rem;
  border-radius: 20px;
  border: 1px solid var(--glass-b);
  background: var(--glass);
  color: var(--rose);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(4.5rem,14vw,10rem);
  line-height: .9;
  background: linear-gradient(160deg,var(--rose-light) 0%,var(--champ) 40%,var(--gold) 70%,var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(232,160,176,.2));
  margin-bottom: .1em;
}
.hero-tagline {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--champ-dim);
  line-height: 1.7;
  margin: 1.2rem 0 2.4rem;
}
.hero-ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
}
.scroll-indicator span {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom,var(--rose),transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ── Info Bar ────────────────────────────────────────────────────────────── */
.info-bar {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.info-bar > .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.8rem 2.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-right: none;
  backdrop-filter: blur(20px);
}
.info-bar > .info-item:last-child { border-right: 1px solid var(--glass-b); }
.info-icon { font-size: 1.3rem; margin-top: .15rem; }
.info-label {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .25rem;
}
.info-value {
  font-family: var(--f-italic);
  font-size: 1.05rem;
  color: var(--champ);
  line-height: 1.5;
}
.info-link { transition: color .2s; }
.info-link:hover { color: var(--rose-light); }

/* ── Divider ─────────────────────────────────────────────────────────────── */
.divider {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg,transparent,var(--glass-b),transparent);
}
.divider-diamond {
  width: 7px; height: 7px;
  background: var(--rose); opacity: .5;
  transform: rotate(45deg);
}

/* ── Section ─────────────────────────────────────────────────────────────── */
.section {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem 2rem;
  scroll-margin-top: 80px;
}
.section-label {
  font-size: .65rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .6rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--rose-dark);
}
.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.8rem,4vw,2.8rem);
  color: var(--champ);
  margin-bottom: .5rem;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg,var(--rose-light),var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { font-size: .875rem; color: var(--champ-dim); line-height: 1.8; margin-bottom: 2.5rem; max-width: 460px; }

/* ── Services Grid ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(20px);
  border-radius: 2px;
  padding: 1.8rem;
  transition: transform .3s, border-color .3s, background .3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; inset-x: 0; height: 1px;
  background: linear-gradient(90deg,transparent,var(--rose),var(--gold),transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(232,160,176,.38); background: rgba(232,160,176,.1); }
.service-card:hover::before { opacity: 1; }

.card-icon  { font-size: 1.8rem; margin-bottom: .75rem; }
.card-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--rose-light);
  padding-bottom: .8rem;
  margin-bottom: .8rem;
  border-bottom: 1px solid var(--glass-b);
}
.card-desc { font-size: .78rem; color: var(--champ-dim); margin-bottom: 1rem; }

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(232,160,176,.06);
}
.service-row:last-child { border-bottom: none; }
.row-name { font-size: .82rem; color: var(--champ-dim); flex: 1; }
.row-price-wrap { text-align: right; flex-shrink: 0; }
.row-price {
  font-family: var(--f-italic);
  font-size: 1rem;
  color: var(--rose-light);
}
.row-saving { font-size: .65rem; color: var(--gold); opacity: .85; }

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: .75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--glass-b);
}
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.88) saturate(.9);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(196,112,128,.15) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 0; }

/* ── Team ────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}
.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 2px;
  padding: 2.2rem;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.team-card:hover { transform: translateY(-3px); border-color: var(--rose); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--rose-dark);
  background: linear-gradient(135deg,rgba(196,112,128,.2),rgba(201,169,110,.2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-light);
  margin: 0 auto 1rem;
}
.team-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--champ);
  margin-bottom: .2rem;
}
.team-role { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-dark); }

/* ── Booking Form ────────────────────────────────────────────────────────── */
.booking-card {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(20px);
  border-radius: 2px;
  padding: 2.5rem;
}
.booking-shimmer-top {
  position: absolute; top: 0; inset-x: 0; height: 1px;
  background: linear-gradient(90deg,transparent,var(--rose),var(--gold),transparent);
}

.form-alert {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(232,160,176,.25);
  background: rgba(196,112,128,.09);
  border-radius: 2px;
  font-size: .83rem;
  color: var(--rose-light);
  margin-bottom: 1.5rem;
}
.form-alert::before { content: '⚠'; flex-shrink: 0; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form-full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .45rem;
}
.req { color: var(--rose); }
.opt { color: rgba(212,184,150,.45); }

.form-input {
  width: 100%;
  background: rgba(13,10,11,.65);
  border: 1px solid var(--glass-b);
  color: var(--champ);
  padding: .65rem .9rem;
  border-radius: 2px;
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-input:focus { border-color: var(--rose); }
.form-input::placeholder { color: rgba(212,184,150,.38); }
.form-input option { background: var(--deep); color: var(--champ); }
textarea.form-input { resize: vertical; }

/* Services checklist */
.services-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.checklist-cat-label {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose-dark);
  padding-bottom: .35rem;
  margin-bottom: .4rem;
  border-bottom: 1px solid var(--glass-b);
}
.checklist-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem .9rem;
  border: 1px solid var(--glass-b);
  border-radius: 2px;
  background: rgba(13,10,11,.4);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
}
.check-item.selected {
  border-color: var(--rose);
  background: rgba(232,160,176,.11);
}
.check-dot {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1px solid var(--rose-dark);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.check-item.selected .check-dot {
  background: linear-gradient(135deg,var(--rose-dark),var(--rose));
  border-color: transparent;
}
.check-dot::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0; transition: opacity .2s;
}
.check-item.selected .check-dot::after { opacity: 1; }
.check-text { flex: 1; min-width: 0; }
.check-name { font-size: .78rem; color: var(--champ-dim); transition: color .2s; line-height: 1.3; }
.check-item.selected .check-name { color: var(--rose-light); }
.check-saving { font-size: .65rem; color: var(--gold); }
.check-price {
  font-family: var(--f-italic);
  font-size: .95rem;
  color: rgba(212,184,150,.6);
  flex-shrink: 0;
  transition: color .2s;
}
.check-item.selected .check-price { color: var(--rose-light); }

/* Form footer */
.form-btn-group { display: flex; gap: .75rem; }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-b);
  flex-wrap: wrap;
}
.form-total-label {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .2rem;
}
.form-total-amount {
  font-family: var(--f-italic);
  font-size: 1.7rem;
  color: var(--rose-light);
  transition: color .2s;
}
.form-total-amount.empty { color: rgba(212,184,150,.25); font-size: 1.1rem; }

/* Spinner inside button */
.btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(13,10,11,.4);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-right: .5rem;
}

/* Success */
.booking-success {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem 2.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 2px;
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(196,112,128,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--rose);
  margin: 0 auto 1.5rem;
}
.booking-success h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--champ);
  margin-bottom: .6rem;
}
.booking-success p {
  font-size: .9rem;
  color: var(--champ-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  margin-top: 4rem;
  border-top: 1px solid var(--glass-b);
  scroll-margin-top: 80px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.8rem;
  background: linear-gradient(135deg,var(--rose-light),var(--champ));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .6rem;
}
.footer-tagline {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--champ-dim);
  font-size: .95rem;
  line-height: 1.7;
}
.footer-heading {
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.footer-info {
  display: block;
  font-size: .85rem;
  color: var(--champ-dim);
  margin-bottom: .55rem;
}
.footer-link { transition: color .2s; }
.footer-link:hover { color: var(--rose-light); }
.footer-nav { display: block; font-size: .83rem; color: var(--champ-dim); margin-bottom: .55rem; }
.footer-credit {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,160,176,.3);
  transition: color .2s, border-color .2s;
}
.footer-credit:hover { color: var(--rose-light); border-color: var(--rose-light); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--glass-b);
  display: flex; justify-content: space-between;
  font-size: .72rem;
  color: rgba(212,184,150,.28);
}

/* ── Status Badges ───────────────────────────────────────────────────────── */
.status-badge {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 20px;
}
.status-pending   { background: rgba(201,169,110,.18); color: #c9a96e; }
.status-confirmed { background: rgba(100,200,120,.18); color: #6dc87d; }
.status-cancelled { background: rgba(200,80,80,.18);  color: #e06060; }
.status-completed { background: rgba(140,140,200,.18); color: #9898d0; }

/* ── My Bookings lookup results ──────────────────────────────────────────── */
.lookup-result {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--glass-b);
}
.lookup-result:last-child { border-bottom: none; }
.lookup-result-slot { font-size: .93rem; color: var(--champ); margin-bottom: .3rem; }
.lookup-result-services { font-size: .78rem; color: var(--champ-dim); margin-bottom: .5rem; }
.lookup-result-footer { display: flex; align-items: center; gap: 1rem; }
.lookup-result-price {
  font-family: var(--f-italic);
  font-size: .95rem;
  color: var(--rose-light);
}

/* ── Desktop centering ───────────────────────────────────────────────────── */
@media (min-width: 901px) {
  .section-label { justify-content: center; }
  .section-title { text-align: center; }
  .section-sub   { text-align: center; margin: 0 auto; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .info-bar { grid-template-columns: 1fr; }
  .info-bar > .info-item { border-right: 1px solid var(--glass-b); border-bottom: none; }
  .info-bar > .info-item:last-child { border-bottom: 1px solid var(--glass-b); }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.gallery-tall,
  .gallery-item.gallery-wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 200px; }
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .checklist-items { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-btn-group { flex-direction: column-reverse; }
  .form-btn-group .btn-primary,
  .form-btn-group .btn-outline { width: 100%; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
