/* ============================================================
   Royal Auto Spa — Haifa · Hebrew RTL
   Editorial cream + ink + gold, after the Atelier reference.
   Display: Suez One · Body: Heebo
   ============================================================ */
:root {
  --bg:        #f7f4f1;   /* warm cream page background */
  --bg-2:      #f1ede7;
  --card:      #ffffff;
  --line:      #e8e1d6;   /* hairline borders */
  --ink:       #17130c;   /* near-black warm ink */
  --ink-2:     #55503f;   /* secondary text */
  --muted:     #877e6b;   /* tertiary text */

  --gold:      #c89b3c;   /* brand gold — surfaces, icons */
  --gold-ink:  #8a6a1a;   /* darkened gold — text on cream/white (AA) */
  --gold-tint: rgba(200, 155, 60, 0.12);

  --night:     #14110c;   /* dark sections & hero card */
  --night-2:   #201b13;
  --night-line:rgba(255, 255, 255, 0.10);
  --cream-on-dark: #ece5d8;
  --muted-on-dark: #a89e8a;

  --whatsapp:  #1faf57;
  --danger:    #c8443c;

  --font-display: 'Suez One', 'Heebo', serif;
  --font-body: 'Heebo', 'Segoe UI', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 2px 10px -4px rgba(23, 19, 12, 0.10);
  --shadow-md: 0 14px 34px -18px rgba(23, 19, 12, 0.22);
  --shadow-lg: 0 30px 70px -30px rgba(23, 19, 12, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  background: linear-gradient(var(--bg), var(--bg-2));
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

:focus-visible { outline: 2.5px solid var(--gold-ink); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; inset-inline-start: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 10px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 28px); }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.14; letter-spacing: -0.5px; }

h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

.accent { color: var(--gold-ink); }
.on-dark .accent, .gallery .accent { color: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-tint); color: var(--gold-ink);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow--dark { background: rgba(200, 155, 60, 0.16); color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(30px, 5vw, 52px); }
.section-sub { color: var(--ink-2); margin-top: 14px; max-width: 56ch; }
.on-dark { color: var(--cream-on-dark); }
.on-dark-sub { color: var(--muted-on-dark); }

section { padding-block: clamp(60px, 9vw, 108px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 16px 26px; border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-dark  { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark:hover { background: #2a2417; }
.btn-gold  { background: var(--gold); color: var(--night); box-shadow: 0 14px 30px -14px rgba(200, 155, 60, 0.55); }
.btn-gold:hover { background: #d7ab4e; }
.btn-outline { border: 1.5px solid var(--line); background: var(--card); color: var(--ink); }
.btn-outline:hover { border-color: var(--gold); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.28); color: #fff; }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #23c563; }
.btn-sm { padding: 11px 20px; font-size: 0.92rem; min-height: 44px; }
.btn-block { width: 100%; }

.link-arrow { font-weight: 700; color: var(--gold-ink); white-space: nowrap; }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Header (floating rounded bar, after the reference) ---------- */
.site-header { position: sticky; top: 12px; z-index: 100; }
.header-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  height: 68px; padding-inline: clamp(14px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; flex: none; }
.logo-text {
  font-family: var(--font-body); font-weight: 800; font-size: 0.92rem;
  letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.2;
  display: flex; flex-direction: column;
}
.logo-text small { font-weight: 500; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.12em; }
.logo-text--light { color: #fff; }

.main-links { display: flex; gap: clamp(14px, 2.4vw, 30px); }
.main-links a { font-weight: 600; font-size: 0.95rem; color: var(--ink-2); padding-block: 6px; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.main-links a:hover { color: var(--ink); }
.main-links a.is-active { color: var(--ink); border-color: var(--ink); }

/* dark pill with a gold ring, like the reference "Book Now" */
.btn-book {
  background: var(--night); color: #fff;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.18), var(--shadow-sm);
}
.btn-book:hover { background: #2a2417; }
.btn-book svg:first-child { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--card); align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--night); color: #fff;
  display: flex; flex-direction: column;
  padding: 22px clamp(20px, 6vw, 34px) 34px;
  transform: translateY(-102%);
  transition: transform 0.45s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mobile-menu__brand { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); }
.mobile-menu__close { width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--night-line); display: flex; align-items: center; justify-content: center; }
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: 1.6rem; padding: 12px 0;
  border-bottom: 1px solid var(--night-line); color: var(--cream-on-dark);
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 28px; }
.mobile-menu__foot .phone { text-align: center; font-weight: 700; font-size: 1.15rem; color: var(--gold); }

/* ---------- Hero (light photo card, after the reference) ---------- */
.hero { padding-block: clamp(14px, 2.5vw, 26px) clamp(48px, 7vw, 76px); }

.hero-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: #efe7da; color: var(--ink);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: clamp(500px, 46vw, 640px);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  /* mirrored so the car sits on the left and the Hebrew copy on the open sky */
  transform: scaleX(-1);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  /* cream wash on the text side (right in RTL), like the reference */
  background: linear-gradient(to left, rgba(247, 244, 241, 0.94) 6%, rgba(247, 244, 241, 0.62) 34%, rgba(247, 244, 241, 0.05) 60%),
              linear-gradient(to bottom, rgba(247, 244, 241, 0.28), transparent 30%);
}

.hero-copy {
  position: relative; z-index: 2;
  flex: 1;
  padding: clamp(26px, 4.5vw, 60px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  max-width: 660px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--ink);
  font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.8rem); }
.hero-sub { color: var(--ink-2); margin-top: 18px; max-width: 40ch; font-size: 1.06rem; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }

.btn-hero { padding: 12px 24px 12px 28px; }
.btn-icon {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  margin-inline-start: -8px;
}
.btn-icon svg { width: 16px; height: 16px; }

.rating-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 9px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem; color: var(--ink-2); white-space: nowrap;
}
.rating-chip strong { color: var(--ink); }
.avatar-stack { display: inline-flex; margin-inline-end: 4px; }
.avatar-stack span {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--gold-tint); color: var(--gold-ink);
  border: 2px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.76rem;
}
.avatar-stack span + span { margin-inline-start: -10px; }

