/* Slate 360 — design system
   Colors: true black / true white / gold accent. No gray sections. */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gold: #b8935a;
  --gold-bright: #d4af6a;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --hairline: rgba(0, 0, 0, 0.1);
  --hairline-on-dark: rgba(255, 255, 255, 0.15);
  --max-width: 1200px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); text-align: center; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 16px; color: var(--ink-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }
.section--black { background: var(--black); color: var(--white); }
.section--black p { color: rgba(255,255,255,0.75); }
.section--black h2, .section--black h3 { color: var(--white); }

.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn--outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--black); }

.btn--outline-black {
  border-color: var(--black);
  color: var(--black);
}
.btn--outline-black:hover { background: var(--black); color: var(--white); }

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}

.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a { color: var(--white); }
.topbar-contact { display: flex; gap: 24px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { opacity: 0.85; }
.topbar-social a:hover { opacity: 1; color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links li { display: flex; align-items: center; }

.nav-links a { display: inline-flex; align-items: center; padding: 6px 0; border-bottom: 2px solid transparent; line-height: 1; }
.nav-links a:hover, .nav-links a.active { border-color: var(--gold); color: var(--gold); }
.nav-book-btn, .nav-book-btn.active { padding: 10px 22px !important; border-bottom: none !important; color: var(--black) !important; }
.nav-book-btn:hover { color: var(--black) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    display: none;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-toggle { display: block; }
  .topbar-contact span:last-child { display: none; }
}

/* Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.35) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 0;
}
.page-hero--plain {
  min-height: 220px;
  background-color: var(--black);
}
.page-hero--plain::before { background: none; }

/* Blog listing */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 12px;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.92rem;
  color: rgba(10,10,10,0.7);
  margin: 0 0 16px;
}
.blog-card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Blog article body */
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body h2 {
  text-align: left;
  margin-top: 56px;
  margin-bottom: 20px;
  font-size: 1.85rem;
  font-weight: 600;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.article-body h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-body p {
  margin-bottom: 20px;
  line-height: 1.75;
}
.article-body ul {
  margin: 0 0 20px 20px;
}
.article-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.article-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}
.article-cta .btn { margin: 8px; }

/* Home hero */
.home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.25) 100%);
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero .eyebrow-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.home-hero .eyebrow-mark .logo-mark {
  background: var(--white);
  color: var(--black);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.home-hero h1 { margin-bottom: 24px; }
.home-hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Services grid */
.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .grid-2x2 { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%);
}
.service-card span {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.testimonial-card {
  border: 1px solid var(--hairline-on-dark);
  padding: 32px;
}
.stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; }
.testimonial-card .quote { font-style: italic; }
.testimonial-card .author { color: var(--gold); font-weight: 600; margin: 0; }

/* Mission / about split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split img { width: 100%; height: 100%; object-fit: cover; }

/* Feature icons */
.features-box {
  border: 1px solid var(--hairline);
  padding: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 700px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--black);
}
.feature-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline-on-dark);
}
.price-card--white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--hairline);
}
.price-card--white .price-card-header { background: var(--black); color: var(--white); }
.price-card--white .feature-line { border-color: var(--hairline); }

.price-card-header {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 20px;
  position: relative;
}
.price-card-header h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 700;
}
.price-card-header .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--gold);
  font-size: 0.65rem;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-amount {
  text-align: center;
  padding: 24px 20px 8px;
}
.price-amount .amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
}
.price-amount .duration {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0 24px 24px;
  flex: 1;
}
.feature-line {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-on-dark);
  font-size: 0.9rem;
  text-align: center;
}
.feature-line:last-child { border-bottom: none; }
.price-card .btn { margin: 0 24px 24px; text-align: center; }

.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: -8px;
  margin-bottom: 40px;
}

/* Highlights / gallery grid (static fallback, still used where a marquee isn't wanted) */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 800px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
.highlights-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Highlights filmstrip — large, slow, continuously sliding */
.highlights-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.highlights-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: highlights-scroll 55s linear infinite;
}
.highlights-marquee:hover .highlights-marquee-track { animation-play-state: paused; }
.highlights-marquee-track img {
  height: 460px;
  width: auto;
  max-width: none;
  object-fit: cover;
  flex-shrink: 0;
}
@keyframes highlights-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 800px) {
  .highlights-marquee-track img { height: 300px; }
  .highlights-marquee-track { animation-duration: 38s; }
}

/* Logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
}
.logo-strip img { max-height: 72px; width: auto; opacity: 1; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}
.faq-item h3 { margin-bottom: 8px; font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; }
.faq-item p { margin: 0; }

/* Forms */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .contact-form { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--hairline);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field input.invalid, .field textarea.invalid, .field select.invalid {
  border-color: #b3261e;
}
.field .error-msg {
  display: none;
  color: #b3261e;
  font-size: 0.78rem;
  margin-top: 6px;
}
.field.has-error .error-msg { display: block; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #b3261e; }
.required-mark { color: #b3261e; margin-left: 3px; }

.checkbox-row { display: flex; gap: 28px; flex-wrap: wrap; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--black);
  cursor: pointer;
}
.form-status {
  display: none;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(184, 147, 90, 0.12); border: 1px solid var(--gold); color: var(--ink); }
.form-status.error { background: rgba(179, 38, 30, 0.08); border: 1px solid #b3261e; color: #b3261e; }

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 700px) { .contact-info-strip { grid-template-columns: 1fr; } }
.contact-info-strip h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }

/* Accessories */
.accessory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .accessory-grid { grid-template-columns: 1fr; } }
.accessory-card { position: relative; }
.accessory-card img { width: 100%; height: 420px; object-fit: cover; }
.accessory-card h3 {
  margin-top: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 3px solid var(--gold);
  color: rgba(0,0,0,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; overflow-wrap: break-word; word-break: break-word; }
.footer-grid a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}
.footer-bottom strong { color: var(--gold); }

/* Icons */
.icon { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -2px; margin-right: 6px; flex-shrink: 0; }
.topbar-contact a, .topbar-contact span a { display: inline-flex; align-items: center; }
.topbar-social a { display: inline-flex; align-items: center; justify-content: center; }
.topbar-social .icon { margin-right: 0; width: 15px; height: 15px; }
.footer-social a { display: inline-flex; }
.footer-social .icon { margin-right: 0; width: 16px; height: 16px; }
.footer-grid li a { display: inline-flex; align-items: flex-start; }
.footer-grid li { display: flex; align-items: flex-start; }
.footer-grid li .icon { margin-top: 3px; }

/* Nav dropdown (Services) */
.nav-links li.has-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; padding: 6px 0; border-bottom: 2px solid transparent; line-height: 1; }
.dropdown-toggle.active { border-color: var(--gold); color: var(--gold); }
.dropdown-toggle .caret { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.2s ease; }
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--hairline);
  min-width: 200px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  z-index: 50;
}
.nav-links li.has-dropdown:hover .dropdown-menu,
.nav-links li.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links li.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown-menu li { width: auto; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-bottom: none;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(0,0,0,0.04); color: var(--gold); }

@media (max-width: 1080px) {
  .dropdown-toggle { justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--hairline); }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.25s ease;
  }
  .nav-links li.has-dropdown.open .dropdown-menu { max-height: 400px; }
  .nav-links li.has-dropdown.open .caret { transform: rotate(180deg); }
  .dropdown-menu a { padding: 14px 24px 14px 40px; border-bottom: 1px solid var(--hairline); background: rgba(0,0,0,0.02); }
  .nav-book-btn { display: block; text-align: center; margin: 16px 24px; border-bottom: none !important; }
}

/* Logo marquee (Corporate Clients) */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track img { max-height: 76px; width: auto; opacity: 1; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Testimonial slider */
.slider { position: relative; max-width: 720px; margin: 48px auto 0; }
.slider-track { position: relative; min-height: 260px; overflow: hidden; }
.slider-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.45, 0, 0.2, 1);
}
.slider-slide.active { transform: translateX(0); }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.slider-dots button.active { background: var(--gold); }

/* Page transition overlay */
#pageTransition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
#pageTransition.visible { opacity: 1; visibility: visible; }
#pageTransition video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
#pageTransition .transition-mark {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 12px;
}
#pageTransition .transition-mark .logo-mark {
  background: var(--white);
  color: var(--black);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}

/* Utility */
.mt-0 { margin-top: 0; }
.subtitle { text-align: center; max-width: 640px; margin: 0 auto 8px; }
