/* ==========================================================================
   KA CLEANING — stylesheet
   Light/cream theme with bronze accents.
   Fonts are loaded via <link> in each page's <head>, not @import — an @import
   here blocks rendering until the CSS is parsed AND the font CSS is fetched.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:            #ffffff;
  --bg-alt:        #fdfaf5;
  --bg-card:       #ffffff;
  --bg-sink:       #f7f2e9;

  /* Brand */
  --gold:          #b8791f;
  --gold-light:    #d49a3d;
  --gold-dark:     #8f5c13;
  --gold-wash:     rgba(184, 121, 31, 0.08);
  --gold-line:     rgba(184, 121, 31, 0.28);

  /* Ink */
  --ink:           #1c1c1c;
  --ink-soft:      #55504a;
  --ink-faint:     #8a837a;
  --line:          #e9e1d4;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:    10px;
  --radius-sm: 6px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ===== RESET ===== */
html { box-sizing: border-box; scroll-behavior: smooth; }
*::before, *::after { box-sizing: inherit; }
html, body, div, span, nav, main, section, article, aside, header, footer,
h1, h2, h3, h4, h5, h6, p, a, ul, ol, li,
form, input, textarea, select, button, label,
img, figure, figcaption, blockquote {
  box-sizing: inherit; margin: 0; padding: 0;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.15;
}
/* Rules either side of a centred heading */
.section-title span {
  display: inline-flex; align-items: center; gap: 18px;
}
.section-title span::before,
.section-title span::after {
  content: ''; height: 1px; width: clamp(30px, 8vw, 90px); background: var(--gold-line);
}
.section-sub {
  text-align: center; color: var(--ink-faint);
  font-size: 0.95rem; margin-top: 6px; margin-bottom: 34px;
}

.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--radius-sm);
  transition: all var(--transition); cursor: pointer;
  /* Never let a long label push the button past its container */
  box-sizing: border-box; max-width: 100%; text-align: center;
}
.btn-primary {
  background: var(--gold); color: #fff; border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,121,31,0.28);
}
.btn-outline {
  background: transparent; color: var(--gold); border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-wash); transform: translateY(-2px); }

/* ===== UTILITY TOP BAR ===== */
.topbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 9px; padding-bottom: 9px;
}
.topbar-contact { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-soft); transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--gold); }
.topbar-contact svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; color: var(--gold);
  transition: transform var(--transition), color var(--transition);
}
.topbar-social a:hover { color: var(--gold-dark); transform: translateY(-2px); }
.topbar-social svg { width: 17px; height: 17px; fill: currentColor; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 14px; padding-bottom: 14px;
}

/* Logo: circular KA monogram + wordmark */
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  letter-spacing: 1px; color: var(--gold); background: var(--bg-alt);
}
.nav-logo-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.45rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); line-height: 1.1;
}
.nav-logo-text span {
  display: block; font-size: 0.55rem; letter-spacing: 3px;
  color: var(--ink-faint); font-weight: 400; margin-top: 3px;
  border-top: 1px solid var(--gold-line); padding-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--ink); transition: color var(--transition);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gold); border: 2px solid var(--gold);
  padding: 10px 22px; border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { padding: 56px 0 70px; background: var(--bg); }
.hero .container {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 50px; align-items: center;
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.5px;
  text-transform: uppercase; color: var(--ink);
}
.hero-title .gold { color: var(--gold); display: block; }

.hero-rule {
  display: flex; align-items: center; gap: 14px;
  margin: 26px 0 22px; max-width: 340px;
}
.hero-rule::before, .hero-rule::after {
  content: ''; height: 1px; flex: 1; background: var(--gold-line);
}
.hero-rule span { color: var(--gold); font-size: 0.8rem; }

.hero-tagline {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 380px; margin-bottom: 30px;
}