.hero-strip {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}
.hero-strip li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  padding: 22px 16px;
}
.hero-strip li + li { border-inline-start: 1px solid rgba(23, 19, 12, 0.09); }
.strip-icon {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.strip-icon svg { width: 21px; height: 21px; }
.hero-strip strong { font-size: 0.98rem; }
.strip-sub { font-size: 0.83rem; color: var(--ink-2); }

/* ---------- Reviews / trust ---------- */
.trust { background: transparent; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review-card blockquote { color: var(--ink-2); font-size: 0.97rem; flex: 1; }
.review-card figcaption { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.88rem; color: var(--muted); }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--gold-tint); color: var(--gold-ink);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
}

.trust-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 18px 26px; margin-top: 18px;
}
.google-badge { display: flex; align-items: center; gap: 14px; }
.g-icon { width: 34px; height: 34px; flex: none; }
.google-badge strong { display: block; }
.google-badge span { font-size: 0.88rem; color: var(--muted); }

.brands {
  margin-top: 34px; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px clamp(18px, 4vw, 44px) 30px;
}
.brands p { font-size: 0.98rem; font-weight: 700; color: var(--ink); margin-bottom: 22px; }
.brands ul { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px clamp(24px, 4.5vw, 54px); }
.brands img { height: 34px; width: auto; opacity: 0.8; }
.brand-word { font-weight: 700; letter-spacing: 0.2em; font-size: 0.95rem; color: #8f8a80; white-space: nowrap; }

/* ---------- Services ---------- */
.services { background: var(--card); border-block: 1px solid var(--line); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.svc-card {
  position: relative;
  background: var(--bg); border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(22px, 3vw, 30px);
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card--featured { border: 1.5px solid var(--gold); }
.svc-flag {
  position: absolute; top: -13px; inset-inline-start: 26px;
  background: var(--gold); color: var(--night);
  font-size: 0.78rem; font-weight: 800; padding: 4px 14px; border-radius: 999px;
}

.svc-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.svc-icon {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  background: var(--gold-tint); color: var(--gold-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-head p { color: var(--ink-2); font-size: 0.92rem; margin-top: 4px; }

.svc-list { border-top: 1px solid var(--line); flex: 1; }
.svc-row {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 6px; border-bottom: 1px solid var(--line);
  text-align: start; font-size: 0.93rem; border-radius: 6px;
  transition: background 0.2s, padding 0.2s;
}
.svc-row:hover { background: var(--gold-tint); padding-inline: 10px; }
.svc-row span { color: var(--ink-2); }
.svc-row b { color: var(--ink); font-weight: 800; white-space: nowrap; }
.svc-row em {
  font-style: normal; font-size: 0.7rem; font-weight: 800;
  background: var(--gold); color: var(--night);
  padding: 2px 8px; border-radius: 999px; margin-inline-start: 6px; white-space: nowrap;
}

.svc-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 16px; }
.price { font-family: var(--font-display); font-size: 1.5rem; }
.price span { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-inline-end: 4px; }
.svc-time { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

.svc-note { margin-top: 22px; font-size: 0.85rem; color: var(--muted); }

/* ---------- Gallery / before-after (dark) ---------- */
.gallery { background: var(--night); }
.gallery-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 60px); align-items: center; }

.steps { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.steps li { display: flex; gap: 16px; }
.step-num {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem;
}
.steps strong { color: var(--cream-on-dark); display: block; }
.steps p { color: var(--muted-on-dark); font-size: 0.93rem; }

.reveal-block { width: 100%; }
.reveal {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg);
  touch-action: none; cursor: ew-resize;
  background: var(--night-2);
}
.reveal-layer { position: absolute; inset: 0; }
.reveal-layer img { width: 100%; height: 100%; object-fit: cover; }
.reveal-after { clip-path: inset(0 50% 0 0); }
.reveal-tag {
  position: absolute; top: 14px; z-index: 3;
  font-size: 0.78rem; font-weight: 800; padding: 5px 13px; border-radius: 999px;
}
.tag-before { right: 14px; background: rgba(20, 17, 12, 0.72); color: #fff; }
.tag-after { left: 14px; background: var(--gold); color: var(--night); }
.reveal-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
  width: 3px; background: #fff; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
}
.reveal-knob {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: #fff; color: var(--night);
  display: flex; align-items: center; justify-content: center; gap: 1px;
  box-shadow: var(--shadow-md);
}
.reveal-knob svg { width: 14px; height: 14px; }
.reveal-caption { margin-top: 14px; text-align: center; font-size: 0.85rem; color: var(--muted-on-dark); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 60px); align-items: center; }

.about-stats { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.about-stats li {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 16px 22px; min-width: 128px;
}
.about-stats strong { font-family: var(--font-display); font-size: 1.45rem; display: block; color: var(--gold-ink); }
.about-stats span { font-size: 0.83rem; color: var(--muted); font-weight: 600; }

.about-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.about-card > img { height: 240px; width: 100%; object-fit: cover; }
.about-card-body { padding: clamp(22px, 3vw, 30px); }
.about-card-body h3 { margin-bottom: 14px; }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-inline-start: 30px; color: var(--ink-2); font-size: 0.95rem; }
.check-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a1a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.check-list strong { color: var(--ink); }
.check-list--dark li { color: var(--cream-on-dark); }
.check-list--dark li::before {
  background-color: rgba(200, 155, 60, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89b3c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- Booking ---------- */
.booking { background: var(--card); border-block: 1px solid var(--line); }

.booking-card {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.booking-form { padding: clamp(24px, 4vw, 40px); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.88rem; }
.req { color: var(--danger); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3.5px var(--gold-tint);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }

.form-submit-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.form-note { font-size: 0.84rem; color: var(--muted); max-width: 32ch; }
.form-status { margin-top: 12px; font-weight: 600; font-size: 0.92rem; min-height: 1.4em; }

.booking-side {
  background: var(--night); color: #fff;
  padding: clamp(24px, 4vw, 38px);
  display: flex; flex-direction: column; gap: 20px;
}
.booking-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.booking-photos img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.booking-side h3 { color: var(--cream-on-dark); }
.booking-side-note { margin-top: auto; font-size: 0.9rem; color: var(--muted-on-dark); padding-top: 10px; border-top: 1px solid var(--night-line); }
.booking-side-note a { color: var(--gold); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 4px 24px;
  transition: box-shadow 0.25s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; padding-block: 17px; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 22px; height: 22px; flex: none; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--gold-ink); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq-plus::before { width: 14px; height: 2.5px; }
.faq-plus::after { width: 2.5px; height: 14px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); }
.faq-item p { color: var(--ink-2); padding-bottom: 20px; font-size: 0.96rem; max-width: 62ch; }

/* ---------- Location ---------- */
.location { background: var(--card); border-top: 1px solid var(--line); }
.location-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 56px); align-items: start; }

.loc-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px); margin-top: 26px;
  display: flex; flex-direction: column; gap: 20px;
}
.loc-row { display: flex; gap: 14px; align-items: flex-start; }
.loc-icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--gold-tint); color: var(--gold-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.loc-icon svg { width: 21px; height: 21px; }
.loc-row h4 { font-size: 0.85rem; font-weight: 700; color: var(--muted); }
.loc-row p, .loc-row a { font-weight: 600; }
.loc-row a:hover { color: var(--gold-ink); }

.quick-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.social-row { display: flex; gap: 10px; }
.social-circle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--card);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-circle svg { width: 19px; height: 19px; }
.social-circle:hover { border-color: var(--gold); color: var(--gold-ink); transform: translateY(-2px); }

