* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0f;
  color: #f7f2ea;
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  background: rgba(13, 13, 15, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 7% 80px;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  color: #d7b56d;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: .18em;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .9;
  letter-spacing: -0.08em;
  margin: 14px 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 8px 0 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 1.2rem;
  color: #ded6ca;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.primary {
  background: #d7b56d;
  color: #111;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.full {
  width: 100%;
  text-align: center;
}

.section {
  padding: 95px 7%;
}

.intro,
.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.cards {
  display: grid;
  gap: 24px;
}

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

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

.price-card,
.product-card,
.about-card {
  background: #17171a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.featured {
  border-color: rgba(215,181,109,.55);
  position: relative;
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #d7b56d;
  color: #111;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin: 10px 0;
}

.price span {
  font-size: 1rem;
  color: #bbb;
}

ul {
  padding-left: 18px;
  color: #ddd;
  line-height: 1.8;
  margin: 24px 0;
}

.dark {
  background: #050506;
}

.product-img {
  min-height: 150px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2f2f35, #0d0d0f);
  display: grid;
  place-items: center;
  color: #d7b56d;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #d7b56d;
}

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

.photo-gallery figure {
  margin: 0;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #17171a;
}

.photo-gallery img,
.camera-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.photo-gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(0,0,0,.62);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.camera-photo {
  border-radius: 20px;
  margin-bottom: 20px;
  background: #222;
}

.contact {
  background: #111;
}

.contact-form {
  max-width: 780px;
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #ddd;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 15px;
  background: #0a0a0b;
  color: #fff;
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  color: #d7b56d;
  font-weight: 700;
}

footer {
  padding: 30px 7%;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #050506;
}

@media (max-width: 850px) {
  .site-header {
    position: static;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .intro,
  .about,
  .two,
  .three,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 6%;
  }
}

.product-img { display: none; }

.booking-calendar {
  margin-top: 55px;
}

.small-heading {
  margin-bottom: 24px;
}

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

.schedule-grid article {
  background: #17171a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 22px;
}

.schedule-grid h3 {
  margin-top: 0;
}

.schedule-grid p {
  color: #d7b56d;
  font-weight: 800;
}

.schedule-grid span {
  display: inline-block;
  margin: 6px 5px 0 0;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

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

.budget {
  border-color: rgba(255,255,255,0.16);
}

.budget-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(215,181,109,.16);
  color: #d7b56d;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 850px) {
  .schedule-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

