:root {
  --bg0: #06070c;
  --bg1: #070915;

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);

  --gold1: #f4e7c0;
  --gold2: #c9a96a;
  --aqua: #86f7ff;

  --shadow: 0 22px 70px rgba(0, 0, 0, 0.62);
  --shadow2: 0 12px 30px rgba(0, 0, 0, 0.48);
  --glowGold: 0 0 34px rgba(201, 169, 106, 0.22);
  --glowAqua: 0 0 34px rgba(134, 247, 255, 0.16);

  --boxRadius: 0px;
  --btnRadius: 0px;

  --max: 1180px;
  --headerH: 74px;

  --safeTop: env(safe-area-inset-top, 0px);
  --safeBottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

/* Landing grid */
.grid-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.grid-table .cell {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--boxRadius);
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  width: 150px;
}
.grid-table .cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.grid-table .thumb { aspect-ratio: 2/3; overflow: hidden; }
.grid-table .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.grid-table .name { padding: 8px 8px 2px; text-align: center; font-size: 14px; }

/* Responsive sizing to mirror smaller directory thumbs */
@media (max-width: 480px) {
  .grid-table {
    grid-template-columns: repeat(auto-fit, 140px);
    gap: 10px;
  }
  .grid-table .name { font-size: 13px; }
}

@media (min-width: 768px) {
  .grid-table {
    grid-template-columns: repeat(auto-fit, 150px);
    gap: 12px;
  }
}

@media (min-width: 1200px) {
  .grid-table {
    grid-template-columns: repeat(auto-fit, 160px);
    gap: 14px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: radial-gradient(
      1100px 700px at 20% 10%,
      rgba(201, 169, 106, 0.1),
      transparent 62%
    ),
    radial-gradient(
      900px 650px at 85% 25%,
      rgba(134, 247, 255, 0.08),
      transparent 62%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1) 70%, #050610 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}

.hero-sub .hero-differentiator {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-style: italic;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.skip-link:focus {
  left: 10px;
}

:focus-visible {
  outline: 2px solid rgba(134, 247, 255, 0.6);
  outline-offset: 2px;
}

/* Premium 3D lights layer */
.bg-lights {
  position: fixed;
  inset: 0;
  z-index: -6;
  pointer-events: none;
  opacity: 0.9;
  filter: blur(0.2px);
}
.bg-lights:before,
.bg-lights:after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
      900px 520px at 20% 20%,
      rgba(201, 169, 106, 0.16),
      transparent 60%
    ),
    radial-gradient(
      800px 520px at 78% 24%,
      rgba(134, 247, 255, 0.12),
      transparent 58%
    ),
    radial-gradient(
      720px 520px at 55% 78%,
      rgba(201, 169, 106, 0.1),
      transparent 60%
    );
  transform: translate3d(0, 0, 0);
  animation: lightsDrift 10s ease-in-out infinite alternate;
  will-change: transform;
}
.bg-lights:after {
  opacity: 0.75;
  animation-duration: 14s;
  filter: blur(18px);
  mix-blend-mode: screen;
}

@keyframes lightsDrift {
  0% {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1);
  }
  100% {
    transform: translate3d(1.2%, 0.8%, 0) scale(1.02);
  }
}