/* Four trust markers with dividers */
.hero-badges {
  display: flex; gap: 0; margin-bottom: 34px; flex-wrap: wrap;
}
.hero-badge {
  flex: 1; min-width: 96px; text-align: center;
  padding: 0 12px; border-left: 1px solid var(--line);
}
.hero-badge:first-child { border-left: none; padding-left: 0; }
.hero-badge svg {
  width: 30px; height: 30px; margin: 0 auto 10px;
  fill: none; stroke: var(--gold); stroke-width: 1.6;
}
.hero-badge span {
  display: block; font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 500; line-height: 1.35;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--ink);
}

/* 2x2 photo grid */
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-grid figure {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3; box-shadow: 0 6px 22px rgba(0,0,0,0.10);
}
.hero-grid img,
.hero-grid picture { width: 100%; height: 100%; display: block; }
.hero-grid img { object-fit: cover; transition: transform 0.5s ease; }
.hero-grid figure:hover img { transform: scale(1.05); }

/* ===== SERVICES ===== */
.services { padding: 70px 0; background: var(--bg-alt); }
/* Fixed 4 columns so 8 cards land as a clean 4x4 block rather than 6 + an
   orphan row of 2. */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
  text-align: left; font: inherit; color: inherit; padding: 0;
  cursor: pointer; width: 100%;
}
.service-card:hover,
.service-card:focus-visible {
  border-color: var(--gold); transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12); outline: none;
}
.service-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-photo img { transform: scale(1.06); }
/* Circular icon straddling the photo edge */
.service-icon {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1; z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.16);
}
/* Just the title — compact, so the grid reads as a clean row of tiles rather
   than eight blocks of text competing with each other. */
.service-body {
  padding: 34px 12px 18px; text-align: center;
  display: flex; align-items: center; justify-content: center; min-height: 74px;
}
.service-body h3 {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--ink); line-height: 1.35; margin: 0;
  transition: color var(--transition);
}
.service-card:hover .service-body h3,
.service-card:focus-visible .service-body h3 { color: var(--gold); }

/* Detail markup lives in the HTML (so it's indexable) but is only ever shown
   inside the modal. */
.service-detail { display: none; }

/* ===== SERVICE MODAL ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,16,10,0.62);
  display: none; align-items: center; justify-content: center;
  padding: 24px; overflow-y: auto;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg); border-radius: var(--radius);
  max-width: 620px; width: 100%; max-height: 88vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3); position: relative;
}
.modal-photo { aspect-ratio: 16 / 7; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: var(--ink);
  font-size: 22px; line-height: 1; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.modal-close:hover { background: #fff; color: var(--gold); }
.modal-body { padding: 28px 32px 32px; }
.modal-body h3 {
  font-family: var(--font-display); font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold); line-height: 1.15; margin-bottom: 4px;
}
/* Small gold rule under the title */
.modal-body h3::after {
  content: ''; display: block; width: 44px; height: 2px;
  background: var(--gold); margin-top: 12px; margin-bottom: 18px;
}
.modal-body .lead {
  font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 26px;
}
.modal-body h4 {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 14px;
}
/* Two columns on wider screens so a six-item list doesn't run down the page */
.modal-body ul {
  margin: 0 0 24px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 22px;
}
.modal-body ul li {
  position: relative; padding-left: 26px; margin: 0 0 11px;
  font-size: 0.93rem; color: var(--ink); line-height: 1.55;
}
.modal-body ul li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--gold-wash);
  box-shadow: inset 0 0 0 1px var(--gold-line);
}
.modal-body ul li::after {
  content: ''; position: absolute; left: 5px; top: 10px;
  width: 4px; height: 7px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
.modal-note {
  background: var(--bg-sink); border-left: 3px solid var(--gold);
  padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 24px;
}
.modal-note strong {
  display: block; font-family: var(--font-display); font-size: 0.7rem;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
@media (max-width: 560px) {
  .modal-body ul { grid-template-columns: 1fr; }
}
.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
body.modal-open { overflow: hidden; }

/* ===== BEFORE & AFTER ===== */
.gallery { padding: 70px 0; background: var(--bg); }
/* Capped column width + centring, so an odd number of jobs leaves a centred
   last row instead of a lonely card stuck to the left. */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  justify-content: center;
  gap: 18px;
}
.gallery-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-card);
  transition: all var(--transition);
}
.gallery-card:hover {
  border-color: var(--gold-line); transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.09);
}
.gallery-images { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.gallery-img-wrap picture { display: block; width: 100%; height: 100%; }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gold); color: #fff;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  text-align: center; padding: 5px 0;
}
.gallery-label.after { background: var(--gold-dark); }
.gallery-caption { padding: 12px 14px; text-align: center; }
.gallery-caption h4 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--ink);
}
.gallery-caption p { font-size: 0.75rem; color: var(--ink-faint); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 70px 0; background: var(--bg-alt); }
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px;
}
.testimonial-author {
  font-family: var(--font-display); font-size: 0.78rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--gold);
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--gold-line);
  color: var(--gold); font-size: 1.3rem; line-height: 1;
}
.carousel-arrow:hover { background: var(--gold); color: #fff; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carousel-dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0;
  background: var(--line); border: none; transition: all var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 5px; }

