/* ============================================================
   Captured By Jovan — dark editorial, electric-blue accent
   palette + type matched to the logo
   ============================================================ */

:root {
  /* dark blue-tinted blacks echoing the logo gradient left-edge */
  --bg: #07070f;
  --bg-2: #0f0f1e;
  --bg-3: #161628;

  /* whites & cool greys */
  --ink: #ffffff;
  --ink-dim: #b8b8cc;
  --ink-mute: #6e6e85;

  /* electric royal blue — pulled from the logo's right edge */
  --accent: #3d2dff;
  --accent-soft: #6e5fff;
  --accent-deep: #2418d6;

  /* lines */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);

  /* type */
  --serif:   "Cormorant Garamond", "Times New Roman", serif;
  --sans:    "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Bricolage Grotesque", "Sora", system-ui, sans-serif;

  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light mode palette */
[data-theme="light"] {
  --bg: #f5f3ed;
  --bg-2: #ffffff;
  --bg-3: #ebe9e2;

  --ink: #0a0a14;
  --ink-dim: #4a4a5e;
  --ink-mute: #8585a3;

  --line: rgba(10, 10, 20, 0.10);
  --line-strong: rgba(10, 10, 20, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent-soft); }

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.05;
}

h2 { font-size: clamp(2rem, 4.8vw, 3.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 1.25rem;
}

.italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-dim);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad);
  background: linear-gradient(to bottom, rgba(7,7,15,0.92), rgba(7,7,15,0));
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(7,7,15,0.96);
  padding: 0.7rem var(--pad);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; }
.brand-logo {
  height: 170px;
  width: auto;
  display: block;
  margin: -1rem 0;
  transition: opacity .25s var(--ease), height .3s var(--ease);
}
.brand:hover .brand-logo { opacity: 0.85; }
.nav.is-scrolled .brand-logo { height: 130px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  position: absolute;
  left: calc(50% - 1.25rem);
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--accent);
  padding: 0.65rem 1.3rem;
  color: var(--ink) !important;
  background: var(--accent);
}
.nav-cta:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  width: 24px;
  margin: 0 auto;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 8px 30px -8px rgba(61, 45, 255, 0.5);
}
.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px -8px rgba(61, 45, 255, 0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem var(--pad) 4rem;
  text-align: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: grayscale(45%) contrast(1.05) brightness(0.72);
  animation: heroZoom 18s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(61, 45, 255, 0.30) 0%, rgba(7,7,15,0) 60%),
    linear-gradient(90deg, rgba(7,7,15,0.78) 0%, rgba(7,7,15,0.35) 40%, rgba(36, 24, 214, 0.30) 100%),
    linear-gradient(to bottom, rgba(7,7,15,0.25) 0%, rgba(7,7,15,0.80) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}
.hero-title {
  margin: -5rem 0 -4rem;
  line-height: 1;
}
.hero-logo {
  height: clamp(280px, 50vw, 620px);
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 70px rgba(61, 45, 255, 0.45));
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0.5rem auto 2.5rem;
  font-weight: 300;
  line-height: 1.4;
}
/* Boost the hero eyebrow over the global small size */
.hero-content .eyebrow {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  margin-bottom: 0.5rem;
  color: var(--accent-soft);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 60px;
  background: var(--line-strong);
  overflow: hidden;
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--accent-soft);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-30px); }
  100% { transform: translateY(60px); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.section-dark {
  background: var(--bg-2);
  max-width: none;
  margin: 0;
  position: relative;
}
.section-dark::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.section-dark > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 380px);
  gap: 1rem;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  filter: grayscale(20%) contrast(1.02);
}
.gallery figure:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.05);
}
/* Asymmetric portrait-friendly grid:
   g-1 big hero feature (2x2), g-2/g-3 stacked top-right,
   g-4/g-5/g-6 across the bottom */
