/* ============================================
   Nuvora Interiors — Landing Page
   Brand-synced design: Terracotta + Golden Tan
   Fonts: Cormorant Garamond (display) · DM Sans (UI/body)
   ============================================ */

:root {
  /* ── Brand palette (from logo) ────────────────── */
  --terra:       #7B2D0F;           /* deep terracotta — primary */
  --terra-dark:  #5C2008;           /* deeper hover state */
  --tan:         #C4956A;           /* golden tan — secondary accent */
  --tan-light:   #D9B48F;           /* lighter tan for dark backgrounds */
  --gold:        #F5A623;           /* golden sun colour from the logo */

  /* ── Surfaces ─────────────────────────────────── */
  --cream:       #FAF8F3;
  --cream-2:     #F3EFE7;
  --beige:       #EDE5D8;
  --beige-2:     #F7F2E9;

  /* ── Text ─────────────────────────────────────── */
  --charcoal:    #1C1208;           /* warm near-black */
  --charcoal-2:  #2E1E10;
  --muted:       #6B5040;
  --muted-2:     #9E8070;
  --border:      #E2D5C3;

  /* ── Semantic ─────────────────────────────────── */
  --accent:      var(--terra);
  --accent-dark: var(--terra-dark);

  /* ── Shape ────────────────────────────────────── */
  --radius-lg:   20px;
  --radius-md:   16px;
  --radius-sm:   12px;
  --radius-pill: 50px;

  /* ── Easing ───────────────────────────────────── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap:   cubic-bezier(0.68, -0.3, 0.68, 0.3);

  --container:   1180px;
}

/* ────────────────────────────────────────────────
   RESET & BASE
──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection { background: rgba(196, 149, 106, 0.22); color: var(--terra); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 3px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Type scale ──────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); }

/* em inside headings: italic + golden tan */
em { font-style: italic; color: var(--tan); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
  display: inline-block;
}
.center { text-align: center; }
.section-sub {
  max-width: 560px; margin: 14px auto 0;
  color: var(--muted); font-size: 1.05rem; font-weight: 300;
}

/* ── Reveal on scroll ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Stagger for highlight grid */
.highlights-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.highlights-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.highlights-grid .reveal:nth-child(4) { transition-delay: 0.21s; }

/* Stagger for services grid (columns 2-5 per row) */
.services-grid .reveal:nth-child(5n+2) { transition-delay: 0.06s; }
.services-grid .reveal:nth-child(5n+3) { transition-delay: 0.12s; }
.services-grid .reveal:nth-child(5n+4) { transition-delay: 0.18s; }
.services-grid .reveal:nth-child(5n+5) { transition-delay: 0.24s; }

/* ────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 34px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.45s var(--ease-out),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.45s ease;
  white-space: nowrap;
}
.btn-pill { border-radius: var(--radius-pill); }

.btn-accent { background: var(--terra); color: #fff; }
.btn-accent:hover {
  background: var(--terra-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(123, 45, 15, 0.3);
}

.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(28, 18, 8, 0.24);
}

.btn-outline-light {
  background: transparent; color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent; color: var(--charcoal);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--beige-2);
  border-color: var(--terra);
  transform: translateY(-3px);
}
.btn-block { width: 100%; }

/* ────────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 0;
  transition: background 0.5s ease, padding 0.4s ease,
              box-shadow 0.4s ease, backdrop-filter 0.5s ease;
}
/* Dark gradient strip behind the logo/nav when transparent, so they stay
   readable over any bright photo — independent of the hero's own fades */
.site-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(10, 6, 2, .55) 0%, rgba(10, 6, 2, 0) 100%);
}
.site-header.scrolled {
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(226, 213, 195, 0.7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  transition: color 0.35s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-img {
  height: 56px; width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.4s ease, transform 0.5s var(--ease-out);
}
.logo:hover .logo-img { transform: scale(1.04); }
.site-header.scrolled .logo-img { height: 44px; }

/* Footer logo (dark bg): cream card so the colored logo pops */
.logo.light {
  background: var(--cream);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}
.logo.light .logo-img { height: 46px; }

/* Nav links */
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a:not(.btn) {
  font-size: 0.88rem; font-weight: 400;
  color: var(--charcoal);
  position: relative; padding: 4px 0;
  transition: color 0.3s ease;
}
.site-header:not(.scrolled) .main-nav a:not(.btn) { color: rgba(255, 255, 255, 0.88); }
.main-nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--tan);
  transition: width 0.45s var(--ease-out);
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 11px 26px; font-size: 0.84rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; z-index: 210;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.35s ease;
}
.site-header:not(.scrolled) .hamburger span { background: rgba(255,255,255,0.9); }

