/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

:root {
  --primary: #F3C2A3;
  --primary-dark: #e8a07a;
  --primary-rgb: 243, 194, 163;
  --secondary: #FFF7D2;
  --accent: #909046;
  --bg: #FFFAF0;
  --white: #FFFFFF;
  --dark: #3a2e20;
  --text: #4a3b2a;
  --text-muted: #7a6a56;
  --text-subtle: #9a8a76;
  --card-bg: #FFFFFF;
  --card-border: #f0e8d8;
  --nav-bg: rgba(255,250,240,0.97);
  --footer-bg: #2e2416;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem);   font-weight: 700; line-height: 1.1;  letter-spacing: -0.01em; font-family: var(--font-heading); font-style: italic; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; font-family: var(--font-heading); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem);  font-weight: 600; line-height: 1.25; font-family: var(--font-heading); }
p  { font-size: clamp(1rem, 1.5vw, 1.1rem);   line-height: 1.7; }

/* ============================================================
   UTILITIES & SHARED BUTTONS
   ============================================================ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

.eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { color: var(--dark); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); }

.fade-in {
  opacity: 0;
  transition: opacity 600ms ease-in;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  background: var(--primary);
  color: var(--dark);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); }

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-social:hover { opacity: 0.85; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
  font-style: italic;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

.mobile-menu-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.mobile-menu-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-body);
  font-style: normal;
  transition: opacity 0.2s;
}

.mobile-menu-socials a:hover { opacity: 0.8; color: white; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-image: url('/assets/mag-hill-hero-dt.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(126, 100, 85, 0.58) 0%,
    rgba(30, 20, 10, 0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-left h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.hero-left .hero-sub { color: rgba(255,255,255,0.92); max-width: 480px; margin-bottom: 2rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

.hero-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-btn-book {
  background: var(--white);
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.hero-btn-book:hover { background: var(--secondary); transform: translateY(-2px); }

.hero-btn-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  border: 2px solid rgba(255,255,255,0.8);
  transition: background 0.25s, color 0.25s;
}
.hero-btn-email:hover { background: var(--white); color: var(--dark); }

/* Hero form card */
.hero-form-card {
  background: rgba(255,250,240,0.96);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 2rem;
  scroll-margin-top: 80px;
}

.hero-form-card h3 {
  color: var(--dark);
  margin-bottom: 0.4rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.hero-form-card .form-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #fdf6ec;
  border: 1.5px solid var(--card-border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--dark);
  padding: 0.9rem;
  border-radius: 50px;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-submit:hover { background: var(--primary-dark); }

.form-note {
  text-align: center;
  color: var(--text-subtle);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success h4 { color: var(--accent); font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); }

/* Hero entrance animations */
@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-left {
  animation: heroFadeLeft 0.9s ease-in-out forwards;
}
.hero-form-card {
  animation: heroFadeRight 0.9s ease-in-out 0.2s both;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--primary);
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 40s linear infinite;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2.5rem;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.35);
  color: var(--dark);
  flex-shrink: 0;
}

.trust-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

.trust-item-text strong { display: block; font-size: clamp(1rem, 1.5vw, 1.1rem); font-weight: 800; line-height: 1.2; color: var(--dark); }
.trust-item-text span  { font-size: 1rem; color: var(--dark); opacity: 0.75; }

@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    padding: 0 1rem;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--secondary);
  padding: 6rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 4px solid var(--primary);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(243, 194, 163, 0.35);
}

.service-icon {
  background: rgba(243, 194, 163, 0.18);
  border-radius: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--accent); }

.service-card h3 { color: var(--dark); margin-bottom: 0.6rem; }
.service-card .service-desc { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1rem; }

.service-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  background: var(--primary);
  color: var(--dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}

.service-price-note {
  display: block;
  font-size: 0.9rem;
  color: var(--text-subtle);
  margin-top: 0.5rem;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background-image: url('/assets/mag-hill-hero-mob.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(30, 20, 10, 0.633) 0%,
    rgba(139, 111, 94, 0.39) 100%
  );
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-inner .eyebrow { color: rgba(255,255,255,0.85); }
.about-inner h2 { color: var(--white); margin-bottom: 1.25rem; }
.about-inner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2rem; }

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.about-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.about-bullet svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