.g-1 { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.g-2 { grid-column: 3; grid-row: 1; }
.g-3 { grid-column: 3; grid-row: 2; }
.g-4 { grid-column: 1; grid-row: 3; }
.g-5 { grid-column: 2; grid-row: 3; }
.g-6 { grid-column: 3; grid-row: 3; }

/* ---------- SERVICES ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  background: var(--bg-2);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.service:hover {
  background: var(--bg-3);
  transform: translateY(-2px);
}
.service-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-soft);
  margin-bottom: 2rem;
  letter-spacing: 0.18em;
}
.service h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.service p { color: var(--ink-dim); margin-bottom: 1.5rem; }
.service ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.service li {
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 1.25rem;
}
.service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.services-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--ink-dim);
  font-style: normal;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.services-note a {
  color: var(--accent-soft);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}

/* ---------- ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  transform: translate(16px, 16px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}
.about-copy h2 {
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.about-copy p { color: var(--ink-dim); margin-bottom: 1.25rem; max-width: 50ch; }

.about-facts {
  margin: 2.5rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.25rem;
}
.about-facts > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: baseline;
}
.about-facts dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.about-facts dd { margin: 0; font-family: var(--sans); font-size: 1rem; font-weight: 400; color: var(--ink); }

/* ---------- INSTAGRAM ---------- */
.ig-handle {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--accent-soft);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
}
.ig-handle:hover { border-bottom-color: var(--accent-soft); color: var(--ink); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .4s var(--ease);
  filter: grayscale(30%);
}
.ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,45,255,0.35), rgba(7,7,15,0.4));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.ig-tile:hover img { transform: scale(1.08); filter: grayscale(0%); }
.ig-tile:hover::after { opacity: 1; }

/* ---------- ENQUIRE / FORM ---------- */
.enquire { max-width: 960px; }
.enquire-head { text-align: center; margin-bottom: 3.5rem; }
.enquire-head h2 {
  font-weight: 600;
  letter-spacing: -0.03em;
}
.enquire-lede {
  color: var(--ink-dim);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  max-width: 560px;
  margin: 1.25rem auto 0;
  font-weight: 300;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.85rem 0;
  outline: none;
  transition: border-color .25s var(--ease);
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%236e5fff' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.75rem;
}
.field select option { background: var(--bg-2); color: var(--ink); }

