@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/BodoniModa-VariableFont_opsz,wght.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #0d0f12;
  --bg-soft: #15181d;
  --panel: #1c2026;
  --panel-light: #20252c;
  --red: #e11f2d;
  --red-dark: #b21422;
  --platinum: #e5e4e2;
  --text: #f4f5f6;
  --muted: #b7bcc4;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Bodoni Moda", serif;
  background: radial-gradient(circle at top, #1a1e25 0%, #0d0f12 52%, #090b0e 100%);
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
  letter-spacing: 0.01em;
  font-weight: 700;
}

.section-subtitle {
  color: var(--muted);
  max-width: 460px;
}

.accent {
  text-shadow: 0 6px 18px rgba(255, 255, 255, 0.18);
}

.accent-teal {
  color: #3ddbd9;
}

.accent-cyan {
  color: #52e1ff;
}

.accent-gold {
  color: #f2c94c;
}

.accent-steel {
  color: #8fb3c8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0;
  background: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-family: "Bodoni Moda", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand span {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}

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

.demo-pill {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 28px rgba(225, 31, 45, 0.32);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.hero {
  padding: 140px 0 80px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(225, 31, 45, 0.35), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 700;
}

.hero p {
  color: var(--muted);
  margin: 18px 0 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  border-radius: calc(var(--radius) + 6px);
  padding: 0;
  min-height: 420px;
}

.media-img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-img {
  aspect-ratio: 3 / 4;
  border-radius: 0;
}

.quote-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.quote-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.quote-title {
  font-family: "Bodoni Moda", serif;
  font-size: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--panel-light);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-family: "Inter", sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}

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

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

.add-ons label {
  background: var(--panel-light);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid transparent;
}

.add-ons input:checked + span {
  color: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.package {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1b1f26, #12151a);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.package h3 {
  font-size: 1.4rem;
}

.package p {
  color: var(--muted);
  margin: 10px 0 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-block {
  background: transparent;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-text {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  border: none;
}

.service-text h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-text ul {
  margin: 12px 0 0 18px;
  color: var(--muted);
}

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

.gallery-item {
  background: linear-gradient(160deg, #2a2f37, #1a1f26);
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--line);
}

.gallery-item .media-img {
  aspect-ratio: 3 / 2;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  background: #161a20;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item p {
  color: var(--muted);
  margin-top: 10px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.faq-item[open] p {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

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

.location-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #14181e;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: saturate(0.8) contrast(1.05);
}

.cta-final {
  background: linear-gradient(140deg, rgba(225, 31, 45, 0.25), rgba(18, 20, 25, 0.8));
  border-radius: var(--radius);
  padding: 42px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

footer a {
  color: var(--muted);
}

footer a:hover {
  color: var(--text);
}

footer a.footer-accent {
  color: #f2c94c;
  font-weight: 600;
}

footer a.footer-accent:hover {
  color: #ffdf7a;
}

@media (max-width: 980px) {
  .hero-grid,
  .package-grid,
  .service-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: span 1;
  }

  .add-ons {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  .add-ons {
    grid-template-columns: 1fr;
  }
}