.review-form-wrapper { margin-top: 38px; text-align: center; }
.review-cta-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-google-review { display: inline-flex; align-items: center; gap: 10px; }
.btn-google-review svg { flex-shrink: 0; }
.btn-leave-review { display: inline-flex; align-items: center; gap: 8px; }

/* ===== FORMS (shared by review + booking) ===== */
/* align-items:start stops a short cell (the star rating) being stretched to
   match a tall one and drifting out of line with the field beside it. */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.form-group { margin-bottom: 14px; }
/* The reset above gives every input a width, padding and border. A hidden
   input must never pick those up — belt and braces over the UA stylesheet. */
.form-group input[type="hidden"] { display: none !important; }
.form-group label {
  display: block; font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--ink);
  font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-wash);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-status { margin-top: 14px; font-size: 0.88rem; }
.form-status.success { color: #1f7a3d; }
.form-status.error   { color: #b3261e; }

.review-form {
  max-width: 600px; margin: 22px auto 0;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; text-align: left;
}
/* Styled as a field so it lines up with the name input beside it, instead of
   floating as loose characters. */
.star-rating {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px; min-height: 46px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1.4rem; line-height: 1; color: var(--line);
  width: 100%;
}
.star-rating .star {
  cursor: pointer; user-select: none;
  transition: color var(--transition), transform var(--transition);
}
.star-rating .star:hover { transform: scale(1.12); }
.star-rating .star.active { color: var(--gold); }

/* ===== BOOKING ===== */
.booking { padding: 70px 0; background: var(--bg); }
.booking-panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card); overflow: hidden;
  display: grid; grid-template-columns: 0.85fr 1.3fr 0.85fr;
}
/* min-width:0 is essential. Grid items default to min-width:auto, so a wide
   button refuses to shrink and overflows into the next column instead. */
.booking-col { padding: 34px 30px; min-width: 0; }
.booking-col + .booking-col { border-left: 1px solid var(--line); }
.booking-intro h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); line-height: 1.15; margin-bottom: 12px;
}
.booking-intro p { font-size: 0.92rem; margin-bottom: 22px; }

.booking-qr { text-align: center; }
.booking-qr h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.booking-qr p { font-size: 0.85rem; margin-bottom: 16px; }
.booking-qr img,
.booking-qr .qr-placeholder {
  width: 132px; height: 132px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.booking-qr .qr-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--ink-faint); text-align: center;
  padding: 10px; background: var(--bg-sink);
}
.booking-qr .qr-note {
  font-family: var(--font-display); font-size: 0.72rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-top: 10px;
}
/* Full-width submit buttons sit in narrow columns, so the generous side padding
   from .btn-primary is what causes the overflow — it isn't needed at 100% wide. */