.about-btn {
  background: var(--white);
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.about-btn:hover { background: var(--secondary); transform: translateY(-2px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--bg);
  padding: 5rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  height: 380px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-marquee {
  display: none;
}

.gallery-marquee-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 20s linear infinite;
}

.gallery-marquee-item {
  width: 75vw;
  height: 56vw;
  max-width: 320px;
  max-height: 240px;
  flex-shrink: 0;
  margin-right: 0.75rem;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-marquee-item img { width: 100%; height: 100%; object-fit: cover; }

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background-image: url('/assets/mag-hill-test-bg.webp');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(141, 112, 95, 0.51) 0%,
    rgba(30, 20, 10, 0.623) 100%
  );
}

.testimonials-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.testimonials-header .eyebrow { color: rgba(255,255,255,0.85); }
.testimonials-header h2 { color: var(--white); margin-bottom: 1rem; }
.testimonials-header p { color: rgba(255,255,255,0.88); }

.testimonials-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.testimonial-quote-mark {
  font-size: 5rem;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  opacity: 0.25;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-stars span { color: #F5A623; font-size: 1.1rem; }

.testimonial-card blockquote {
  color: rgba(255,255,255,0.92);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.testimonial-author {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 600;
}

.testimonials-cta { text-align: center; margin-top: 3rem; }

.testimonials-cta .btn-white {
  background: var(--white);
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.testimonials-cta .btn-white:hover { background: var(--secondary); transform: translateY(-2px); }

/* ============================================================
   SERVICE AREA MARQUEE
   ============================================================ */
.service-area {
  overflow: hidden;
  padding: 1.25rem 0;
  background: var(--primary);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.35rem 3rem;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; padding: 0 1rem; gap: 0.5rem 1.5rem; }
}

/* ============================================================
   BOTTOM CONTACT FORM
   ============================================================ */
.bottom-form {
  background: var(--secondary);
  padding: 5rem 2rem;
  scroll-margin-top: 80px;
}

.bottom-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1140px;
  margin: 0 auto;
}

.bottom-form-info .eyebrow { margin-bottom: 0.75rem; }
.bottom-form-info h2 { color: var(--dark); margin-bottom: 1rem; }
.bottom-form-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-rows { display: flex; flex-direction: column; gap: 1rem; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-row svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-row a { color: var(--text); font-size: 1rem; transition: color 0.2s; }
.contact-row a:hover { color: var(--accent); }
.contact-row span { color: var(--text); font-size: 1rem; }

.bottom-form-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  padding: 2rem;
}

.bottom-form-card h3 { color: var(--dark); margin-bottom: 0.4rem; }
.bottom-form-card .form-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto 3rem;
}

.footer-brand .footer-logo {
  margin-bottom: 0.75rem;
}

.footer-brand .footer-logo img {
  height: 70px;
  width: auto;
}

.footer-brand p { color: #888; font-size: 1rem; line-height: 1.6; max-width: 260px; }

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: #888; font-size: 1rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a { color: #888; font-size: 1rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }
.footer-contact span { color: #888; font-size: 1rem; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-bar span, .footer-bar a { color: #555; font-size: 1rem; }
.footer-bar a:hover { color: var(--primary); }

/* ============================================================
   MOBILE FLOATING CALL BUTTON
   ============================================================ */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-call-btn:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* ============================================================
   ANIMATIONS & FADE-IN
   ============================================================ */
/* Handled via JS IntersectionObserver — base .fade-in class is in UTILITIES above */

/* ============================================================
   RESPONSIVE -- 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-social { display: none; }
  .hamburger { display: flex; }
  .mobile-call-btn { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .hero-form-card { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-btn-book, .hero-btn-email { width: 100%; text-align: center; justify-content: center; }

  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .about { padding: 4rem 1.5rem; }

  .gallery-grid { display: none; }
  .gallery-marquee-track { animation-duration: 38s; }
  .gallery-cta { margin-bottom: 2rem; }
  .gallery-marquee {
    display: block;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .testimonials-cards { flex-direction: column; }

  .bottom-form-inner { grid-template-columns: 1fr; gap: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE -- 480px
   ============================================================ */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Anchor scroll margin */
#hero-form, #bottom-form, section[id] { scroll-margin-top: 80px; }

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
#page-transition {
  position: fixed;
  inset: 0;
  background: #f9f5ee;
  z-index: 9999;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#page-transition.fade-out {
  opacity: 0;
  pointer-events: none;
}