/* ────────────────────────────────────────────────
   HERO / BANNER SLIDER
──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: #fff;
  padding-bottom: 130px;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.6s ease, transform 8s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

/* Top fade — keeps the header legible without dimming the whole photo */
.hero-top-fade {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1;
  height: 200px;
  background: linear-gradient(180deg, rgba(15, 8, 2, .55) 0%, rgba(15, 8, 2, 0) 100%);
  pointer-events: none;
}
/* Localized fade behind the text block only — anchored bottom-left, rest of the photo stays clear */
.hero-text-fade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8, 4, 1, .25) 0%, rgba(8, 4, 1, .15) 35%, rgba(8, 4, 1, .55) 60%, rgba(8, 4, 1, .88) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2; max-width: 780px;
  margin-left: 0; margin-right: auto;
  padding-left: 90px;
}
.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.hero h1 em {
  display: inline-block;
  color: var(--gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, .35), 0 4px 24px rgba(0, 0, 0, .4);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero h1 em.swapping { opacity: 0; transform: translateY(8px); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-arrow { display: inline-block; margin-left: 4px; transition: transform 0.4s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.hero-dots {
  position: absolute; bottom: 140px; right: 44px; z-index: 3;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent; cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease;
}
.hero-dots button.active { background: #fff; transform: scale(1.3); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background 0.35s ease, border-color 0.35s ease,
              transform 0.35s var(--ease-out);
  backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.7); }
.hero-arrow.prev { left: 40px; }
.hero-arrow.next { right: 40px; }
.hero-arrow:active { transform: translateY(-50%) scale(.9); }

/* ────────────────────────────────────────────────
   KEY HIGHLIGHTS
──────────────────────────────────────────────── */
.highlights {
  padding: 100px 0;
  background: var(--cream-2);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.highlight-card {
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease, border-color 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -28px rgba(123, 45, 15, .35);
  border-color: var(--tan);
}
.highlight-num {
  position: absolute; top: 6px; right: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-style: italic;
  font-size: 4.2rem; line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  z-index: 0;
  transition: opacity 0.4s ease;
}
.highlight-card:hover .highlight-num { opacity: 0.6; }
.highlight-icon {
  position: relative; z-index: 1;
  flex: none;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  transition: transform 0.45s var(--ease-out), background 0.4s ease;
}
.highlight-icon svg { width: 24px; height: 24px; }
.highlight-card:hover .highlight-icon {
  transform: scale(1.08) rotate(-6deg);
  background: var(--terra-dark);
  color: var(--gold);
}
.highlight-card strong {
  position: relative; z-index: 1;
  font-size: 1.05rem; font-weight: 600; color: var(--charcoal);
}
.highlight-card > span:not(.highlight-num):not(.highlight-icon) {
  position: relative; z-index: 1;
  font-size: 0.86rem; color: var(--muted); font-weight: 300;
}

/* ────────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────────── */
.about { padding: 140px 0 110px; }
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 80px; align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.about-media-badge {
  position: absolute; left: -30px; bottom: -30px;
  background: var(--charcoal); color: #fff;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 24px 64px rgba(28, 18, 8, .22);
  max-width: 240px;
}
.about-media-badge strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem; font-weight: 600;
  color: var(--tan);
}
.about-media-badge span {
  font-size: 0.82rem; color: rgba(255,255,255,.7); line-height: 1.4;
}
.about-copy p { color: var(--muted); font-weight: 300; margin: 18px 0; max-width: 520px; }
.about-copy h2 { margin-top: 6px; }
.about-points {
  margin: 26px 0 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.about-points li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; }
.point-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(123, 45, 15, 0.1); color: var(--terra);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
}

/* ────────────────────────────────────────────────
   GALLERY — Panoramic split-panel (Archo style)
──────────────────────────────────────────────── */
.gallery { padding: 110px 0; background: var(--beige-2); }
.gallery-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-top: 60px;
  padding: 0 28px;
}
.gallery-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.gallery-split {
  display: flex;
  height: 620px;
  position: relative;
  gap: 6px;
  transition: transform 0.55s var(--ease-out);
}
.gallery-panel {
  position: relative; overflow: hidden; cursor: pointer;
  flex: 0 0 calc((100% - 12px) / 3);
  border-radius: var(--radius-md);
  transition: transform 0.6s var(--ease-out);
}
.gallery-panel.active { transform: scale(1.01); }