.btn-submit {
  width: 100%; margin-top: 6px;
  padding-left: 16px; padding-right: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt); border-top: 1px solid var(--line);
  padding: 40px 0 26px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px; align-items: start;
}
.footer .nav-logo-text { font-size: 1.2rem; }
.footer h4 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.footer ul li { margin-bottom: 7px; }
.footer ul li a {
  font-size: 0.88rem; color: var(--ink-soft); transition: color var(--transition);
}
.footer ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 9px; font-size: 0.88rem;
}
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-strap {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold); line-height: 1.5;
}
.footer-strap em {
  display: block; font-family: var(--font-body); font-style: italic;
  font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--ink-faint); margin-top: 6px;
}
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 30px; padding-top: 20px;
  text-align: center; font-size: 0.8rem; color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { font-size: 0.75rem; color: var(--ink-faint); margin-top: 10px; line-height: 1.6; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 99;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; box-shadow: 0 5px 18px rgba(0,0,0,0.25);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== POLICY PAGES (privacy / terms / 404) ===== */
.policy-hero {
  background: var(--bg-alt); border-bottom: 1px solid var(--line);
  padding: 56px 20px 40px; text-align: center;
}
.policy-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.policy-hero p { color: var(--ink-faint); font-size: 0.92rem; }
.policy-body { max-width: 780px; margin: 0 auto; padding: 46px 24px 70px; }
.policy-body h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-top: 34px; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.policy-body p, .policy-body li { color: var(--ink-soft); line-height: 1.8; font-size: 0.94rem; }
.policy-body ul { padding-left: 20px; margin: 10px 0; list-style: disc; }
.policy-body ul li { margin-bottom: 6px; }
.policy-body a { color: var(--gold); }
.policy-body a:hover { text-decoration: underline; }
.policy-body strong { color: var(--ink); }
.policy-highlight {
  background: var(--bg-sink); border-left: 3px solid var(--gold);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0;
}
.policy-highlight p { margin: 0; }
.policy-important {
  background: #fffaf0; border: 1px solid var(--gold-line);
  border-radius: var(--radius); padding: 22px 24px; margin: 24px 0;
}
.policy-important h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--gold); margin: 0 0 10px;
}
.policy-important p:last-child { margin-bottom: 0; }
/* The model cancellation wording a customer can copy */
.cancel-wording {
  margin-top: 14px; padding: 14px 16px;
  background: var(--bg); border: 1px dashed var(--gold-line);
  border-radius: var(--radius-sm);
  font-style: italic; color: var(--ink-soft);
}
.back-link {
  display: inline-block; margin-bottom: 34px;
  color: var(--ink-faint); font-size: 0.9rem; transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

/* 404 */
.notfound {
  min-height: 78vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 60px 20px; gap: 6px;
}
.notfound .code {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4rem, 14vw, 8rem); line-height: 1;
  letter-spacing: 3px; color: var(--gold);
}
.notfound h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink); margin: 8px 0 6px;
}
.notfound p { color: var(--ink-soft); max-width: 460px; margin-bottom: 24px; }
.notfound .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.notfound .links { margin-top: 32px; font-size: 0.85rem; }
.notfound .links a { color: var(--ink-faint); margin: 0 10px; }
.notfound .links a:hover { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 38px; }
  .hero-tagline, .hero-rule { max-width: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-panel { grid-template-columns: 1fr 1fr; }
  .booking-col:nth-child(3) { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--line); }
  .testimonial-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px 24px 18px; display: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .navbar .container { position: relative; flex-wrap: nowrap; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .topbar .container { justify-content: center; gap: 10px; }
  .topbar-contact { gap: 16px; justify-content: center; font-size: 0.8rem; }
  .booking-panel { grid-template-columns: 1fr; }
  .booking-col + .booking-col { border-left: none; border-top: 1px solid var(--line); }
  .booking-col:nth-child(3) { grid-column: auto; }
  .testimonial-card { flex: 0 0 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-badge { min-width: 50%; border-left: none; padding: 12px 0; }
  .hero-badge:nth-child(odd) { border-right: 1px solid var(--line); }
}

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo-icon { width: 44px; height: 44px; font-size: 17px; }
  .hero-grid { gap: 8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .booking-col { padding: 26px 20px; }
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal { max-height: 92vh; border-radius: var(--radius) var(--radius) 0 0; }
  .modal-body { padding: 22px 20px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-in { opacity: 1; transform: none; }
}
