@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Bebas+Neue&family=Karla:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
:root {
  --black: #0a0a0a;
  --off-white: #e8e4de;
  --mid-grey: #b0aca6;
  --dark-grey: #1a1a1a;
  --border-grey: #2a2a2a;
  --gold: #c9a96e;
  --gold-light: #e8cc99;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Karla', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border-grey);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0.9);
}

.logo-neon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow:
    0 0 4px rgba(255,255,255,0.7),
    0 0 8px rgba(255,255,255,0.5);
  white-space: nowrap;
  text-decoration: none;
}

.nav-logo span {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--mid-grey);
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}

.nav-book {
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-book:hover {
  background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%);
}

.hero-circle {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 0.5px solid rgba(201,169,110,0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 6s ease-in-out infinite;
  z-index: 1;
}

.hero-circle-2 {
  width: 500px;
  height: 500px;
  border-color: rgba(201,169,110,0.08);
  animation-delay: 1.5s;
}

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.02); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0 1rem;
}

.hero-eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem; /* increased from 0.7 */
  letter-spacing: 0.45em; /* more spacing = luxury feel */
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: block;

  /* 🔥 glow effect (matches your design) */
  text-shadow:
    0 0 4px rgba(201,169,110,0.6),
    0 0 8px rgba(201,169,110,0.4);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 14vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--mid-grey);
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  transition: background 0.3s, color 0.3s;
  margin: 0.5rem;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--mid-grey);
  border: 0.5px solid var(--border-grey);
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  transition: color 0.3s, border-color 0.3s;
  margin: 0.5rem;
}

.btn-secondary:hover {
  color: var(--off-white);
  border-color: var(--mid-grey);
}

/* ── SECTIONS ── */
section {
  padding: 7rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: 0.04em;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.divider {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ── ABOUT IMAGE ── */
.about-image-container {
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border-grey);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.about-image:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}

/* ── SERVICES GRID WITH IMAGES ── */
.services-grid-with-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  width: 100%;
}

.service-card-with-image {
  background: var(--dark-grey);
  border: 0.5px solid var(--border-grey);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-with-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-image-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.service-card-with-image:hover .service-image-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.service-content {
  padding: 2rem 2rem 2.5rem;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1;
}

.service-card-with-image h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.service-card-with-image p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

.service-card-with-image ul {
  list-style: none;
  margin-top: 1.2rem;
}

.service-card-with-image ul li {
  font-size: 0.82rem;
  color: var(--mid-grey);
  padding: 0.3rem 0;
  border-bottom: 0.5px solid var(--border-grey);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card-with-image ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── SERVICES GRID (Original) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border-grey);
  margin-top: 4rem;
  border: 0.5px solid var(--border-grey);
  width: 100%;
}

.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: var(--dark-grey);
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

.service-card ul {
  list-style: none;
  margin-top: 1.2rem;
}

.service-card ul li {
  font-size: 0.82rem;
  color: var(--mid-grey);
  padding: 0.3rem 0;
  border-bottom: 0.5px solid var(--border-grey);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  height: 250px; /* force same height */
  overflow: hidden;
}

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

.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--border-grey);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  min-height: 220px;
}

/* ── BOOKING ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.booking-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.hours-table td {
  padding: 0.8rem 0;
  border-bottom: 0.5px solid var(--border-grey);
  font-size: 0.85rem;
}

.hours-table td:first-child { color: var(--mid-grey); }
.hours-table td:last-child { text-align: right; color: var(--off-white); }

.booking-form-wrap {
  background: var(--dark-grey);
  padding: 3rem;
  border: 0.5px solid var(--border-grey);
}

.booking-form-wrap h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 0.5px solid var(--border-grey);
  color: var(--off-white);
  padding: 0.9rem 1rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

/* ── BOOKING FORM DATE/TIME GRID ── */
.form-date-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-date-time {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-details .detail-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border-grey);
}

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 90px;
  padding-top: 0.2rem;
}

.detail-value {
  font-size: 0.92rem;
  color: var(--off-white);
  line-height: 1.7;
}

.detail-value a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s;
}
.detail-value a:hover { color: var(--gold); }

.map-embed {
  width: 100%;
  height: 380px;
  border: 0.5px solid var(--border-grey);
  filter: grayscale(80%) contrast(1.1);
}

/* ── ADVANCED FOOTER ── */
footer {
  border-top: 0.5px solid var(--border-grey);
  padding: 4rem 3rem;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-grey) 100%);
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo-section img {
  height: 50px;
  filter: brightness(0.9);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
}

.footer-main {
  text-align: center;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.footer-contact-info {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--border-grey);
  letter-spacing: 0.08em;
}

.footer-links-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

/* ── GIVEN_DEV CREDIT - MORE VISIBLE ── */
.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 0.5px solid var(--border-grey);
}

