/* ===== Design tokens ===== */
:root {
  --black: #0e0d0c;
  --charcoal: #1a1816;
  --charcoal-2: #232019;
  --cream: #f4efe6;
  --muted: #b6ac9c;
  --accent: #2e7db0;
  --accent-bright: #57aadd;
  --red: #9a2b2b;
  --line: rgba(244, 239, 230, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 6px;
  --maxw: 1160px;
}

/* ===== Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Oswald", system-ui, sans-serif;
  font-weight: 300;
  color: var(--cream);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn--accent {
  background: linear-gradient(135deg, #3a93cb, #246a98);
  color: #fff;
  box-shadow: 0 10px 24px rgba(46, 125, 176, 0.25);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(46, 125, 176, 0.4); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-bright); }
.btn--block { width: 100%; }

/* ===== Diagonal stripe band (brand motif) ===== */
.stripe-band {
  height: 16px;
  background: repeating-linear-gradient(
    -25deg,
    var(--accent) 0 28px,
    #fff 28px 36px,
    #141318 36px 64px,
    #fff 64px 72px
  );
}

/* ===== Top bar ===== */
.topbar {
  background: var(--charcoal-2);
  color: var(--accent-bright);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 13, 12, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(14, 13, 12, 0.96); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  flex: none;
}
.brand__badge img { width: 40px; height: 40px; object-fit: contain; }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}
.brand__name b {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.brand__name i {
  font-style: normal;
  color: var(--accent-bright);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0;
}
.brand__name small {
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  color: var(--accent);
  margin-top: 4px;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 22px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(46, 125, 176,0.14), transparent 60%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at 30% 50%, #000 0%, transparent 75%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 13, 12, 0.58) 0%, rgba(14, 13, 12, 0.78) 55%, rgba(14, 13, 12, 0.95) 100%),
    linear-gradient(90deg, rgba(14, 13, 12, 0.88) 0%, rgba(14, 13, 12, 0.55) 45%, rgba(14, 13, 12, 0.2) 75%);
}
/* Reduced motion: videos are paused in script.js so their poster frame shows. */
.hero__content { position: relative; z-index: 2; padding: 80px 24px; max-width: 760px; }
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 18px;
}
.hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 520px;
  margin: 22px 0 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 44px;
  margin-top: 54px;
  flex-wrap: wrap;
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  color: var(--accent-bright);
  letter-spacing: 0.04em;
}
.hero__stats span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Section base ===== */
.section { padding: 100px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.section__lead { color: var(--muted); margin-top: 16px; }

/* ===== Services ===== */
.services { background: var(--charcoal); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: linear-gradient(180deg, var(--charcoal-2), rgba(35,32,25,0.4));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 125, 176,0.55);
  box-shadow: var(--shadow);
}
.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 0.95rem; min-height: 60px; }
.service-card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-card .price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--accent-bright);
}
.service-card .time {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-card--feature {
  border-color: rgba(46, 125, 176,0.5);
  background: linear-gradient(180deg, rgba(46, 125, 176,0.12), var(--charcoal-2));
}
.service-card__tag {
  position: absolute;
  top: -12px; left: 28px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: var(--black);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--accent), #1f6f8b);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 16px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.marquee__track i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ===== About ===== */
.about { background: var(--black); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--charcoal-2);
}
.about__media img,
.about__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.85));
}
.about__media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--cream);
}
.about__text .section__title { margin-bottom: 20px; }
.about__text p { color: var(--muted); margin-bottom: 16px; }
.about__list { margin: 24px 0 30px; display: grid; gap: 12px; }
.about__list li {
  position: relative;
  padding-left: 30px;
  color: var(--cream);
  font-size: 0.95rem;
}
.about__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 700;
}

/* ===== Gallery ===== */
.gallery { background: var(--charcoal); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal-2);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
  filter: saturate(0.95) contrast(1.02);
}
.gallery__item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.8));
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.35s ease;
}
.gallery__item:hover { transform: translateY(-4px); border-color: var(--accent); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ===== Reviews ===== */
.reviews { background: var(--black); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.review__stars { color: var(--accent-bright); letter-spacing: 4px; margin-bottom: 16px; }
.review p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== Google reviews badge ===== */
.goog {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 32px;
}
.goog__badge { display: flex; align-items: center; gap: 16px; }
.goog__g { flex: none; }
.goog__meta { display: flex; flex-direction: column; gap: 4px; }
.goog__rate { display: flex; align-items: center; gap: 10px; }
.goog__rate strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--cream);
}
.goog__stars { color: var(--accent-bright); letter-spacing: 2px; font-size: 1.05rem; }
.goog__sub { font-size: 0.86rem; color: var(--muted); }
.goog__sub strong { color: var(--cream); font-weight: 500; }
.goog__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.goog__actions .btn { padding: 12px 24px; }