.map-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  min-height: 320px; align-self: stretch;
}
.map-frame > a:first-child { display: block; height: 100%; }
.map-frame img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.map-cta {
  position: absolute; bottom: 16px; inset-inline-start: 16px;
  background: var(--ink); color: #fff;
  font-size: 0.88rem; font-weight: 700; padding: 11px 18px; border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.map-cta:hover { background: #2a2417; }

/* ---------- Final CTA ---------- */
.final-cta { padding-block: 0 clamp(60px, 8vw, 96px); }
.cta-bar {
  background: var(--night); color: #fff;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-bar h2 { color: var(--cream-on-dark); font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.cta-bar p { color: var(--muted-on-dark); margin-top: 6px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--muted-on-dark); padding-top: clamp(44px, 6vw, 70px); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px;
  padding-bottom: 40px; border-bottom: 1px solid var(--night-line);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline { font-size: 0.93rem; max-width: 40ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--night-line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--cream-on-dark); font-size: 0.95rem; margin-bottom: 4px; }
.footer-col a { font-size: 0.93rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.93rem; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-block: 22px; font-size: 0.83rem;
}
.footer-bottom span:last-child { font-family: var(--font-display); color: var(--gold); letter-spacing: 0.03em; }

/* ---------- Booking system: validation + confirmation ---------- */
[hidden] { display: none !important; }

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3.5px rgba(200, 68, 60, 0.12);
}
.time-hint { font-size: 0.8rem; color: var(--muted); }

.booking-confirm {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 48px);
  max-width: 620px; margin-inline: auto;
  text-align: center;
}
.confirm-check {
  width: 76px; height: 76px; border-radius: 50%;
  background: #E8F8F1; color: #1FA971;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.confirm-check svg { width: 36px; height: 36px; }
.booking-confirm h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 10px; }
.confirm-sub { color: var(--ink-2); max-width: 44ch; margin-inline: auto; }

