:root {
  --bg: #0d0d0f;
  --bg-soft: #141417;
  --panel: rgba(14, 14, 18, 0.86);
  --gold: #d4af68;
  --gold-soft: #f1dfaf;
  --line: rgba(212, 175, 104, 0.22);
  --text: #f5f1e8;
  --muted: #b7b0a3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212,175,104,0.1), transparent 30%),
    linear-gradient(180deg, #080809 0%, #111114 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 9, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-soft);
  min-width: 0;
}

.logo-mark {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), #9a7434);
  box-shadow: 0 0 0 6px rgba(212,175,104,0.1);
}

.logo strong,
.logo small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.9;
}

.logo strong {
  font-size: 2rem;
  font-weight: 700;
}

.logo small {
  font-size: 1rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.nav-cta,
.btn-gold {
  background: linear-gradient(180deg, #f1d38d, #bf9247);
  color: #111;
  box-shadow: 0 10px 30px rgba(212,175,104,0.22);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5,5,7,0.92) 0%, rgba(5,5,7,0.78) 45%, rgba(5,5,7,0.56) 100%),
    url('https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.25) 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 38px;
  padding: 72px 0;
}

.hero-copy h1 {
  margin: 12px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.3rem, 6vw, 5.9rem);
  line-height: 0.94;
  font-weight: 600;
}

.eyebrow,
.section-title span,
.testimonial-card span {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
}

.hero-sub {
  width: min(640px, 100%);
  color: #ddd5c6;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-promo {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  width: min(590px, 100%);
  background: rgba(255,255,255,0.03);
}

.hero-promo span {
  color: var(--gold-soft);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.hero-promo p {
  margin: 0;
  color: var(--muted);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-points span {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.hero-points span:last-child {
  border-right: none;
  padding-right: 0;
}

.booking-card {
  align-self: center;
  background: linear-gradient(180deg, rgba(20,20,23,0.95), rgba(12,12,14,0.9));
  border: 1px solid rgba(212,175,104,0.28);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.booking-card-head h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 600;
}

.booking-card-head p {
  color: var(--muted);
  margin: 8px 0 24px;
}

.booking-form label,
.extras {
  display: block;
  margin-bottom: 16px;
}

.booking-form span,
.booking-form legend {
  display: block;
  margin-bottom: 8px;
  color: #ece5d8;
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 14px;
  font-size: 1rem;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(212,175,104,0.7);
  box-shadow: 0 0 0 4px rgba(212,175,104,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.extras {
  margin: 8px 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
}

.check {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.check span {
  margin: 0;
  color: var(--muted);
  display: inline;
}

.check strong {
  color: var(--gold-soft);
}

.quote-box {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  background: rgba(212,175,104,0.08);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 16px;
}

.quote-box small {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.quote-box strong {
  font-size: 1.8rem;
  color: var(--gold-soft);
}

.quote-box p {
  margin: 0;
  color: var(--muted);
  max-width: 230px;
  text-align: right;
}

.booking-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0;
}

.success-message {
  margin-top: 18px;
  background: rgba(75, 181, 67, 0.12);
  border: 1px solid rgba(75, 181, 67, 0.32);
  border-radius: 18px;
  padding: 18px;
}

.success-message h3 {
  margin-top: 0;
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.trust-items div {
  padding: 18px;
  color: var(--gold-soft);
  border-right: 1px solid var(--line);
  font-weight: 600;
}

.trust-items div:last-child {
  border-right: none;
}

.section {
  padding: 88px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 10px 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 600;
}

.section-title.center {
  text-align: center;
}

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

.steps-grid article,
.service-card,
.pricing-panel,
.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps-grid article {
  padding: 28px;
}

.step-num {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,104,0.1);
  color: var(--gold-soft);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.steps-grid h3 {
  margin: 0 0 10px;
}

.steps-grid p,
.service-card p,
.pricing-copy,
.contact p {
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  padding: 28px;
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(212,175,104,0.16), rgba(255,255,255,0.03));
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.price {
  color: var(--gold-soft) !important;
  font-size: 1.2rem;
  font-weight: 700;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.pricing-panel {
  padding: 26px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row span {
  color: var(--muted);
}

.pricing-row strong {
  color: var(--gold-soft);
}

.testimonial-card {
  padding: 42px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.testimonial-card blockquote {
  margin: 16px auto;
  max-width: 700px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  font-family: 'Cormorant Garamond', serif;
}

.testimonial-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(0,0,0,0.24);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6b36a, #f0d48a);
  color: #111;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
}

.mobile-sticky-book {
  display: none;
}

/* Tablet */
@media (max-width: 980px) {
  .hero-grid,
  .pricing-wrap,
  .service-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 52px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-wrap {
    gap: 10px;
    min-height: auto;
    padding: 12px 0;
  }

  .logo {
    gap: 10px;
    flex: 1;
    min-width: 0;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

  .logo strong {
    font-size: 2rem;
  }

  .logo small {
    font-size: 0.8rem;
    letter-spacing: 0.28em;
  }

  .nav-cta {
    flex-shrink: 0;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0 28px;
  }

  .hero-copy h1 {
    font-size: 3.35rem;
    line-height: 0.95;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-promo {
    margin: 20px 0;
    padding: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 18px;
  }

  .hero-points {
    gap: 10px;
    flex-direction: column;
  }

  .hero-points span {
    border-right: none;
    padding-right: 0;
  }

  .booking-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .booking-card-head h2 {
    font-size: 2rem;
  }

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

  .quote-box {
    display: grid;
    gap: 8px;
    align-items: flex-start;
  }

  .quote-box p {
    max-width: none;
    text-align: left;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-items div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .trust-items div:last-child {
    border-bottom: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 2.5rem;
    line-height: 1.05;
  }

  .steps-grid article,
  .service-card,
  .pricing-panel,
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card blockquote {
    font-size: 1.5rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-sticky-book {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(7, 7, 10, 0.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(214,179,106,.24);
  }

  .mobile-sticky-book a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    background: linear-gradient(135deg, #d6b36a, #f0d48a);
    color: #111;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .logo strong {
    font-size: 1.7rem;
  }

  .logo small {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .nav-cta {
    font-size: 0.9rem;
    padding: 11px 14px;
  }

  .booking-card-head h2 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 2.1rem;
  }

  .quote-box strong {
    font-size: 1.55rem;
  }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
}

.footer-links a:hover {
  color: var(--gold-soft);
}
.site-footer {
  padding-bottom: 120px;
}
