* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.6;
}

:root {
  --accent: #d9a25f;
}


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

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { max-width: 760px; }
.center-text { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e3e3e3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: #444;
}

.nav-links a.active,
.nav-links a:hover {
  color: #000;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}

.eyebrow,
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 10px;
}

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 14px;
}

.hero-sub {
  max-width: 60ch;
  color: #444;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-image-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 0 1px rgba(217, 162, 95, 0.25);
  padding: 18px;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f4f4f4, #e3e3e3);
  border-radius: 12px;
}

.hero-image-caption {
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
}

.section {
  padding: 64px 0;
}

.section-light { background: #f7f7f7; }
.section-white { background: #ffffff; }

.section-sub {
  color: #444;
  max-width: 60ch;
  margin: 0 auto 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #111;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: #111;
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: #111;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

.btn-full { width: 100%; }

.pricing-card {
  max-width: 520px;
  margin: 30px auto 0;
  padding: 26px 24px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 0 1px rgba(217, 162, 95, 0.25);
}

.pricing-page-card {
  max-width: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 18px;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
}

.price-detail {
  font-size: 0.95rem;
  color: #555;
}

.included-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #444;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 0 1px rgba(217, 162, 95, 0.25);
  padding: 12px 16px;
}

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

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

.faq-item p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #444;
}

.page-hero {
  padding: 64px 0 40px;
  background: #f7f7f7;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.booking-info h2 {
  margin-bottom: 10px;
}

.contact-list {
  padding-left: 18px;
  color: #444;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d5d5d5;
  font: inherit;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid #e3e3e3;
  background: #ffffff;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #555;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-links a {
  color: #444;
}

.footer-links a.active,
.footer-links a:hover {
  color: #000;
}

.legal-copy h2 {
  margin-top: 20px;
}

.legal-copy p {
  color: #444;
}

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

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

.nav-links a.active {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.footer-copy {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #777;
}