/* Each panel shows its own cover image; bg-b stays unused (kept for markup compat) */
.panel-bg {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  transition: opacity 1.1s ease, transform 0.6s var(--ease-out);
}
.panel-bg.bg-a { z-index: 1; opacity: 1; }
.panel-bg.bg-b { z-index: 2; opacity: 0; }
.gallery-panel.active .panel-bg.bg-a { transform: scale(1.05); }

.panel-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(15, 8, 2, 0) 45%,
    rgba(15, 8, 2, .55) 75%,
    rgba(15, 8, 2, .85) 100%
  );
}

.panel-content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 6;
  padding: 0 32px 32px;
}
.panel-content h3 {
  color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem; font-weight: 700; margin: 0;
  letter-spacing: -0.01em;
}
.panel-view-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--tan-light);
  margin-top: 10px; max-height: 24px;
  opacity: 1;
  overflow: hidden;
  transition: color 0.25s ease;
  cursor: pointer;
}
.panel-view-link .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-snap);
}
.panel-view-link:hover { color: #fff; }
.panel-view-link:hover .arrow { transform: translateX(4px); }

.gallery-arrow {
  flex: none; z-index: 7;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--terra); font-size: 1.8rem; line-height: 1;
  cursor: pointer !important;
  transition: background 0.3s ease, color 0.3s ease;
}
.gallery-arrow:hover { background: var(--beige); color: var(--terra-dark); }

/* Custom cursor dot */
.gallery-cursor {
  position: fixed; width: 12px; height: 12px; border-radius: 50%;
  background: var(--tan);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0;
}
.gallery-cursor.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ────────────────────────────────────────────────
   LIGHTBOX
──────────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10, 5, 2, .95);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
.gallery-lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-slides { position: absolute; inset: 0; }
.lightbox-slide {
  position: absolute; inset: 80px;
  background-size: contain; background-position: center; background-repeat: no-repeat;
  opacity: 0; transform: scale(.93);
  transition: opacity 0.55s ease, transform 0.55s var(--ease-smooth);
}
.lightbox-slide.active { opacity: 1; transform: scale(1); }

.lightbox-close {
  position: absolute; top: 22px; right: 28px; z-index: 2;
  color: #fff; font-size: 2rem; background: none; border: none;
  cursor: pointer; line-height: 1; opacity: .55;
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg) scale(1.1); }

.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  color: #fff; font-size: 1.1rem;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s var(--ease-snap);
  backdrop-filter: blur(10px);
}
.lightbox-arrow:hover { background: rgba(255, 255, 255, .2); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

.lightbox-bottom {
  position: absolute; bottom: 28px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.lightbox-dots { display: flex; gap: 8px; }
.lightbox-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55); background: transparent; cursor: pointer;
  transition: all 0.35s ease;
}
.lightbox-dots button.active {
  background: var(--tan); border-color: var(--tan);
  width: 22px; border-radius: 6px;
}
.lightbox-counter {
  color: rgba(255, 255, 255, .45);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem; letter-spacing: 0.06em;
}

/* ────────────────────────────────────────────────
   CTA BANNER (between Gallery and Testimonials)
──────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
}
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ctaSlowZoom 16s ease-in-out infinite alternate;
}
@keyframes ctaSlowZoom {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.14) translate(-1.5%, -1%); }
}
.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(15, 8, 2, .92) 0%,
    rgba(15, 8, 2, .8) 32%,
    rgba(91, 32, 8, .42) 58%,
    rgba(91, 32, 8, .12) 100%
  );
}

/* Drifting decorative dots — slow ambient motion instead of a static icon block */
.cta-banner-orbit { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.cta-banner-orbit span {
  position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  opacity: .55;
  animation: ctaDrift 9s ease-in-out infinite;
}
.cta-banner-orbit span:nth-child(1) { top: 18%; right: 18%; animation-delay: 0s; }
.cta-banner-orbit span:nth-child(2) { top: 52%; right: 30%; width: 4px; height: 4px; animation-delay: 1.4s; }
.cta-banner-orbit span:nth-child(3) { top: 72%; right: 12%; width: 9px; height: 9px; animation-delay: 2.8s; }
@keyframes ctaDrift {
  0%, 100% { transform: translateY(0) translateX(0); opacity: .3; }
  50% { transform: translateY(-26px) translateX(10px); opacity: .8; }
}

.cta-banner-card {
  position: relative; z-index: 2;
  max-width: 560px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .5);
}
.cta-banner-card.reveal { transform: translateY(36px) scale(.96); }
.cta-banner-card.reveal.in-view { transform: translateY(0) scale(1); }

