@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy:        #0f254a;
  --navy-dark:   #081730;
  --navy-light:  #1a3a70;
  --gold:        #a4854c;
  --gold-light:  #c0a060;
  --gold-pale:   #f4eddf;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --gray-light:  #f2f1ee;
  --gray:        #7a7a8a;
  --text:        #1c1c2e;
  --text-muted:  #5a5a6a;
  --border:      #e0dcd2;
  --shadow:      0 4px 24px rgba(15, 37, 74, 0.08);
  --shadow-lg:   0 8px 40px rgba(15, 37, 74, 0.14);
  --radius:      4px;
  --radius-lg:   8px;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1rem; }
p  { color: var(--text-muted); }

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

.section       { padding: 5.5rem 0; }
.section-light { background: var(--off-white); }
.section-navy  { background: var(--navy); }

.section-header          { text-align: center; margin-bottom: 3.5rem; }
.section-header h2       { margin-bottom: 0.6rem; }
.section-header p        { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-header .divider { display: block; width: 50px; height: 3px; background: var(--gold); margin: 1rem auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(164, 133, 76, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 37, 74, 0.06);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.nav-logo img { height: 64px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--text);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta .btn { padding: 0.55rem 1.3rem; font-size: 0.78rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── PAGE HEADER BANNER ── */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.page-header .breadcrumb a { color: var(--gold); }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; font-size: 1.05rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, var(--navy-light) 100%);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(164,133,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(164,133,76,0.05) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.trust-item .check { color: var(--gold); font-weight: 700; }
.trust-sep { color: rgba(255,255,255,0.2); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--gold);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.9rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.service-link:hover { color: var(--gold-light); }

/* ── WHY US / FEATURE GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.feature-item { text-align: center; }
.feature-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(164,133,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--gold);
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p  { color: rgba(255,255,255,0.7); max-width: 520px; margin: 1rem auto 2.5rem; }
.cta-banner .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: start;
}
.about-portrait { position: sticky; top: 100px; }
.portrait-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.portrait-avatar {
  width: 130px; height: 130px;
  background: rgba(164,133,76,0.15);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3.5rem;
  color: var(--gold);
}
.portrait-card h3 { color: var(--white); font-size: 1.35rem; margin-bottom: 0.25rem; }
.portrait-card .role { color: var(--gold); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.credentials { margin-top: 1.75rem; text-align: left; }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
}
.cred-item:last-child { border-bottom: none; }
.cred-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 0.9rem; }

.about-content h2  { margin-bottom: 1.25rem; }
.about-content p   { margin-bottom: 1.25rem; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.value-item {
  background: var(--gray-light);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.value-item h4 {
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}
.value-item p { font-size: 0.84rem; }

.iaa-notice {
  background: var(--gold-pale);
  border: 1px solid rgba(164,133,76,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.iaa-notice .notice-icon { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.iaa-notice h4 { font-family: 'Inter'; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.3rem; color: var(--navy); }
.iaa-notice p  { font-size: 0.85rem; margin: 0; }

/* ── SERVICES PAGE ── */
.service-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s;
}
.service-full:hover { box-shadow: var(--shadow-lg); }
.service-full-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.service-full-header .icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.service-full-header h3 { font-size: 1.3rem; }
.service-full p { margin-bottom: 1rem; }
.service-full ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
.service-full ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.service-full ul li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── BOOKING PAGE ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 3rem;
  align-items: start;
}
.booking-info { position: sticky; top: 100px; }
.booking-info h2 { margin-bottom: 1rem; }
.booking-info > p { margin-bottom: 1.5rem; }

.meta-list { display: flex; flex-direction: column; gap: 0.75rem; }
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.93rem;
}
.meta-item .ico {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.price-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.75rem 0;
}
.price-card .price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; }
.price-card .price-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.price-card .price-label  { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.price-card .price-note   { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.includes-list { list-style: none; }
.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.includes-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.booking-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.booking-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.booking-card > p { font-size: 0.9rem; margin-bottom: 1.75rem; }

.booking-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(164,133,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.slots-section h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}
.slot {
  padding: 0.5rem 0.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  background: var(--white);
  font-family: 'Inter', sans-serif;
}
.slot:hover { border-color: var(--gold); color: var(--gold); }
.slot.selected { background: var(--gold); border-color: var(--gold); color: var(--white); font-weight: 600; }
.slot.unavailable { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

.form-consent { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.82rem; color: var(--text-muted); }
.form-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }

.payment-info {
  background: var(--gold-pale);
  border: 1px solid rgba(164,133,76,0.25);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.payment-info .pi-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.stripe-btn { width: 100%; justify-content: center; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-card h3 { color: var(--white); margin-bottom: 1.75rem; font-size: 1.35rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .cd-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-detail h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}
.contact-detail p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }
.contact-detail a  { color: rgba(255,255,255,0.65); }
.contact-detail a:hover { color: var(--gold); }

.hours-table { width: 100%; font-size: 0.84rem; color: rgba(255,255,255,0.65); }
.hours-table tr td:last-child { text-align: right; color: rgba(255,255,255,0.45); }

.remote-badge {
  background: rgba(164,133,76,0.15);
  border: 1px solid rgba(164,133,76,0.3);
  border-radius: 20px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 1.5rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 { margin-bottom: 0.5rem; font-size: 1.35rem; }
.contact-form-card > p { margin-bottom: 2rem; font-size: 0.9rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand img { height: 56px; margin-bottom: 1.25rem; background: #fff; padding: 6px 10px; border-radius: 6px; display: block; }
.footer-brand p { font-size: 0.86rem; line-height: 1.8; max-width: 300px; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.iaa-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(164,133,76,0.12);
  border: 1px solid rgba(164,133,76,0.25);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 1.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--gold); }

/* ── UTILS ── */
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-center  { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid,
  .booking-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .about-portrait,
  .booking-info { position: relative; top: 0; }
  .service-full ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 4.5rem 0 4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section { padding: 4rem 0; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
}
