/* ============================================================
   BEYOND THE TRENDS — DESIGN
   You normally don't need to edit this file.
   To change your brand colours, edit the values just below.
   ============================================================ */

:root {
  --ink: #141414;            /* main text colour */
  --accent: #cf1420;         /* brand red */
  --accent-dark: #a30f18;
  --bg: #faf8f5;             /* page background (warm ivory) */
  --card: #f3efe9;           /* soft card background */
  --card-2: #ffffff;
  --muted: #6b6560;
  --radius: 28px;
  --font-display: "Archivo Black", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-serif: "Playfair Display", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- Shared ---------- */
.section { padding: 90px 5vw; max-width: 1300px; margin: 0 auto; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow.light { color: #ffd9dc; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.section-title.centered { text-align: center; margin-bottom: 48px; }

.accent { color: var(--accent); }
.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  color: var(--accent);
  letter-spacing: 0;
}

.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(207, 20, 32, 0.32);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-light { background: #fff; color: var(--accent); }
.btn-outline { border: 2px solid rgba(255, 255, 255, 0.7); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
}
/* The frosted-glass blur lives on this pseudo-element instead of .header
   directly — backdrop-filter on .header itself would make it the containing
   block for any position:fixed descendant (like the mobile menu), trapping
   that menu inside the header's own height instead of the full screen. */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo { text-decoration: none; color: var(--ink); }
.logo-mark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.05;
  letter-spacing: 0.06em;
  display: inline-block;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--accent); }
.nav .nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
}
.nav .nav-cta:hover { background: var(--accent); color: #fff; }

.header-book {
  display: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
}

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero { padding: 12px 3vw 40px; }

.hero-card {
  background: linear-gradient(150deg, #f6f1ea 0%, #f1e8de 55%, #eee0d4 100%);
  border-radius: 36px;
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 30px;
  padding: 70px 60px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero-title span { display: block; }

.hero-subline {
  margin: 26px 0 34px;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 460px;
}

.hero-visual img {
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(20, 20, 20, 0.18);
  transform: rotate(2deg);
}

.scroll-hint {
  text-align: center;
  margin-top: 34px;
  font-size: 1.1rem;
  color: var(--ink);
}
.scroll-hint em {
  font-family: var(--font-serif);
  color: var(--accent);
  font-weight: 600;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-visual img {
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(20, 20, 20, 0.15);
}

.about-text p:not(.eyebrow) { margin-bottom: 18px; color: #3d3a37; }

.checklist { list-style: none; margin-top: 28px; }
.checklist li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  font-weight: 600;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Services carousel ---------- */
.carousel-wrap { position: relative; }

.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 26px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.service-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: linear-gradient(165deg, #ffffff 0%, #f6f0e9 100%);
  border-radius: var(--radius);
  padding: 38px 30px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.13);
}
.service-card.soon { opacity: 0.75; }

.service-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(207, 20, 32, 0.08);
  color: var(--accent);
  margin-bottom: 22px;
}
.service-card.soon .service-tag { background: var(--ink); color: #fff; }

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.25;
}

.service-desc { color: #4a4642; font-size: 0.98rem; flex-grow: 1; }

.service-link {
  margin-top: 22px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}
.service-link:hover { text-decoration: underline; }

.carousel-arrow {
  position: absolute;
  top: 42%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(20, 20, 20, 0.18);
  z-index: 5;
  transition: background 0.2s ease, color 0.2s ease;
}
.carousel-arrow:hover { background: var(--accent); color: #fff; }
.carousel-arrow.prev { left: -14px; }
.carousel-arrow.next { right: -14px; }

.services-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 8px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.10);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.025); }

/* ---------- Videos ---------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.video-embed {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.12);
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Instagram's embed script injects its own iframe sized by JS, so let it size itself */
.video-embed:has(.instagram-media) {
  aspect-ratio: auto;
  background: transparent;
  box-shadow: none;
}
.video-embed .instagram-media {
  margin: 0 !important;
  width: 100% !important;
}
.video-fallback-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
}

.stars { color: #f5b301; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 16px; }

.testimonial-quote {
  font-size: 1.02rem;
  color: #3d3a37;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-name { margin-top: 22px; font-weight: 700; }
.testimonial-detail { color: var(--muted); font-size: 0.85rem; }

/* ---------- CTA ---------- */
.cta-card {
  background: linear-gradient(150deg, var(--accent) 0%, #8f0d15 100%);
  border-radius: 36px;
  padding: 80px 8vw;
  text-align: center;
  color: #fff;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.cta-title .accent-serif { color: #ffd9dc; }

.cta-text { max-width: 560px; margin: 24px auto 38px; color: #ffe4e6; font-size: 1.08rem; }

.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 44px 5vw 120px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-links { margin-top: 8px; }
.footer-links a { color: var(--ink); font-weight: 600; text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 50px 30px; text-align: center; }
  .hero-subline { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 340px; margin: 10px auto 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .gallery-grid, .videos-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 60px 6vw; }

  /* Keep the booking CTA above the fold on phones */
  .header-book { display: inline-block; margin-left: auto; margin-right: 14px; }
  .logo-mark { font-size: 0.8rem; }
  .hero-inner { padding: 36px 22px 44px; }
  .hero-title { font-size: clamp(1.9rem, 9.5vw, 2.4rem); }
  .eyebrow { margin-bottom: 12px; font-size: 0.68rem; }
  .hero-subline { margin: 16px auto 22px; font-size: 1rem; }
  .btn { padding: 14px 28px; font-size: 0.95rem; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.15rem; }
  .burger { display: block; z-index: 250; position: relative; }
  .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .gallery-grid, .videos-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .service-card { flex-basis: 82vw; }
  .carousel-arrow.prev { left: 2px; }
  .carousel-arrow.next { right: 2px; }
  .cta-card { padding: 60px 7vw; }
}