.cta-spin-icon {
  display: inline-flex; width: 56px; height: 56px;
  color: var(--gold); margin-bottom: 18px;
}
.cta-spin-icon svg,
.cta-spin-icon img { width: 100%; height: 100%; animation: ctaSpin 9s linear infinite; object-fit: contain; }
@keyframes ctaSpin { to { transform: rotate(360deg); } }

.cta-banner-card .eyebrow { color: var(--tan-light); }
.cta-banner-card h2 {
  color: #fff; margin: 10px 0 16px;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}
.cta-banner-card h2 em { color: var(--gold); }
.cta-banner-card p {
  color: rgba(255, 255, 255, .8);
  font-weight: 300; max-width: 420px; margin-bottom: 30px;
  line-height: 1.7;
}

/* Magnetic-style CTA: label + a circular arrow chip that slides on hover */
.btn-cream {
  background: var(--cream); color: var(--terra);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 6px 6px 26px;
  overflow: hidden;
}
.btn-cream .btn-label-text { transition: transform 0.4s var(--ease-out); }
.btn-arrow-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--terra); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.45s var(--ease-snap), background 0.3s ease;
}
.btn-cream:hover { box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3); }
.btn-cream:hover .btn-arrow-circle { transform: rotate(45deg) scale(1.06); background: var(--terra-dark); }
.btn-cream:hover .btn-label-text { transform: translateX(2px); }

@media (max-width: 880px) {
  .cta-banner { min-height: 540px; padding: 60px 0; }
  .cta-banner-card { padding: 40px 30px; margin: 0 16px; }
  .cta-banner-orbit { display: none; }
}

/* ────────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────────── */
.testimonials { padding: 110px 0; }
.testi-slider {
  max-width: 1100px; margin: 60px auto 0;
  position: relative;
}
.testi-wrap {
  overflow: hidden;
  padding: 0 64px;
}
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: background 0.4s ease, color 0.4s ease,
              border-color 0.4s ease, transform 0.4s var(--ease-out);
}
.testi-arrow:hover {
  background: var(--terra); color: #fff; border-color: var(--terra);
}
.testi-prev { left: 0; }
.testi-next { right: 0; }
.testi-track {
  display: flex;
  transition: transform 0.75s var(--ease-smooth);
}
.testi-card {
  flex: 0 0 50%;
  box-sizing: border-box; padding: 0 12px;
}
.testi-inner {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  text-align: center; height: 100%; box-sizing: border-box;
  transition: box-shadow 0.45s ease, transform 0.45s var(--ease-out);
}
.testi-inner:hover {
  box-shadow: 0 22px 55px rgba(28, 18, 8, .07);
  transform: translateY(-5px);
}
.testi-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.28rem; line-height: 1.72;
  font-weight: 400; font-style: italic;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }
.testi-author strong { display: block; font-size: 0.98rem; font-weight: 600; }
.testi-author span {
  font-size: 0.77rem; color: var(--muted-2); letter-spacing: .03em;
}
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--muted-2); background: transparent; cursor: pointer;
  transition: all 0.35s ease;
}
.testi-dots button.active {
  background: var(--terra); border-color: var(--terra);
  width: 22px; border-radius: 6px;
}

