/* Core color palette, spacing, and typography tokens */
:root {
  --bg: #060606;
  --surface: #101010;
  --surface-2: #181818;
  --text: #f5f2ea;
  --muted: #b8b2a7;
  --gold: #c9a74d;
  --gold-soft: rgba(201, 167, 77, 0.18);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #060606 0%, #0f0f0f 100%);
  line-height: 1.65;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 6, 0.78);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f3db8f);
  color: #131313;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  background: transparent;
  border: 0;
  padding: 0.35rem;
}

.nav-toggle span {
  width: 1.35rem;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.hero-copy,
.section-heading p,
.about-grid p,
.pricing-grid p,
.contact-card p,
.booking-grid p,
.testimonial-card p,
.faq-list p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f0d07d);
  color: #171717;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 680px;
}

.hero-highlights > div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.42);
  backdrop-filter: blur(8px);
}

.hero-highlights strong,
.pricing-card h3 {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 6rem 0;
}

.about-grid,
.pricing-grid,
.booking-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.about-card,
.pricing-card,
.contact-card,
.booking-form,
.testimonial-card,
.service-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card {
  padding: 1rem;
  overflow: hidden;
}

.about-card img {
  border-radius: 18px;
  height: 300px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 0.2rem 0.2rem;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.6rem;
}

.card-grid,
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.4rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 167, 77, 0.45);
}

.service-card p,
.testimonial-card p,
.contact-card a {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 2rem;
}

.pricing-card {
  padding: 2rem;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.3rem 0 1rem;
}

.price span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.pricing-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 0.6rem;
}

.testimonial-card {
  padding: 1.5rem;
}

.rating {
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

.faq-wrap {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.booking-form {
  padding: 1.5rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(201, 167, 77, 0.5);
  border-color: var(--gold);
}

.contact-card {
  padding: 2rem;
  text-align: center;
}

.contact-email {
  margin-top: 0.35rem;
}

.contact-email a {
  display: inline-block;
  color: var(--text);
  font-weight: 700;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--gold);
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #040404;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 0.85rem;
}

.site-footer h3 {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .card-grid,
  .testimonial-grid,
  .about-grid,
  .pricing-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