@media (max-width: 560px) {
  .goog { flex-direction: column; align-items: flex-start; }
  .goog__actions { width: 100%; }
  .goog__actions .btn { flex: 1; text-align: center; }
}

/* ===== Contact ===== */
.contact { background: var(--charcoal); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__lead { color: var(--muted); margin: 16px 0 28px; }
.contact__details { display: grid; gap: 14px; margin-bottom: 30px; }
.contact__details li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  font-size: 0.96rem;
  align-items: baseline;
}
.contact__details strong {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.contact__details a:hover { color: var(--accent-bright); }
.contact__hours {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: grid;
  gap: 10px;
  max-width: 320px;
}
.contact__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--muted);
}
.contact__hours li span:last-child { color: var(--cream); }

/* ===== Booking form ===== */
.booking {
  background: linear-gradient(180deg, var(--charcoal-2), var(--black));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.booking__badge {
  display: inline-block;
  background: rgba(46, 125, 176, 0.14);
  color: var(--accent-bright);
  border: 1px solid rgba(46, 125, 176, 0.4);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.booking h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.booking__lead { color: var(--muted); margin-bottom: 22px; }
.booking__lead strong { color: var(--accent-bright); font-weight: 500; }
.booking__perks { display: grid; gap: 12px; margin-bottom: 28px; }
.booking__perks li {
  position: relative;
  padding-left: 30px;
  font-size: 0.95rem;
  color: var(--cream);
}
.booking__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 700;
}
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.booking input,
.booking select,
.booking textarea {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking input::placeholder,
.booking textarea::placeholder { color: #6f685d; }
.booking input:focus,
.booking select:focus,
.booking textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 125, 176,0.16);
}
.booking textarea { resize: vertical; }
.booking__note {
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-align: center;
}
.booking__note a { color: var(--accent-bright); }
.booking__note a:hover { text-decoration: underline; }

/* ===== Business card showcase ===== */
.cardshow { margin-top: 70px; text-align: center; }
.cardshow__label {
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}
.cardshow__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cardshow__cards img {
  width: 360px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.cardshow__cards img:first-child { transform: rotate(-3deg); }
.cardshow__cards img:last-child { transform: rotate(3deg); }
.cardshow__cards img:hover { transform: rotate(0) scale(1.03); }

/* ===== Footer ===== */
.footer { background: var(--black); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer__brand .brand__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.06em;
  line-height: 0.8;
}
.footer__brand .brand__name small {
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  color: var(--accent);
  margin-top: 4px;
}
.footer__brand p { color: var(--muted); margin-top: 14px; font-size: 0.9rem; }
.footer__addr { font-size: 0.82rem; margin-top: 8px; }
.footer__addr a { color: var(--accent-bright); }
.footer__addr a:hover { text-decoration: underline; }
.footer__links, .footer__social { display: grid; gap: 12px; align-content: start; }
.footer__links a, .footer__social a {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  transition: color 0.2s ease;
}
.footer__links a:hover, .footer__social a:hover { color: var(--accent-bright); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #6f685d;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
/* ===== Agency credit bar =====
   Deliberately quiet: it sits below the shop's footer, uses no accent blue
   (that colour belongs to the Book buttons) and opens in a new tab so the
   shop's page is never navigated away from. */
.agency {
  background: #000;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.agency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.agency__id { display: flex; align-items: center; gap: 14px; }
.agency__mark {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid #2a2a2a;
  background: #121212;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #cfc7bc;
}
.agency__line {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: #7d766c;
}
.agency__line strong { color: #d8d1c6; font-weight: 500; }
.agency__tag {
  margin-top: 2px;
  font-size: 0.78rem;
  color: #625c54;
  letter-spacing: 0.03em;
}
.agency__cta {
  flex: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a9a299;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.agency__cta:hover {
  color: var(--cream);
  border-color: #4a4a4a;
  background: #131313;
}
@media (max-width: 560px) {
  .agency__inner { flex-direction: column; align-items: flex-start; }
  .agency__cta { width: 100%; text-align: center; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services__grid,
  .reviews__grid,
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 420px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 72px 0; }
  .services__grid,
  .reviews__grid,
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .booking__row { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .footer__inner { grid-template-columns: 1fr; }
}
