:root {
  --bg: #efefef;
  --surface: #ffffff;
  --surface-soft: #f6f6f6;
  --text: #1d1d1d;
  --text-muted: #686a6d;
  --line: #d8d8d8;
  --brand: #8e9195;
  --brand-dark: #5f6266;
  --shadow: 0 16px 40px rgba(28, 30, 32, 0.09);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 0%, #ffffff, var(--bg) 55%);
  line-height: 1.55;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(239, 239, 239, 0.9);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  font-family: "Urbanist", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-sm {
  padding: 8px 13px;
  font-size: 0.92rem;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero {
  padding: 64px 0 36px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  inset: auto -120px 16% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(142, 145, 149, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: "Urbanist", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-top: 8px;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  margin-top: 8px;
}

h3 {
  font-size: 1.2rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--brand-dark);
  font-size: 0.78rem;
}

.hero-copy {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 14px 0 22px;
}

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

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card ul,
.price-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8f8f8, #ececec);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.value-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-pill {
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
}

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

.photo-section {
  padding-top: 16px;
}

.photo-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.photo-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.photo-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

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

.pricing-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.price {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin: 12px 0;
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.ala-carte-card {
  margin-top: 18px;
  border-color: #b8bdc1;
  background: linear-gradient(180deg, #ffffff, #f3f4f5);
}

.ala-carte-copy {
  color: var(--text-muted);
  max-width: 70ch;
  margin: 10px 0 8px;
}

.featured {
  border-color: #b8bdc1;
  transform: translateY(-6px);
}

.badge {
  display: inline-block;
  margin: 0 0 8px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #e5e7ea;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.contact-wrap p,
.split p {
  color: var(--text-muted);
}

.contact-wrap a {
  color: var(--brand-dark);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.booking-card {
  margin-top: 18px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin: 0;
}

.booking-card p {
  margin: 8px 0 12px;
}

.booking-embed {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd1d4;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-wrap a {
  color: inherit;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-wrap,
  .cards,
  .pricing-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    right: 4vw;
    top: 66px;
    width: min(320px, 92vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .brand-text {
    display: none;
  }
}