.footer-credit-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(201,169,110,0.08);
  border: 0.5px solid rgba(201,169,110,0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.footer-credit-inner:hover {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.3);
}

.footer-credit-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.footer-credit-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201,169,110,0.3);
}

.footer-credit-contact {
  font-size: 0.72rem;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
}

.footer-credit-contact a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit-contact a:hover {
  color: var(--gold-light);
}

.footer-divider {
  width: 1px;
  height: 12px;
  background: var(--border-grey);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 12rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0.5px;
  height: 60px;
  background: var(--gold);
  opacity: 0.4;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 0;
  margin-top: 5rem;
  border: 0.5px solid var(--border-grey);
  width: 100%;
}

.about-strip .strip-divider {
  background: var(--border-grey);
}

.about-item {
  padding: 3.5rem 3rem;
  text-align: center;
}

.about-item .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about-item .label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 0.5rem;
  display: block;
}

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid-with-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-logo-section {
    align-items: center;
  }
  
  .footer-links-section {
    align-items: center;
  }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }

  .nav-links, .nav-book {
    display: none;
  }

  .nav-toggle { display: flex; }

  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    border-bottom: 0.5px solid var(--border-grey);
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
  }

  nav.open .nav-book {
    display: block;
    margin: 0 2rem 1.5rem;
    text-align: center;
  }

  section { padding: 5rem 1.5rem; }

  .booking-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

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

  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-strip .strip-divider { display: none; }

  footer {
    padding: 3rem 1.5rem;
  }

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

/* ── MOBILE SPECIFIC FIXES ── */
@media (max-width: 768px) {
  /* Fix hero section */
  .hero {
    min-height: 100vh;
    padding: 7rem 1rem 3rem;
  }
  
  .hero-bg {
    background-position: center center !important;
    background-size: cover !important;
  }
  
  .hero-circle,
  .hero-circle-2 {
    display: none;
  }
  
  .hero-content {
    padding: 0 0.5rem;
  }
  
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }
  
  .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #e8cc99; /* soft gold */

  margin-bottom: 3rem;
  letter-spacing: 0.08em;

  text-shadow:
    0 0 4px rgba(232,204,153,0.6),
    0 0 8px rgba(201,169,110,0.8),
    0 0 16px rgba(201,169,110,0.6),
    0 0 30px rgba(201,169,110,0.4);
}
  
  /* Fix sections */
  section {
    padding: 4rem 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix service grids */
  .services-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1px;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.75rem;
  }
  
  /* Fix services page layout */
  .services-grid-with-images {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .service-image-wrap {
    aspect-ratio: 4/3;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  /* Fix two-column layouts */
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Fix about strip */
  .about-strip {
    margin-top: 3rem;
  }
  
  .about-item {
    padding: 2rem 1rem;
    border-bottom: 0.5px solid var(--border-grey);
  }
  
  .about-item:last-child {
    border-bottom: none;
  }
  
  .about-item .number {
    font-size: 3rem;
  }
  
  /* Fix page header */
  .page-header {
    padding: 9rem 1rem 3rem;
  }
  
  /* Fix footer credit for mobile */
  .footer-credit-inner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
  
  .footer-divider {
    display: none;
  }
  
  .footer-credit-name {
    font-size: 1.1rem;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  
  .service-card {
    padding: 1.2rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 3rem 0.8rem;
  }
}

/* ── SERVICES PAGE SPECIFIC MOBILE FIX ── */
.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-section-grid.reverse {
  direction: rtl;
}

.service-section-grid.reverse > * {
  direction: ltr;
}

.service-text {
  width: 100%;
}

.service-image {
  width: 100%;
}

.mobile-services-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 768px) {
  /* Force full width on services page */
  .service-section-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .service-section-grid.reverse {
    direction: ltr;
  }
  
  /* Fix service cards grid */
  .mobile-services-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  
  /* Ensure images don't overflow */
  .about-image-container {
    width: 100%;
    max-width: 100%;
  }
  
  .about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  /* Fix CTA section */
  section[style*="text-align: center"] {
    padding: 3rem 1rem !important;
  }
  
  /* Fix booking form grid */
  .booking-form-wrap div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .mobile-services-grid {
    grid-template-columns: 1fr !important;
  }
}.nav-logo {
  text-decoration: none !important;
}

.nav-logo:hover,
.nav-logo:focus,
.nav-logo:active {
  text-decoration: none !important;
}

.nav-logo span {
  text-decoration: none !important;
}

.nav-logo * {
  text-decoration: none !important;
}
a {
  text-decoration: none;
  color: inherit; /* keeps your design color */
}.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 images per row */
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 250px; /* same height for all */
  object-fit: cover; /* crops nicely */
  border-radius: 8px;
}.gallery img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
.script {
  font-family: 'Allura', cursive;
  font-size: 2em;
  color: #ffffff;
  letter-spacing: 0.08em;
}