/* Background (STATIC) */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  transform: translateZ(0);
}
.bg-video-poster {
  position: absolute;
  inset: 0;

  /* ✅ Use the PNG as the background image (already in HTML inline style) */
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;

  filter: saturate(1.05) contrast(1.08) brightness(0.55);
  transform: none;
}
.bg-video-embed {
  display: none; /* video disabled */
}
.bg-video-enable {
  display: none; /* video disabled */
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1300px 900px at 18% 18%,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.82) 70%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.8));
}
.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.1;
  pointer-events: none;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: calc(var(--headerH) + var(--safeTop));
  padding-top: var(--safeTop);
  backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(5, 6, 12, 0.74),
    rgba(5, 6, 12, 0.22)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav {
  height: var(--headerH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  min-width: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow2);
  border-radius: var(--boxRadius);
  overflow: hidden;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.brand-title {
  line-height: 1.05;
  min-width: 0;
}
.brand-title strong {
  display: block;
  font-size: 16px;
  letter-spacing: 0.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-title span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--btnRadius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: var(--shadow2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow2), 0 0 26px rgba(255, 255, 255, 0.1);
}
.btn:active {
  transform: translateY(0) scale(0.99);
}
.btn.primary {
  border-color: rgba(201, 169, 106, 0.4);
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(201, 169, 106, 0.34), rgba(134, 247, 255, 0.1));
  box-shadow: var(--shadow), var(--glowGold), var(--glowAqua);
  position: relative;
  overflow: hidden;
}
.btn.primary:before {
  content: "";
  position: absolute;
  inset: -30% -40%;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.26) 50%,
    transparent 65%
  );
  transform: translateX(-70%) rotate(8deg);
  transition: transform 0.6s ease;
  opacity: 0.55;
  pointer-events: none;
}
.btn.primary:hover:before {
  transform: translateX(70%) rotate(8deg);
}
.btn .hide-sm {
  display: inline;
  opacity: 0.82;
}

/* Hamburger */
.hamburger {
  width: 48px;
  height: 48px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow2);
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.hamburger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}
.hamburger .lines {
  width: 20px;
  height: 14px;
  position: relative;
}
.hamburger .lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.hamburger .lines span:nth-child(1) {
  top: 0;
}
.hamburger .lines span:nth-child(2) {
  top: 6px;
  opacity: 0.85;
}
.hamburger .lines span:nth-child(3) {
  top: 12px;
  opacity: 0.7;
}
.hamburger.active .lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.hamburger.active .lines span:nth-child(2) {
  opacity: 0;
}
.hamburger.active .lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
  opacity: 1;
}

/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 999;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(390px, 86vw);
  transform: translateX(110%);
  transition: transform 0.28s cubic-bezier(0.2, 0.85, 0.2, 1);
  z-index: 1000;
  background: rgba(8, 10, 18, 0.8);
  backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.62);
  padding: calc(18px + var(--safeTop)) 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--boxRadius);
}
.drawer.open {
  transform: translateX(0);
}

.drawer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 2px;
}
.drawer-title h3 {
  font-size: 20px;
  margin: 0;
}

.xbtn {
  width: 42px;
  height: 42px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
  cursor: pointer;
}
.xbtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.navlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 4px;
}
.navitem {
  text-align: left;
  padding: 14px 14px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
  position: relative;
  overflow: hidden;
  display: block;
}
.navitem:hover {
  transform: translateX(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.navitem small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

/* Sections + panels */
main {
  position: relative;
}
section {
  padding: 88px 0;
  position: relative;
}

/* ✅ Center all section headings for all devices */
.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.section-head > div {
  width: 100%;
  display: grid;
  place-items: center;
}
.section-head h2 {
  font-size: clamp(30px, 3vw, 46px);
}
.section-head p {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.panel {
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      circle at 20% 10%,
      rgba(201, 169, 106, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(134, 247, 255, 0.1),
      transparent 50%
    ),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.cv-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* Hero */
.hero {
  padding-top: 26px;
  min-height: calc(88vh - (var(--headerH) + var(--safeTop)));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr; /* ✅ single centered column always */
  gap: 28px;
  align-items: center;
  padding: 36px 0 18px;
}

/* ✅ Force hero content to be perfectly centered on desktop + mobile */
.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-h1 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.04;
  margin-top: 0;
  text-shadow: 0 14px 60px rgba(0, 0, 0, 0.65);
}
.hero-sub {
  font-size: 16px;
  letter-spacing: 0.3px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}
.hero-loc {
  margin-top: 10px;
}

/* Hero logo */
.hero-logo-wrap {
  display: grid;
  place-items: center;
  text-align: center;
  margin: 0 0 18px;
}
.hero-logo {
  width: clamp(220px, 34vw, 340px);
  height: clamp(220px, 34vw, 340px);

  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);

  box-shadow: var(--shadow), var(--glowGold), var(--glowAqua);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;

  transform: translateY(14px) scale(0.94);
  opacity: 0;
  filter: blur(4px);
  animation: logoIn 950ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}
.hero-logo:before {
  content: "";
  position: absolute;
  inset: -45%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(201, 169, 106, 0.28),
      transparent 48%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(134, 247, 255, 0.2),
      transparent 52%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    );
  transform: rotate(10deg);
  opacity: 0.9;
  pointer-events: none;
  filter: blur(16px);
}
.hero-logo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 28%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 72%
  );
  transform: translateX(-130%);
  opacity: 0.55;
  animation: sheen 2.8s ease-in-out 0.6s infinite;
  pointer-events: none;
}
.hero-logo img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  padding: clamp(10px, 2vw, 18px);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 22px rgba(201, 169, 106, 0.18))
    drop-shadow(0 0 22px rgba(134, 247, 255, 0.1));
}
.hero-logo-caption {
  margin-top: 10px;
  letter-spacing: 0.4px;
}

