/* =====================================================
   Angel Home Maintenance — Site Styles
   Warm cream + navy + warm orange + gold accent
   ===================================================== */

:root {
  /* Brand palette */
  --navy:        #1E2A44;
  --navy-deep:   #141C30;
  --navy-soft:   #243154;
  --orange:      #D97B47;
  --orange-hot:  #E08A55;
  --orange-rim:  #B85D2E;
  --gold:        #E8B547;
  --gold-soft:   #F0C770;
  --cream:       #FBF7F0;
  --cream-deep:  #F4ECDD;
  --paper:       #FFFFFF;

  /* Text */
  --text:        #1E2A44;
  --text-soft:   #4A5468;
  --text-muted:  #6E7A93;
  --text-dim:    #8E96AA;

  /* Lines */
  --line:         rgba(30, 42, 68, 0.08);
  --line-strong:  rgba(30, 42, 68, 0.18);

  /* Fonts */
  --display: 'Fraunces', Georgia, serif;
  --body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(64px, 9vw, 120px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================================================
   Reset / base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, canvas { max-width: 100%; display: block; }
a { color: var(--orange-rim); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* Subtle paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* =====================================================
   Containers
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--orange);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(217, 123, 71, 0.30);
}
.btn-primary:hover {
  background: var(--orange-hot);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 123, 71, 0.40);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(20, 28, 48, 0.04);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}
.primary-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.primary-nav a:hover { color: var(--orange-rim); }
.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease-out);
}
.primary-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(30, 42, 68, 0.25);
}
.nav-cta:hover {
  background: var(--navy-soft);
  color: var(--cream);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   Hero
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232, 181, 71, 0.10), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(217, 123, 71, 0.08), transparent 55%),
    var(--cream);
}

.hero-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: float 20s ease-in-out infinite alternate;
}
.glow-1 {
  top: 10%; left: 5%;
  width: 360px; height: 360px;
  background: rgba(232, 181, 71, 0.55);
  animation-delay: 0s;
}
.glow-2 {
  bottom: 5%; right: 8%;
  width: 480px; height: 480px;
  background: rgba(217, 123, 71, 0.35);
  animation-delay: -7s;
}
.glow-3 {
  top: 35%; right: 35%;
  width: 280px; height: 280px;
  background: rgba(30, 42, 68, 0.18);
  animation-delay: -14s;
}

@keyframes float {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(40px, -30px); }
}

#house3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.hero-hint {
  position: absolute;
  top: 100px;
  right: var(--gutter);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeInHint 1s 1.5s var(--ease-out) forwards;
}
.hint-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes fadeInHint { to { opacity: 1; } }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 123, 71, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(217, 123, 71, 0); }
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  pointer-events: none;
}
.hero-copy {
  max-width: 620px;
  pointer-events: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-rim);
  margin-bottom: 22px;
  padding: 6px 14px 6px 10px;
  background: rgba(217, 123, 71, 0.10);
  border: 1px solid rgba(217, 123, 71, 0.20);
  border-radius: 100px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  color: var(--navy);
  margin-bottom: 24px;
}
.display em {
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 32px;
}
.lead strong {
  color: var(--navy);
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-meta li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-tick {
  color: var(--orange);
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
}

/* =====================================================
   Trust strip
   ===================================================== */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FEF1E5 0%, #FBE5D3 100%);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.trust-item span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =====================================================
   Section heading
   ===================================================== */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-num {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-rim);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}
.section-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* =====================================================
   Services
   ===================================================== */
.services {
  padding: var(--section-y) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 123, 71, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 42, 68, 0.08);
  border-color: rgba(217, 123, 71, 0.30);
}
.service:hover::before { opacity: 1; }

.service-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FEF1E5 0%, #FBE5D3 100%);
  color: var(--orange);
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.service-icon svg { width: 26px; height: 26px; }

.service h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.service p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.services-foot {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--display);
  font-weight: 500;
}

/* =====================================================
   About
   ===================================================== */
.about {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.about-head {
  text-align: left;
  margin: 0;
}
.about-head h2 {
  font-size: clamp(28px, 3.8vw, 42px);
}
.about-body {
  max-width: 600px;
}
.about-lead {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 20px;
  font-style: italic;
}
.about-body p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-body em {
  font-style: italic;
  color: var(--orange-rim);
  font-weight: 600;
}
.about-sign {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 17px;
  color: var(--navy) !important;
  margin-top: 24px !important;
}
.about-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  color: var(--orange);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.stat span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =====================================================
   Why us
   ===================================================== */
.why {
  padding: var(--section-y) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}
.why-pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.why-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 42, 68, 0.07);
}
.why-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-soft);
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  opacity: 0.6;
}
.why-pillar h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.why-pillar p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* =====================================================
   Bookings
   ===================================================== */
.bookings {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.bookings-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 28, 48, 0.20);
}
.bookings-card::before {
  content: "";
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232, 181, 71, 0.30), transparent 70%);
  pointer-events: none;
}
.bookings-card::after {
  content: "";
  position: absolute;
  left: -60px; top: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(217, 123, 71, 0.30), transparent 70%);
  pointer-events: none;
}
.bookings-copy {
  position: relative;
  z-index: 1;
}
.bookings-tag {
  display: inline-block;
  background: rgba(240, 199, 112, 0.18);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.bookings-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--cream);
  margin-bottom: 14px;
}
.bookings-copy h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 700;
}
.bookings-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 500px;
}
.bookings-art {
  position: relative;
  z-index: 1;
}
.bookings-art svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}

/* =====================================================
   Contact
   ===================================================== */
.contact {
  padding: var(--section-y) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 42, 68, 0.08);
}
.contact-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.55;
}
.contact-card-icon {
  display: inline-flex;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FEF1E5 0%, #FBE5D3 100%);
  color: var(--orange);
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 18px;
}
.contact-card .btn { margin-bottom: 12px; }
.contact-note {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

.contact-form-card { grid-column: span 1; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input, .field textarea {
  font-family: var(--body);
  font-size: 14px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px 12px;
  resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(217, 123, 71, 0.10);
}
.form-meta {
  font-size: 11px !important;
  color: var(--text-muted) !important;
  margin-top: 4px;
  font-style: italic;
  text-align: center;
}
.form-success {
  padding: 18px;
  background: linear-gradient(135deg, #FEF1E5, #FBE5D3);
  border: 1px solid rgba(217, 123, 71, 0.25);
  border-radius: 12px;
  text-align: center;
}
.form-success strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-success p {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 56px 0 32px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1000px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232, 181, 71, 0.35), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 12px;
}
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-soft);
  opacity: 0.9;
}
.footer-meta p, .footer-legal p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: var(--cream);
  opacity: 0.75;
}
.footer-meta a, .footer-legal a {
  color: var(--gold-soft);
  font-weight: 600;
}
.footer-meta a:hover, .footer-legal a:hover {
  color: var(--cream);
}

/* =====================================================
   Cinematic chrome
   ===================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--orange), var(--gold));
  transition: width 0.1s linear;
}

/* =====================================================
   Reveal animations
   ----------------------------------------------------
   Only HIDE .reveal elements when JS is confirmed running
   (the `.js` class is added to <html> by script.js).
   If JS fails, content shows immediately — no blank page.
   ===================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 960px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 24px var(--gutter);
    gap: 18px;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .hero-hint { display: none; }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bookings-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bookings-art { display: none; }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cta-row .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
