:root {
  --bg: #0b0a09;
  --bg-soft: #12100e;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #fff8ec;
  --muted: rgba(255, 248, 236, 0.72);
  --soft: rgba(255, 248, 236, 0.52);
  --line: rgba(255, 248, 236, 0.14);
  --gold: #f6c56f;
  --amber: #ff9e4f;
  --rose: #ff6f61;
  --blue: #93c5fd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 158, 79, 0.16), transparent 32rem),
    radial-gradient(circle at 95% 8%, rgba(147, 197, 253, 0.11), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 100% 72px;
  opacity: 0.28;
}

img,
video,
svg {
  display: block;
}

img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: var(--container);
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 248, 236, 0.13);
  border-radius: 999px;
  background: rgba(12, 10, 9, 0.62);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand,
.header-nav,
.header-cta {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(246, 197, 111, 0.52);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246, 197, 111, 0.24), rgba(255, 111, 97, 0.16));
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.header-nav a,
.site-footer a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.header-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(246, 197, 111, 0.14);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: 128px max(16px, calc((100vw - 1160px) / 2)) 70px;
  background-image: url("assets/hero-fallback.jpg?v=20260518");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background: #14100e url("assets/hero-fallback.jpg?v=20260518") center / cover no-repeat;
}

.hero-image {
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88), rgba(8, 7, 6, 0.42) 48%, rgba(8, 7, 6, 0.72)),
    linear-gradient(180deg, rgba(8, 7, 6, 0.5), rgba(8, 7, 6, 0.32) 42%, rgba(8, 7, 6, 0.94));
}

.hero-content {
  width: min(820px, 100%);
  padding-bottom: clamp(18px, 5vw, 70px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 10vw, 7.4rem);
  font-weight: 870;
  line-height: 0.92;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 248, 236, 0.86);
  font-size: clamp(1.07rem, 2.2vw, 1.55rem);
  line-height: 1.48;
}

.hero-actions,
.final-actions,
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  font-size: 0.98rem;
  font-weight: 820;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover,
.social-btn:hover,
.feature-card:hover,
.gallery-item:hover,
.step-card:hover,
.audience-grid article:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber) 56%, var(--rose));
  color: #18100a;
}

.btn-primary:hover {
  box-shadow: 0 18px 52px rgba(255, 158, 79, 0.32);
}

.btn-secondary {
  border-color: rgba(255, 248, 236, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  border-color: rgba(246, 197, 111, 0.55);
  background: rgba(255, 255, 255, 0.13);
}

.btn-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

.btn-icon path,
.btn-icon rect,
.btn-icon circle,
.video-toggle path {
  fill: currentColor;
}

.btn-secondary .btn-icon rect,
.btn-secondary .btn-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-note {
  position: absolute;
  right: max(16px, calc((100vw - 1160px) / 2));
  bottom: 42px;
  display: flex;
  gap: 8px;
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.82rem;
}

.hero-note span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 248, 236, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.trust,
.section,
.gallery-section,
.audience-section,
.final-cta,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.trust {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-grid article {
  min-height: 128px;
  padding: 22px;
  background: rgba(18, 16, 14, 0.9);
  backdrop-filter: blur(18px);
}

.trust-grid h2 {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.28;
}

.trust-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 28px rgba(246, 197, 111, 0.85);
}

.section,
.gallery-section,
.audience-section {
  padding: clamp(76px, 10vw, 126px) 0 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  font-weight: 850;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.62;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.step-card,
.audience-grid article,
.faq details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.feature-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-card:hover,
.step-card:hover,
.audience-grid article:hover,
.faq details[open] {
  border-color: rgba(246, 197, 111, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.feature-card img {
  aspect-ratio: 4 / 5;
}

.feature-card div {
  min-height: 190px;
  padding: 22px;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.14;
}

.feature-card p,
.step-card p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.gallery-item:hover {
  border-color: rgba(246, 197, 111, 0.35);
}

.gallery-large {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.video-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 248, 236, 0.3);
  border-radius: 50%;
  background: rgba(10, 8, 7, 0.58);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.video-toggle:hover {
  background: rgba(246, 197, 111, 0.2);
  transform: scale(1.04);
}

.video-toggle svg {
  width: 22px;
  height: 22px;
}

.booking-panel {
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  border-block: 1px solid rgba(246, 197, 111, 0.22);
  background: linear-gradient(90deg, rgba(246, 197, 111, 0.1), rgba(255, 111, 97, 0.05), transparent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 28px;
}

.step-card {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(246, 197, 111, 0.15);
  color: var(--gold);
  font-weight: 850;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.audience-grid article {
  display: grid;
  min-height: 128px;
  align-items: end;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 780;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-inline: auto;
}

.faq details {
  border-radius: var(--radius);
}

.faq summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  font-size: 1.05rem;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  flex: 0 0 auto;
  color: var(--gold);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 22px 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(76px, 10vw, 126px);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(246, 197, 111, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(255, 158, 79, 0.22), rgba(255, 111, 97, 0.1) 42%, rgba(147, 197, 253, 0.1)),
    url("assets/roof-6.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(8, 7, 6, 0.88), rgba(8, 7, 6, 0.48));
}

.final-cta h2 {
  max-width: 640px;
  margin-bottom: 0;
}

.final-actions {
  justify-content: flex-end;
  width: min(450px, 100%);
}

.social-buttons {
  width: 100%;
}

.social-btn {
  display: inline-flex;
  min-height: 46px;
  flex: 1 1 120px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
  font-weight: 780;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-btn:hover {
  border-color: rgba(246, 197, 111, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 22px;
  padding: 34px 0 46px;
  color: var(--soft);
  font-size: 0.92rem;
}

.site-footer span {
  color: rgba(255, 248, 236, 0.45);
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 24px, 720px);
  }

  .header-nav {
    display: none;
  }

  .hero {
    min-height: 96svh;
    padding-top: 112px;
  }

  .hero-note {
    display: none;
  }

  .trust-grid,
  .feature-grid,
  .steps,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
  }

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

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 20px);
    --radius: 8px;
  }

  .site-header {
    top: 10px;
    min-height: 54px;
    padding: 8px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-height: 36px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 94svh;
    padding: 104px 12px 34px;
  }

  h1 {
    margin-bottom: 16px;
  }

  .hero-lead {
    margin-bottom: 24px;
  }

  .hero-actions,
  .final-actions,
  .social-buttons {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
  }

  .trust {
    margin-top: 0;
    padding-top: 10px;
  }

  .trust-grid,
  .feature-grid,
  .steps,
  .audience-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: 94px;
    padding: 18px;
  }

  .feature-card img {
    aspect-ratio: 1.2 / 1;
  }

  .feature-card div {
    min-height: auto;
    padding: 20px;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    aspect-ratio: 1 / 1.08;
  }

  .gallery-large {
    aspect-ratio: 1 / 1.2;
  }

  .booking-panel,
  .final-cta {
    padding: 22px;
  }

  .step-card {
    min-height: auto;
  }

  .audience-grid article {
    min-height: 92px;
  }

  .faq summary {
    min-height: 62px;
    padding-inline: 18px;
  }

  .faq details p {
    padding-inline: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 34px;
  }
}

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