@keyframes logoIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.93);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes sheen {
  0% {
    transform: translateX(-130%);
  }
  45% {
    transform: translateX(130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 560px) {
  .hero-logo {
    width: clamp(200px, 70vw, 280px);
    height: clamp(200px, 70vw, 280px);
  }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  position: relative;
  z-index: 1;
}

.about-copy .differentiator {
  margin: 8px 0 14px;
  color: var(--muted);
  font-style: italic;
}
.portrait-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.portrait {
  width: min(290px, 74vw);
  aspect-ratio: 1/1;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(
    circle at 25% 20%,
    rgba(201, 169, 106, 0.2),
    rgba(255, 255, 255, 0.05) 55%,
    rgba(0, 0, 0, 0.16) 100%
  );
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.7), var(--glowGold);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(16px);
  filter: contrast(1.05) saturate(1.02);
}

.portrait img[data-full] {
  cursor: zoom-in;
}

.portrait img[data-full]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}
.list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow2);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  margin-top: 2px;
  flex: 0 0 auto;
  box-shadow: 0 0 20px rgba(134, 247, 255, 0.08);
}

/* Certifications carousel */
.certs-wrap {
  padding: 0 26px 26px;
  position: relative;
  z-index: 1;
}
.certs-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 12px;
}
.certs-bar h3 {
  margin: 0;
  font-size: 24px;
}
.certs {
  position: relative;
  overflow: hidden;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  padding: 16px 0;
  box-shadow: var(--shadow2);
}
.certs-track {
  display: flex;
  gap: 16px;
  padding: 0 18px;
  will-change: transform;
  animation: marquee 18s linear infinite;
}
.certs:hover .certs-track {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cert {
  width: 320px;
  flex: 0 0 auto;
  border-radius: var(--boxRadius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease,
    background 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.cert:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow2), var(--glowGold);
}
.cert img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.cert .cap {
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.card {
  grid-column: span 6;
  padding: 18px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 900px;
  min-width: 0;
}
.card .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.card h3 {
  font-size: 24px;
  margin: 0;
}
.tag {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}
.imggrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
.shot {
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.shot:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow2), var(--glowAqua);
}
.shot img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.shot:hover img {
  transform: scale(1.07);
}
.shot:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
  opacity: 0.78;
  pointer-events: none;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  grid-column: span 4;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.review-stars {
  letter-spacing: 2px;
  color: rgba(244, 231, 192, 0.95);
  text-shadow: 0 0 24px rgba(201, 169, 106, 0.22);
  font-size: 14px;
}
.review-meta strong {
  display: block;
  font-size: 14px;
}
.review-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.review-links a {
  text-decoration: underline;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-body {
  padding: 0 16px 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.faq-icon {
  opacity: 0.7;
}

/* Retail products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.product {
  grid-column: span 3;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  overflow: hidden;
  position: relative;
  min-width: 0;
  transform-style: preserve-3d;
  perspective: 900px;
}
.product img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: rgba(0, 0, 0, 0.08);
  display: block;
  transition: transform 0.45s ease;
  cursor: zoom-in;
}
.product:hover img {
  transform: none;
}

.product img:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}
.product .body {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.product .name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.92);
}
.product .desc {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}
.product .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Reels */
.reels {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.reel {
  grid-column: span 6;
  padding: 18px;
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.embed {
  border-radius: var(--boxRadius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.reel .embed {
  /* Recommended responsive sizing for Instagram embeds */
  width: 100%;
  max-width: 400px;   /* tighter width to reduce IG side letterboxing */
  min-width: 326px;   /* Instagram player threshold */
  margin: 0 auto;     /* center in column */
  aspect-ratio: 9 / 16; /* portrait ratio to better match reels */
}
.embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Remove aspect helpers and fallback heights; return to archive baseline */
/* Locations */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.loc-card {
  grid-column: span 6;
  border-radius: var(--boxRadius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  position: relative;
}
.loc-card .head {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.loc-card h3 {
  margin: 0;
  font-size: 24px;
}
.loc-card .meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.loc-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.loc-actions {
  padding: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Reveal + Tilt + Lightbox */
.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  filter: blur(2px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  will-change: transform, opacity, filter;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal.out {
  opacity: 0;
  transform: translateY(-12px) scale(0.99);
  filter: blur(2px);
}
.tilt {
  transform-style: preserve-3d;
  perspective: 950px;
  will-change: transform;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  z-index: 3000;
  padding: 16px;
  padding-top: calc(16px + var(--safeTop));
  padding-bottom: calc(16px + var(--safeBottom));
}
.lightbox.open {
  display: flex;
}
.lightbox-card {
  width: min(980px, 92vw);
  max-height: min(86vh, 860px);
  border-radius: var(--boxRadius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.78);
  transform: translateY(10px) scale(0.97);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  display: flex;
  flex-direction: column;
}
.lightbox.open .lightbox-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.lightbox-card img {
  width: 100%;
  height: auto;
  max-height: calc(86vh - 62px);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.18);
}
.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  padding: 36px 0 calc(46px + var(--safeBottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
footer .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.tiny {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
}

/* Sticky booking bar */
.sticky-book {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px calc(10px + var(--safeBottom));
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0),
    rgba(5, 6, 12, 0.7) 25%,
    rgba(5, 6, 12, 0.88)
  );
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sticky-book__btn {
  flex: 1;
  max-width: 520px;
  text-align: center;
  padding: 14px 14px;
  border: 1px solid rgba(201, 169, 106, 0.4);
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(201, 169, 106, 0.34), rgba(134, 247, 255, 0.1));
  box-shadow: var(--shadow2), var(--glowGold), var(--glowAqua);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--btnRadius);
}
.sticky-book__secondary {
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--btnRadius);
  box-shadow: var(--shadow2);
}
@media (min-width: 980px) {
  .sticky-book {
    display: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .card {
    grid-column: span 12;
  }
  .product {
    grid-column: span 6;
  }
  .reel {
    grid-column: span 12;
  }
  .reel .embed {
    margin: 0;
  }
  .loc-card {
    grid-column: span 12;
  }
  .review-card {
    grid-column: span 12;
  }
}
@media (max-width: 560px) {
  :root {
    --headerH: 70px;
  }
  .brand-title span {
    display: none;
  }
  .btn .hide-sm {
    display: none;
  }
  .imggrid {
    grid-template-columns: 1fr;
  }
  .product {
    grid-column: span 12;
  }
  .embed iframe {
    height: 100%;
  }
}

/* Reduce motion users */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