/* ────────────────────────────────────────────────
   EXPERIENCE CENTER
──────────────────────────────────────────────── */
.experience { padding: 110px 0; background: var(--charcoal); color: #fff; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.experience .eyebrow { color: var(--tan); }
.experience em { color: var(--tan-light); }
.experience p { color: rgba(255,255,255,.68); font-weight: 300; margin: 18px 0; max-width: 480px; }
.exp-details { margin: 30px 0 34px; display: flex; flex-direction: column; gap: 20px; }
.exp-details li {
  display: flex; gap: 16px; align-items: flex-start;
  font-size: 0.92rem; color: rgba(255,255,255,.7);
}
.exp-details strong { color: #fff; font-weight: 500; }
.exp-icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex: none; width: 38px; height: 38px; margin-top: 2px;
  border-radius: 50%; background: rgba(196, 149, 106, 0.16); color: var(--tan-light);
}
.exp-icon svg { width: 18px; height: 18px; }
.exp-media { display: flex; flex-direction: column; gap: 18px; }
.exp-map {
  position: relative; display: block;
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,.1);
}
.exp-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(0.25) sepia(0.18) saturate(1.05);
}
.exp-map-pin {
  position: absolute; left: 18px; bottom: 18px; right: 18px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: rgba(28,18,8,.82); color: #fff;
  font-size: 0.84rem; padding: 12px 16px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: background 0.35s ease;
}
.exp-map-pin svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--tan); }
.exp-map-pin:hover { background: var(--terra); }
.exp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.exp-gallery img {
  border-radius: var(--radius-md); aspect-ratio: 1/1; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.exp-gallery img:hover { transform: scale(1.04); }

/* ────────────────────────────────────────────────
   SERVICES
──────────────────────────────────────────────── */
.services { padding: 110px 0; }
.services-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-item {
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 16px;
  text-align: center;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}
.service-item:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: var(--terra);
  box-shadow: 0 24px 52px -20px rgba(123, 45, 15, 0.22);
}
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(123, 45, 15, 0.08);
  color: var(--terra);
  margin-bottom: 18px;
  transition: transform 0.45s var(--ease-snap), background 0.35s ease, color 0.35s ease;
}
.service-icon svg { width: 30px; height: 30px; }
.service-item:hover .service-icon {
  transform: scale(1.12) rotate(-6deg);
  background: var(--terra);
  color: #fff;
}
.service-item p { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); }

