*,
*::before,
*::after {
  box-sizing: border-box;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  color: white;
  text-align: center;
}

.logo-title span {
  background: linear-gradient(135deg, #ffd700, #c9a227, #fff2a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(212,175,55,0.35);
}

.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(34, 20, 16, 0.35), rgba(34, 20, 16, 0.35)),
    url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 96px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  width: min(900px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-card {
  margin-top: 28px;
  width: min(720px, 100%);
  padding: 34px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  color: #fff;
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  color: #fff;
}

.hero-card p {
  color: rgba(255,255,255,0.94);
  line-height: 1.75;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.tagline{color:#f1cb64}

.btn-secondary {
  background: rgba(255,255,255,0.14);
  color: #f1cb64;
  border: 1px solid rgba(255,255,255,0.30);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
}

.scroll-down {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.price-section {
  position: relative;
  margin-top: -40px;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,244,240,0.92));
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(62, 36, 27, 0.06);
}

.price-card.luxury {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(252,247,243,0.92));
  border: 1px solid rgba(183, 134, 103, 0.18);
}

.price-card.luxury::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-top h3 {
  margin: 0;
}

.price-line {
  height: 1px;
  margin: 18px 0 14px;
  background: linear-gradient(90deg, rgba(183,134,103,0.35), rgba(183,134,103,0.05));
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.btn-primary.large {
  min-width: 240px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.booking-form {
  min-width: 0;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(252,247,243,0.93));
  border: 1px solid rgba(183, 134, 103, 0.16);
  box-shadow: 0 18px 40px rgba(62, 36, 27, 0.08);
  border-radius: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.field {
  min-width: 0;
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 54px;
  margin: 0;
  border: 1px solid #e7d5ca;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1rem;
  line-height: 1.4;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  appearance: none;
}

.booking-form textarea {
  min-height: 130px;
  height: auto;
  resize: vertical;
}

.booking-form input[type="date"],
.booking-form select {
  height: 54px;
}

.booking-form .btn-primary.full {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
}

.booking-section {
  padding-top: 88px;
}

.booking-sidecard {
  padding: 28px;
  background: linear-gradient(180deg, rgba(190,145,117,0.12), rgba(255,255,255,0.94));
  border: 1px solid rgba(183, 134, 103, 0.14);
  box-shadow: 0 18px 40px rgba(62, 36, 27, 0.06);
  border-radius: 28px;
}

.booking-sidecard h3 {
  margin-bottom: 14px;
}

.booking-sidecard ol {
  padding-left: 18px;
  line-height: 1.9;
  margin: 0 0 14px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 42px 0 84px;
  }

  .hero-card {
    padding: 26px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}