.hp { position: absolute; left: -9999px; }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.form-alt { color: var(--ink-mute); font-size: 0.9rem; margin: 0; }
.form-alt a { color: var(--accent-soft); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 4rem var(--pad) 2rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-logo {
  height: 160px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p { margin: 0; }
.muted { color: var(--ink-mute); font-size: 0.85rem; margin-top: 0.5rem !important; }

.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a, .footer-social a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.footer-links a:hover, .footer-social a:hover { color: var(--accent-soft); }
.footer-fineprint {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- SELECTION ---------- */
::selection { background: var(--accent); color: var(--ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  /* Gallery: switch to 2-col, square-ish cells on tablet/mobile,
     letting auto-flow handle placement */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 280px;
  }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 {
    grid-column: auto;
    grid-row: auto;
  }
  /* keep the hero shot visually dominant on tablet */
  .g-1 { grid-column: span 2; grid-row: span 2; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 55;
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0;
    padding: 4.5rem 1rem 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow: hidden;
  }
  .nav-links > * {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.18em;
  }
  .nav-cta {
    margin-top: 0.5rem;
  }
  .nav-toggle { display: flex; z-index: 70; }

  /* Shrink the brand logo on phones so it doesn't crowd out the
     theme toggle + hamburger; also reset the negative margin used
     to compress nav height on desktop */
  .brand-logo {
    height: 56px;
    max-width: 60vw;
    margin: 0;
    object-fit: contain;
    object-position: left center;
  }
  .nav.is-scrolled .brand-logo { height: 48px; }
  .footer-logo { height: 110px; }
  .hero-logo { max-width: 90vw; }
  /* Hamburger sits flush right with a comfortable touch target */
  .nav-toggle { width: 44px; height: 44px; }
  .theme-toggle { margin-left: auto; margin-right: 0.4rem; }

  .form { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-facts > div { grid-template-columns: 1fr; gap: 0.25rem; }
  .hero-title { letter-spacing: -0.03em; }

  /* Single-column gallery on phones, full-bleed portrait cells */
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(360px, 95vw, 520px);
  }
  .g-1 { grid-column: auto; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Additions: film grain, EST mark, brand marquee, enquire CTA
   ============================================================ */

/* film grain overlay — sits over everything, photography-appropriate texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* EST. 2025 overline (in hero) */
.hero-content .est {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 0.75rem;
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero-content .est::before,
.hero-content .est::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent-soft);
  opacity: 0.7;
}

/* brand marquee — full-bleed scrolling strip between sections */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}
.marquee-track .dot {
  color: var(--accent-soft);
  font-style: normal;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Enquire CTA section (replaces old form) */
.enquire {
  text-align: center;
}
.enquire-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.btn-large {
  padding: 1.25rem 3rem;
  font-size: 0.9rem;
  letter-spacing: 0.26em;
}
.enquire-alt {
  color: var(--ink-mute);
  font-size: 0.92rem;
  margin: 0;
}
.enquire-alt a {
  color: var(--accent-soft);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  margin-left: 0.4rem;
  font-weight: 500;
}
.enquire-alt a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

@media (max-width: 720px) {
  .marquee { padding: 1.1rem 0; }
  .marquee-track { gap: 2rem; font-size: 0.72rem; letter-spacing: 0.26em; }
  .marquee-track span { gap: 2rem; }
  .hero-content .est { letter-spacing: 0.3em; gap: 0.6rem; }
}

/* ============================================================
   Cinematic touches: intro, cursor spotlight, photo reveal
   ============================================================ */

/* --- Loading intro --- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1),
              visibility 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(61, 45, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.intro-logo {
  height: clamp(180px, 32vw, 420px);
  width: auto;
  max-width: 80%;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.94);
  animation: introIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.intro.is-done { opacity: 0; visibility: hidden; }
.intro.is-done .intro-logo {
  animation: introOut 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes introIn {
  0%   { opacity: 0; transform: scale(0.94); }
  60%  { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}
@keyframes introOut {
  to { opacity: 0; transform: scale(1.15); }
}
body.is-intro-loading { overflow: hidden; }

/* --- Nav transition flash (logo flash when clicking nav links) --- */
.nav-flash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.65, 0, 0.35, 1),
              visibility 0.32s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-flash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(61, 45, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.nav-flash.is-on {
  opacity: 1;
  visibility: visible;
}
.nav-flash-logo {
  height: clamp(170px, 28vw, 360px);
  width: auto;
  max-width: 80%;
  position: relative;
  z-index: 2;
  transform: scale(0.94);
  opacity: 0.5;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-flash.is-on .nav-flash-logo {
  transform: scale(1);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .nav-flash, .nav-flash-logo { transition: none; }
}

/* --- Cursor spotlight — glow appears only over the hero --- */
.cursor-glow {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cursor-glow.is-on { opacity: 1; }
/* The dot is permanently hidden (kept earlier to neutralise it everywhere) */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* (.cursor.is-active no longer used — glow visibility scoped to hero) */

.cursor-glow {
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  background: radial-gradient(circle, rgba(61, 45, 255, 0.22) 0%, rgba(110, 95, 255, 0.08) 40%, transparent 70%);
  filter: blur(4px);
  mix-blend-mode: screen;
}
.cursor-dot {
  display: none;
}

body.is-hover-link .cursor-dot {
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  background: transparent;
  border: 1px solid var(--ink);
  mix-blend-mode: normal;
}
body.is-hover-image .cursor-dot {
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  background: rgba(61, 45, 255, 0.25);
  border: 1px solid var(--ink);
  mix-blend-mode: normal;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
body.is-hover-image .cursor-dot::after {
  content: "VIEW";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink);
}

/* Hide custom cursor entirely over nav tabs and hero buttons */
body.is-hover-hide .cursor { opacity: 0 !important; }
body.is-hover-hide,
body.is-hover-hide a,
body.is-hover-hide button { cursor: pointer !important; }

@media (hover: none) {
  .cursor { display: none !important; }
}

/* --- Cinematic photo reveal (B&W blurred → full colour) --- */
.gallery figure img,
.ig-tile img,
.about-media img {
  filter: grayscale(100%) blur(8px) brightness(0.85);
  transform: scale(1.08);
  transition: filter 1.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery figure.is-developed img,
.ig-tile.is-developed img,
.about-media.is-developed img {
  filter: grayscale(0%) blur(0) brightness(1);
  transform: scale(1);
}
.gallery figure:hover img,
.ig-tile:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) blur(0) contrast(1.06) brightness(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .intro { transition: none; }
  .intro-logo { animation: none; opacity: 1; transform: none; }
  .cursor { display: none; }
  body { cursor: auto !important; }
  .gallery figure img, .ig-tile img, .about-media img {
    filter: none; transform: none; transition: none;
  }
}

/* ============================================================
   Section overrides: copy fonts, wave/heart, IG handle, theme toggle
   ============================================================ */

/* Hero subtitle in display sans (Bricolage) — modern editorial replacement */
.hero-sub {
  font-family: var(--display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  letter-spacing: -0.01em;
  font-variation-settings: "wdth" 95;
}

/* Service descriptions get a softer body font for editorial contrast */
.service p {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.005em;
}

/* About: animated wave next to the heading */
.about-copy h2 .wave {
  display: inline-block;
  margin-left: 0.4rem;
  animation: wave 2.8s ease-in-out infinite;
  transform-origin: 70% 70%;
}
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}

/* Heart in enquiry heading */
.enquire-head h2 .heart {
  display: inline-block;
  margin-left: 0.3rem;
  animation: heartbeat 2.4s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 60%, 100% { transform: scale(1); }
  30% { transform: scale(1.18); }
  45% { transform: scale(1); }
}

/* Enquire lede in display font */
.enquire-lede {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: -0.01em;
}

/* Bigger Instagram handle */
.ig-handle {
  margin-top: 1.25rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* --- Theme toggle button --- */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin-left: 0.75rem;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}
.theme-icon { display: block; }
.theme-icon-sun { display: none; }
[data-theme="light"] .theme-icon-moon { display: none; }
[data-theme="light"] .theme-icon-sun  { display: block; }

@media (max-width: 720px) {
  .theme-toggle { margin-left: auto; margin-right: 0.5rem; }
}

/* --- Light-mode tweaks for elements that need explicit attention --- */
[data-theme="light"] .grain { opacity: 0.08; mix-blend-mode: multiply; }
[data-theme="light"] .nav { background: linear-gradient(to bottom, rgba(245,243,237,0.92), rgba(245,243,237,0)); }
[data-theme="light"] .nav.is-scrolled { background: rgba(245,243,237,0.96); }

/* Light-mode hero — soften the dark overlay so it sits with the rest of the page */
[data-theme="light"] .hero-media img {
  filter: grayscale(15%) contrast(1.04) brightness(0.95) saturate(1.05);
}
[data-theme="light"] .hero-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(110, 95, 255, 0.22) 0%, rgba(245,243,237,0) 60%),
    linear-gradient(90deg, rgba(245,243,237,0.78) 0%, rgba(245,243,237,0.4) 50%, rgba(110, 95, 255, 0.18) 100%),
    linear-gradient(to bottom, rgba(245,243,237,0.18) 0%, rgba(245,243,237,0.55) 100%);
}
[data-theme="light"] .hero-content .est { color: #4a4a5e; }
[data-theme="light"] .hero-sub { color: #2a2a3a; }
[data-theme="light"] .nav-cta { color: #fff !important; }
/* Light-mode logos use the separate /yellow-light.png file (swapped in JS) */
[data-theme="light"] .hero-logo { filter: drop-shadow(0 24px 70px rgba(61, 45, 255, 0.25)); }
[data-theme="light"] .section-dark { background: #ebe9e2; }
[data-theme="light"] .service { background: var(--bg-2); }
[data-theme="light"] .service:hover { background: var(--bg-3); }
[data-theme="light"] .marquee { background: #ebe9e2; }
[data-theme="light"] .footer { background: #ebe9e2; }
[data-theme="light"] .nav-flash,
[data-theme="light"] .intro { background: var(--bg); }
/* nav-flash + intro logos also pick up the /yellow-light.png swap in JS */
[data-theme="light"] .about-media::after { border-color: var(--accent); opacity: 0.6; }
[data-theme="light"] ::selection { background: var(--accent); color: #fff; }

/* In light mode the hero photo stays dark, so keep text white inside it */
[data-theme="light"] .hero,
[data-theme="light"] .hero .hero-content {
  --ink: #ffffff;
  --ink-dim: rgba(255, 255, 255, 0.82);
  --ink-mute: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
[data-theme="light"] .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
[data-theme="light"] .hero .btn-ghost:hover { color: var(--accent-soft); border-color: var(--accent-soft); }

/* Theme toggle: make it visible on the dark hero in light mode */
[data-theme="light"] .theme-toggle { border-color: rgba(0,0,0,0.22); color: #0a0a14; }
[data-theme="light"] .nav-toggle span { background: #0a0a14; }
/* Hamburger lines still need to read on dark hero photo when overlay is faint */
[data-theme="light"] .nav .nav-toggle span { background: #0a0a14; }


/* ============================================================
   Testimonials / Reviews
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review {
  background: var(--bg-2);
  padding: 2rem 1.75rem;
  border-left: 2px solid var(--accent);
  position: relative;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.review:hover {
  background: var(--bg-3);
  transform: translateY(-2px);
}
.review-rating {
  color: var(--accent-soft);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  line-height: 1;
}
.review-text {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
}
.review-text::before {
  content: "\201C";
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  line-height: 0;
  color: var(--accent-soft);
  margin-right: 0.15em;
  vertical-align: -0.35em;
}
.review-name {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-dim);
  margin: 0;
}
.review-service {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-mute);
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  padding: 2rem;
  margin: 0;
}

/* Light-mode review cards */
[data-theme="light"] .review { background: #ffffff; }
[data-theme="light"] .review:hover { background: #f0eee7; }