/* ────────────────────────────────────────────────
   BRANDS MARQUEE
──────────────────────────────────────────────── */
.brands { padding: 90px 0 110px; background: var(--cream-2); }
.brands-marquee {
  margin-top: 50px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brands-track {
  display: flex; align-items: center; gap: 80px; width: max-content;
  animation: marquee 22s linear infinite;
}
.brands-track img {
  height: 140px; width: 280px;
  object-fit: contain;
  filter: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────
   ENQUIRY FORM
──────────────────────────────────────────────── */
.enquiry { padding: 110px 0; }
.enquiry-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; }
.enquiry-copy h2 { margin: 6px 0 18px; }
.enquiry-copy p { color: var(--muted); font-weight: 300; max-width: 440px; }
.enquiry-points { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.enquiry-points li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; }

.enquiry-form {
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.enquiry-form h3 { margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-row-full { grid-column: 1 / -1; }
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-row label { font-size: 0.8rem; font-weight: 500; color: var(--charcoal); }
.req { color: var(--terra); }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
.form-row input:focus,
.form-row select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(123, 45, 15, 0.1);
}
.form-row input.invalid,
.form-row select.invalid {
  border-color: #b83232;
  box-shadow: 0 0 0 4px rgba(184, 50, 50, 0.08);
}
.error-msg { font-size: 0.78rem; color: #b83232; min-height: 14px; display: block; }

/* Phone input sits flush inside .phone-field — wrapper handles border/focus/invalid states */
.phone-field input[type="tel"] {
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: transparent;
}
.phone-field input[type="tel"]:focus,
.phone-field input[type="tel"].invalid {
  border: none;
  box-shadow: none;
}

/* Phone field — single combined input: country selector + number */
.phone-field {
  display: flex; align-items: stretch; position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.phone-field:focus-within {
  border-color: var(--terra);
  box-shadow: 0 0 0 4px rgba(123, 45, 15, 0.1);
}
.phone-field:has(input.invalid) {
  border-color: #b83232;
  box-shadow: 0 0 0 4px rgba(184, 50, 50, 0.08);
}
.phone-hint {
  font-size: 0.76rem; color: var(--muted-2); font-weight: 300;
  margin-top: -2px;
}
.country-select {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 14px;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: transparent; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.country-select:hover { background: var(--beige-2); }
.country-select .flag { display: inline-flex; line-height: 1; }
.country-select .flag img,
.country-dropdown .flag img {
  display: block; width: 20px; height: 15px;
  object-fit: cover; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.country-select .caret { font-size: 0.7rem; color: var(--muted-2); margin-left: 2px; }
.phone-field input { flex: 1; }

.country-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 260px; max-height: 260px; overflow-y: auto;
  box-shadow: 0 24px 60px -20px rgba(28, 18, 8, .28);
  z-index: 50;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  padding: 6px;
}
.country-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.country-dropdown li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  font-size: 0.88rem;
  transition: background 0.2s ease;
}
.country-dropdown li:hover { background: var(--beige); }
.country-dropdown .flag { display: inline-flex; flex-shrink: 0; line-height: 1; }
.country-dropdown .dial {
  margin-left: auto; color: var(--muted-2); font-size: 0.8rem;
}

/* Checkbox */
.checkbox-row { margin-top: 6px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.83rem; color: var(--muted);
}
.checkbox-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 6px;
  border: 1.5px solid var(--border); background: #fff;
  position: relative; margin-top: 2px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.checkbox-box::after {
  content: ''; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s var(--ease-smooth);
}
.checkbox-label input:checked + .checkbox-box { background: var(--terra); border-color: var(--terra); }
.checkbox-label input:checked + .checkbox-box::after { transform: rotate(45deg) scale(1); }
.checkbox-label input.invalid + .checkbox-box { border-color: #b83232; }

.btn-block { margin-top: 6px; }
.form-success {
  margin-top: 16px; text-align: center; font-size: 0.9rem; color: #1f7a4c;
  background: rgba(31, 122, 76, .09);
  border-radius: var(--radius-sm);
  padding: 14px; display: none;
}
.form-success.show { display: block; }

/* ────────────────────────────────────────────────
   ENQUIRY MODAL (CTA popup)
──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(28, 18, 8, .55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  position: relative;
  background: var(--beige-2);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  padding: 40px 36px 36px;
  transform: translateY(24px) scale(.97);
  transition: transform 0.35s var(--ease-out);
  box-shadow: 0 40px 90px -30px rgba(28, 18, 8, .45);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent;
  font-size: 1.6rem; line-height: 1; color: var(--muted);
  cursor: pointer; border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease;
}
.modal-close:hover { background: var(--beige); color: var(--terra); }
.modal-logo { display: flex; justify-content: center; margin-bottom: 30px; }
.modal-logo img { height: 56px; width: auto; display: block; margin: 0 auto; }
.modal-box .enquiry-form {
  background: transparent; border: none; padding: 0;
}
body.modal-open { overflow: hidden; }

/* ────────────────────────────────────────────────
   THANK YOU PAGE
──────────────────────────────────────────────── */
.thankyou {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
}
.thankyou-card {
  max-width: 540px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  box-shadow: 0 28px 60px -28px rgba(123, 45, 15, .18);
}
.thankyou-logo { margin-bottom: 22px; }
.thankyou-logo img { height: 60px; width: auto; margin: 0 auto; }
.thankyou-icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.thankyou-icon svg { width: 34px; height: 34px; }
.thankyou-card h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.thankyou-card p { color: var(--muted); font-weight: 300; margin-bottom: 30px; }
.thankyou-card .btn { display: inline-flex; }

/* ────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .6);
  padding: 80px 0 0;
  /* Thin golden top accent line */
  border-top: 3px solid var(--terra);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px; padding-bottom: 60px;
}
.footer-grid p { margin-top: 14px; font-size: 0.9rem; max-width: 240px; }
.footer-grid h6 {
  color: rgba(255, 255, 255, .85);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { font-size: 0.9rem; transition: color 0.35s ease; }
.footer-grid a:hover { color: var(--tan-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 0.84rem;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--tan-light); }

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .about-grid, .exp-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media { max-width: 440px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(3) { border-left: 0; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh;
    width: 78%; max-width: 340px;
    background: var(--cream);
    flex-direction: column; align-items: flex-start;
    padding: 110px 36px; gap: 26px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-smooth);
    box-shadow: -20px 0 60px rgba(28, 18, 8, .1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a:not(.btn) { color: var(--charcoal) !important; font-size: 1rem; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav-cta { margin-top: 10px; }

  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow.prev { left: 16px; }
  .hero-arrow.next { right: 16px; }
  .hero-dots { right: 16px; bottom: 160px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(odd) { border-left: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-points { grid-template-columns: 1fr; }

  .gallery-wrap { padding: 0 12px; }
  .gallery-split { flex-direction: column; height: auto; cursor: auto; }
  .gallery-panel { flex: none !important; height: 280px; cursor: auto; }
  .gallery-panel .panel-view-link { opacity: 1; max-height: 24px; margin-top: 10px; }
  .gallery-arrow { display: none; }
  .gallery-cursor { display: none; }

  /* Mobile: 1 testimonial per slide */
  .testi-wrap { padding: 0; }
  .testi-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
  .testi-card { flex: 0 0 100%; padding: 0; }
  .testi-inner { padding: 36px 48px; }

  .enquiry-form { padding: 30px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { padding: 24px 20px; }
  .hero { height: auto; min-height: 100vh; padding-bottom: 60px; }
  .hero-text-fade { width: 100%; height: 75%; }
}

/* Mobile-only eyebrow label: hidden on desktop, shown in mobile block below */
.about-eyebrow-mobile { display: none; }

/* ════════════════════════════════════════════════════
   MOBILE POLISH  (≤ 768px — desktop layout untouched)
════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global section spacing ── */
  .highlights, .about, .gallery, .services, .brands,
  .cta-banner, .testimonials, .enquiry { padding: 68px 0; }

  /* ── Hero mobile images (override inline style with !important) ── */
  .slide-1 { background-image: url('images/hero-m1.jpg') !important; }
  .slide-2 { background-image: url('images/hero-m2.jpg') !important; }
  .slide-3 { background-image: url('images/hero-m3.jpg') !important; }
  .slide-4 { background-image: url('images/hero-m4.jpg') !important; }

  /* ── Logo ── */
  .logo-img { height: 36px; }
  .site-header.scrolled .logo-img { height: 30px; }

  /* ── Hero ── */
  .hero { align-items: flex-end; padding-bottom: 40px; min-height: 100svh; }
  /* Full height — 480px rule shrinks it to 75% which cuts off the text area */
  .hero-text-fade {
    height: 100% !important;
    background: linear-gradient(
      180deg,
      transparent 45%,
      rgba(8, 4, 1, .4) 65%,
      rgba(8, 4, 1, .88) 82%,
      rgba(8, 4, 1, .97) 100%
    );
  }
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  /* Buttons side by side, compact */
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  .hero-actions .btn {
    min-width: unset;
    padding: 11px 18px;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }
  .hero-dots { right: 14px; bottom: 50px; }
  .hero-arrow { width: 34px; height: 34px; font-size: 0.75rem; }
  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }

  /* ── Key Highlights ── */
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .highlight-card {
    padding: 14px 12px;
    gap: 7px;
  }
  .highlight-num { font-size: 1.6rem; top: 4px; right: 10px; }
  .highlight-icon { width: 38px; height: 38px; }
  .highlight-icon svg { width: 16px; height: 16px; }
  .highlight-card strong { font-size: 0.8rem; line-height: 1.3; }
  .highlight-card > span:not(.highlight-num):not(.highlight-icon) {
    font-size: 0.7rem; line-height: 1.35;
  }

  /* ── About ── */
  .about-grid { gap: 32px; }
  .about-media { max-width: 100%; }
  .about-copy h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .about-copy p { max-width: 100%; }
  .about-points { display: flex; flex-direction: column; gap: 10px; }

  /* ── Gallery ── */
  .gallery-wrap { padding: 0; }
  .gallery-viewport { overflow: visible; }
  .gallery-split {
    flex-direction: column !important;
    transform: none !important;
    gap: 12px;
    height: auto !important;
  }
  .gallery-panel {
    flex: none !important;
    width: 100% !important;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
  }
  .gallery-panel .panel-overlay { opacity: 1; }
  .gallery-panel .panel-content { padding: 0 20px 20px; }
  .gallery-panel .panel-content h3 { font-size: 1.2rem; }
  .gallery-panel .panel-view-link { opacity: 1; max-height: 30px; }
  .gallery-arrow { display: none; }
  .gallery-cursor { display: none; }

  /* ── Services ── */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 22px 16px; }
  .service-card h3 { font-size: 0.9rem; }

  /* ── Brands / Clients ── */
  .brands { padding: 52px 0 64px; }
  .brands-track { gap: 48px; }
  .brands-track img { height: 60px; width: 120px; }

  /* ── CTA Banner ── */
  .cta-banner { padding: 48px 0; min-height: auto; }
  .cta-banner-card {
    margin: 0 20px;
    padding: 36px 24px;
    text-align: center;
  }
  .cta-spin-icon { margin: 0 auto 14px; }
  .cta-banner-card .eyebrow {
    justify-content: center;
    display: flex; align-items: center; gap: 8px;
  }
  .cta-banner-card h2 { font-size: clamp(1.55rem, 6vw, 2rem); }
  .cta-banner-card p { font-size: 0.9rem; }
  .cta-banner-orbit { display: none; }

  /* ── Testimonials ── */
  .testi-slider { margin-top: 40px; }
  .testi-wrap { padding: 0; }
  .testi-card { flex: 0 0 100%; }
  .testi-inner { padding: 30px 48px; }
  .testi-quote { font-size: 1.08rem; line-height: 1.65; }

  /* ── Experience Center ── */
  .exp-grid { gap: 36px; }
  .exp-copy h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }

  /* ── Enquiry Form ── */
  .enquiry-grid { gap: 36px; }
  .enquiry-copy h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .enquiry-copy p { max-width: 100%; }
  .enquiry-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  /* ── Modal form — compact to fit one screen ── */
  .modal-overlay { padding: 8px; }
  .modal-box { padding: 16px 16px 14px; max-height: 96vh; }
  .modal-logo { margin-bottom: 10px; }
  .modal-logo img { height: 38px; }
  .modal-box .form-row { margin-bottom: 10px; gap: 3px; }
  .modal-box .form-row label { font-size: 0.74rem; }
  .modal-box .form-row input[type="text"],
  .modal-box .form-row input[type="email"],
  .modal-box .form-row input[type="tel"],
  .modal-box .form-row select { padding: 7px 10px; font-size: 0.82rem; }
  .modal-box .phone-hint { display: none; }
  .modal-box .error-msg { min-height: 0; font-size: 0.7rem; }
  .modal-box .checkbox-label { font-size: 0.73rem; gap: 8px; }
  .modal-box .checkbox-box { width: 16px; height: 16px; margin-top: 1px; }
  .modal-box .btn-block { margin-top: 4px; padding: 10px 20px; font-size: 0.85rem; }

  /* ── About ── */
  .about-eyebrow-mobile { display: block !important; margin-bottom: 12px; }
  .about-copy .eyebrow { display: none; }
  .about-media { padding-bottom: 32px; }
  .about-media-badge { left: 12px; bottom: -16px; padding: 14px 18px; max-width: 190px; }
  .about-media-badge strong { font-size: 1.9rem; }
  .about-media-badge span { font-size: 0.73rem; }

  /* ── Footer ── */
  .site-footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-logo-col { order: -1; }

  /* ── Section headings ── */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
}

/* Extra-small screens (≤ 400px) */
@media (max-width: 400px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-content { padding-left: 18px; padding-right: 18px; }
  .gallery-panel { height: 220px; }
  .service-card { padding: 18px 12px; }
  .services-grid { gap: 8px; }
  .brands-track img { height: 56px; width: 112px; }
}

/* ────────────────────────────────────────────────
   ADMIN — LEADS DASHBOARD
──────────────────────────────────────────────── */
.admin-body { background: var(--cream-2); }

.admin-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.admin-login-card {
  width: 100%; max-width: 380px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 28px 60px -28px rgba(123, 45, 15, .18);
}
.admin-login-logo { height: 48px; width: auto; margin: 0 auto 22px; }
.admin-login-card h2 { font-size: 1.7rem; margin-bottom: 8px; }
.admin-login-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.admin-login-card form { display: flex; flex-direction: column; gap: 10px; }
.admin-login-card input {
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.admin-login-card input:focus { border-color: var(--terra); box-shadow: 0 0 0 4px rgba(123, 45, 15, .1); }
.admin-login-card .btn { margin-top: 8px; }

.admin-dash { max-width: 1320px; margin: 0 auto; padding: 32px 28px 80px; }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 28px;
}
.admin-header-left { display: flex; align-items: center; gap: 16px; }
.admin-logo { height: 36px; width: auto; }
.admin-header h1 { font-size: 1.5rem; margin: 0; }
.admin-header-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.admin-header-right .btn { padding: 10px 22px; font-size: 0.78rem; }
.admin-count {
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
  background: var(--beige-2); padding: 8px 16px; border-radius: var(--radius-pill);
}

.admin-toolbar { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.admin-toolbar input, .admin-toolbar select {
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  padding: 11px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: #fff;
  outline: none;
}
.admin-toolbar input { flex: 1; min-width: 220px; }
.admin-toolbar input:focus, .admin-toolbar select:focus { border-color: var(--terra); }

.admin-table-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: auto;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.admin-table th, .admin-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table th {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2); background: var(--beige-2);
}
.admin-table tbody tr:hover { background: var(--cream-2); }
.admin-table td a { color: var(--terra); }
.admin-tag {
  font-size: 0.7rem; font-weight: 500;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(123, 45, 15, .08); color: var(--terra);
}
.admin-delete {
  width: 28px; height: 28px; border-radius: 50%;
  border: none; background: transparent;
  color: var(--muted-2); font-size: 1.1rem; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.admin-delete:hover { background: rgba(184, 50, 50, .1); color: #b83232; }
.admin-empty { padding: 50px 20px; text-align: center; color: var(--muted); font-size: 0.9rem; }

@media (max-width: 760px) {
  .admin-dash { padding: 24px 16px 60px; }
  .admin-header { flex-direction: column; align-items: flex-start; }
}
