:root {
  --navy: #061427;
  --navy-2: #0b1b31;
  --navy-3: #10243d;
  --graphite: #121417;
  --graphite-2: #1d2025;
  --gold: #c8a76b;
  --gold-2: #a9854a;
  --champagne: #f3eadb;
  --cream: #f8f4ec;
  --muted: #8e96a3;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(6, 20, 39, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--navy);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(6, 20, 39, 0.92), rgba(6, 20, 39, 0.68));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(6, 20, 39, 0.94);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img { width: 172px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.main-nav a,
.nav-cta {
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(200, 167, 107, 0.48);
  border-radius: 999px;
  color: var(--champagne);
  font-size: 14px;
}

.nav-cta:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(200, 167, 107, 0.16), transparent 36%),
    radial-gradient(circle at 90% 20%, rgba(55, 78, 110, 0.28), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, #07111f 55%, #03070d 100%);
  color: var(--white);
}

.hero { min-height: 100vh; padding: 160px 0 95px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}

.hero-content h1,
.intro-copy h2,
.section-heading h2,
.method-copy h2,
.regions h2,
.quote-copy h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 108px);
}

.hero-subtitle {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark { color: var(--gold-2); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  border: 0;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f2d99f);
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(200, 167, 107, 0.22);
}

.btn-secondary {
  color: var(--champagne);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover { border-color: rgba(200, 167, 107, 0.5); color: var(--gold); }

.full { width: 100%; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.trust-row div {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.trust-row span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-card {
  position: absolute;
  inset: 45px 10px 40px 20px;
  border-radius: 48px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    linear-gradient(135deg, #243249, #0a1321 68%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,39,0.08) 0%, rgba(6,20,39,0.18) 48%, rgba(6,20,39,0.56) 100%);
  z-index: 1;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 20%, rgba(200, 167, 107, 0.28), transparent 25%),
    radial-gradient(circle at 75% 78%, rgba(255, 255, 255, 0.14), transparent 21%);
}

.surface-lines {
  position: absolute;
  inset: -30px;
  opacity: 0.24;
  background-image:
    linear-gradient(120deg, transparent 0 47%, rgba(255,255,255,0.14) 48% 49%, transparent 50% 100%),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 84px 84px, 34px 34px;
  transform: rotate(-8deg);
}

 .seal-card {
  position: absolute;
  left: 38px;
  bottom: 38px;
  padding: 26px 28px;
  width: min(280px, calc(100% - 76px));
  border-radius: 24px;
  background: rgba(6, 20, 39, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.seal-card span,
.floating-card span,
.plan-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.seal-card strong {
  display: block;
  margin-top: 8px;
  font-size: 44px;
  letter-spacing: -0.06em;
}

.fabric-sample {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.15px);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 5px),
    linear-gradient(145deg, rgba(200, 167, 107, 0.58), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
}

.sample-one { width: 220px; height: 220px; right: 58px; top: 72px; }
.sample-two { width: 145px; height: 145px; right: 210px; top: 250px; opacity: 0.68; }
.sample-three { width: 92px; height: 92px; right: 58px; bottom: 116px; opacity: 0.85; }

.floating-card {
  position: absolute;
  z-index: 3;
  width: 250px;
  padding: 18px 20px;
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.floating-card strong { display: block; margin-top: 8px; font-size: 17px; }
.floating-one { left: 0; top: 18px; }
.floating-two { right: 0; bottom: 12px; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.52;
}
.hero-glow-one { width: 420px; height: 420px; background: rgba(200, 167, 107, 0.16); left: -120px; top: 18%; }
.hero-glow-two { width: 360px; height: 360px; background: rgba(53, 79, 116, 0.30); right: -90px; bottom: 12%; }

.intro-section,
.services,
.b2b,
.faq {
  padding: 115px 0;
}

.portfolio-showcase {
  padding: 0 0 115px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.showcase-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 44px rgba(6, 20, 39, 0.08);
}

.showcase-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e1d5;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.showcase-card:hover .showcase-media img {
  transform: scale(1.035);
}

.showcase-copy {
  padding: 24px 24px 28px;
}

.showcase-copy span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.showcase-copy p {
  margin: 0;
  color: #56616f;
  line-height: 1.72;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-kicker {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.intro-copy h2,
.section-heading h2,
.method-copy h2,
.regions h2,
.quote-copy h2 {
  font-size: clamp(40px, 5vw, 72px);
}

.intro-copy p,
.section-heading p,
.method-copy p,
.regions p,
.quote-copy p,
.plan-card p,
.service-card p,
.timeline-item p,
.faq p {
  color: #56616f;
  line-height: 1.72;
  font-size: 16px;
}

.intro-copy p {
  max-width: 780px;
  margin: 28px 0 0;
  font-size: 19px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 56px;
}

.section-heading.narrow { max-width: 720px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.58);
  box-shadow: 0 18px 48px rgba(6, 20, 39, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: rgba(200, 167, 107, 0.52);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(200, 167, 107, 0.12);
  font-weight: 800;
  font-size: 13px;
}

.service-card h3,
.timeline-item h3,
.plan-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.service-card p { margin: 0; }

.featured-card {
  background:
    linear-gradient(145deg, rgba(6, 20, 39, 0.96), rgba(16, 36, 61, 0.94)),
    var(--navy);
  color: var(--white);
  border-color: rgba(200, 167, 107, 0.32);
}

.featured-card p { color: rgba(255, 255, 255, 0.68); }

.method { padding: 122px 0; }

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.method-copy p,
.regions p,
.quote-copy p { color: rgba(255,255,255,0.66); }
.method-copy .btn { margin-top: 22px; }

.timeline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.timeline-item:last-child { border-bottom: 0; }
.timeline-item span { color: var(--gold); font-weight: 900; letter-spacing: 0.12em; }
.timeline-item h3 { color: var(--white); font-size: 22px; }
.timeline-item p { color: rgba(255, 255, 255, 0.62); margin: 0; }

.b2b-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.plan-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 44px rgba(6, 20, 39, 0.06);
}

.plan-card p { margin: 0; }
.premium-plan { background: var(--navy); color: var(--white); border-color: rgba(200,167,107,0.32); }
.premium-plan p { color: rgba(255,255,255,0.62); }

.regions { padding: 112px 0; }
.regions-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.region-list span {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(6, 20, 39, 0.045);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

summary::marker { color: var(--gold-2); }

details p { margin: 16px 0 0; }

.quote { padding: 118px 0; }
.quote-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.quote-form {
  padding: 32px;
  border-radius: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.quote-form label {
  display: block;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  outline: none;
  font: inherit;
}

.quote-form textarea { resize: vertical; }
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus { border-color: rgba(200, 167, 107, 0.75); }
.quote-form option { color: var(--navy); }
.quote-form ::placeholder { color: rgba(255,255,255,0.42); }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,0.46); font-size: 13px; text-align: center; }

.site-footer {
  padding: 40px 0;
  background: #03070d;
  color: rgba(255,255,255,0.66);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-grid img { width: 142px; }
.footer-grid p { margin: 0; max-width: 540px; }
.footer-grid a { color: var(--gold); font-weight: 700; }

.footer-rights {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

.footer-rights p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }

@media (max-width: 1000px) {
  .main-nav,
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 78px 20px auto;
    display: none;
    padding: 24px;
    border-radius: 22px;
    background: rgba(6, 20, 39, 0.96);
    border: 1px solid rgba(255,255,255,0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  body.menu-open .main-nav { display: flex; }
  .hero-grid,
  .method-grid,
  .b2b-layout,
  .regions-grid,
  .faq-grid,
  .quote-grid,
  .split-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding-top: 132px; }
  .hero-visual { min-height: 500px; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand img { width: 138px; }
  .hero { padding: 124px 0 70px; }
  .hero-content h1 { font-size: clamp(48px, 15vw, 72px); }
  .trust-row { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-visual { min-height: 420px; }
  .visual-card { inset: 46px 0 26px; border-radius: 34px; }
  .floating-card { width: 215px; }
  .floating-one { left: 8px; top: 0; }
  .floating-two { right: 8px; bottom: 0; }
  .sample-one { width: 170px; height: 170px; right: 28px; }
  .sample-two { width: 110px; height: 110px; right: 140px; }
  .cards-grid { grid-template-columns: 1fr; }
  .showcase-copy h3 { font-size: 24px; }
  .intro-section,
  .services,
  .b2b,
  .faq,
  .method,
  .regions,
  .quote { padding: 82px 0; }
  .service-card { min-height: auto; padding: 26px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}


/* Premium visual upgrade: slider + internal banners */
.hero-slider {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.7s ease, transform 1.1s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide span {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(6, 20, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.image-card::before {
  z-index: 1;
  pointer-events: none;
}

.image-overlay {
  z-index: 2;
  pointer-events: none;
}

.slider-dots {
  position: absolute;
  left: 38px;
  top: 34px;
  z-index: 4;
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(6, 20, 39, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.slider-dots button {
  width: 34px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.34);
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.active {
  width: 54px;
  background: var(--gold);
}

.seal-card,
.fabric-sample {
  z-index: 4;
}

.portfolio-showcase .section-heading p {
  max-width: 760px;
}

.showcase-cta {
  margin-top: 34px;
  padding: 24px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(200, 167, 107, 0.28);
  box-shadow: 0 18px 44px rgba(6, 20, 39, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.showcase-cta p {
  margin: 0;
  max-width: 680px;
  color: #56616f;
  line-height: 1.65;
}

.premium-banner {
  padding: 118px 0;
}

.banner-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.banner-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.banner-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.72;
  font-size: 17px;
}

.banner-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
  align-items: stretch;
}

.banner-tile {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: #111;
}

.banner-tile.large {
  min-height: 560px;
}

.banner-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.banner-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,39,0.04), rgba(6,20,39,0.28) 42%, rgba(3,7,13,0.84) 100%);
}

.banner-tile div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.banner-tile span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.banner-tile strong {
  display: block;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

@media (max-width: 1000px) {
  .banner-grid,
  .banner-stack {
    grid-template-columns: 1fr;
  }

  .banner-tile,
  .banner-tile.large {
    min-height: 420px;
  }

  .showcase-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .hero-slide span {
    left: 22px;
    right: auto;
    top: auto;
    bottom: 150px;
  }

  .slider-dots {
    left: 22px;
    top: 24px;
  }

  .banner-tile,
  .banner-tile.large {
    min-height: 360px;
    border-radius: 26px;
  }

  .premium-banner {
    padding: 82px 0;
  }
}