.confirm-notice {
  display: flex; align-items: flex-start; gap: 12px; text-align: start;
  background: #E8F8F1; border: 1.5px solid #1FA971; border-radius: var(--radius-md);
  padding: 14px 18px; margin-block: 22px;
  color: #0e5a38; font-size: 0.95rem; font-weight: 600;
}
.confirm-notice svg { width: 24px; height: 24px; flex: none; color: #1FA971; margin-top: 2px; }

.confirm-summary {
  text-align: start; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 4px 20px; margin-bottom: 24px;
}
.confirm-summary > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding-block: 11px; border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.confirm-summary > div:last-child { border-bottom: 0; }
.confirm-summary dt { color: var(--muted); font-weight: 600; flex: none; }
.confirm-summary dd { font-weight: 700; text-align: start; overflow-wrap: anywhere; }

.confirm-actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Scroll reveal ---------- */
.reveal-on-scroll { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-on-scroll.in-view { opacity: 1; transform: none; }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .main-links { display: none; }
  .burger { display: inline-flex; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid, .about-grid, .location-grid { grid-template-columns: 1fr; }
  .booking-card { grid-template-columns: 1fr; }
  .booking-side { order: -1; }
  .booking-side h3 br { display: none; }
  .map-frame { min-height: 300px; }
}

@media (max-width: 768px) {
  .hero-copy { max-width: none; }
  .reviews-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  /* portrait hero image kicks in: copy on the sky at the top, car below */
  .hero-card { min-height: 580px; justify-content: flex-start; }
  .hero-copy { flex: none; justify-content: flex-start; padding-top: 30px; }
  .hero-bg::after {
    background: linear-gradient(to bottom, rgba(247, 244, 241, 0.92) 0%, rgba(247, 244, 241, 0.55) 42%, rgba(247, 244, 241, 0) 66%);
  }
  .hero-strip { grid-template-columns: 1fr; margin-top: auto; }
  .hero-strip li {
    display: grid; grid-template-columns: auto 1fr; column-gap: 12px; row-gap: 0;
    align-items: center; text-align: start; padding: 11px 20px;
  }
  .strip-icon { grid-row: 1 / span 2; width: 40px; height: 40px; margin-bottom: 0; }
  .hero-strip li + li { border-inline-start: 0; border-top: 1px solid rgba(23, 19, 12, 0.09); }
  .hero-strip strong { font-size: 0.92rem; }
  .strip-sub { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .nav-cta { display: none; }
  .hero-ctas .btn { width: 100%; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .booking-photos { grid-template-columns: repeat(4, 1fr); }
  .svc-row { flex-wrap: wrap; }
  .brands ul { gap: 16px 26px; }
  .brands img { height: 26px; }
  .brand-word { font-size: 0.8rem; letter-spacing: 0.14em; }
}
