* {
  box-sizing: border-box;
}

:root {
  --bg: #fff8f1;
  --paper: #ffffff;
  --text: #2e241f;
  --muted: #6f625a;
  --accent: #b66b4e;
  --accent-dark: #81442f;
  --soft: #f2ddd0;
  --line: #ead7cb;
  --shadow: 0 18px 50px rgba(67, 42, 32, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  background: rgba(255, 248, 241, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-cta {
  border: 1px solid var(--accent);
  padding: 9px 14px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.6rem;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  padding: 80px 7vw 70px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 700;
}

h1, h2, h3 {
  line-height: 1.1;
}

h1, h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 0 0 20px;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 18px;
}

h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.lead {
  font-size: 1.18rem;
  max-width: 660px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(129, 68, 47, 0.14);
}

.primary {
  background: var(--accent);
  color: white;
}

.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

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

.hero-illustration {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(129, 68, 47, 0.12);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: 76px 7vw;
}

.section.alt {
  background: var(--soft);
}

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

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

.products-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card, .product, .booking-form, .about-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(67, 42, 32, 0.07);
}

.card ul, .about-box ul {
  padding-left: 20px;
  color: var(--muted);
}

.booking-grid, .about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 38px;
  align-items: start;
}

.notice {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(129,68,47,0.18);
}

.notice ol {
  padding-left: 20px;
  margin-bottom: 0;
}

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

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fffdfb;
  color: var(--text);
}

.form-hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.product-photo {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.product span {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  color: var(--accent-dark);
}

.center {
  text-align: center;
  margin-top: 30px;
}

.contact {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.contact-details {
  margin-top: 20px;
  color: var(--muted);
}

.contact-details p {
  margin: 6px 0;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 32px 7vw;
  border-top: 1px solid var(--line);
}

.legal-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer {
  text-align: center;
  padding: 26px 7vw 40px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .products-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 7vw;
    right: 7vw;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero, .booking-grid, .about {
    grid-template-columns: 1fr;
  }

  .cards, .products, .products-four {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .product-photo {
    height: 340px;
  }
}

.highlight-card {
  border-color: rgba(129, 68, 47, 0.32);
}

.event-card h3 {
  margin-bottom: 8px;
}

.booking-note {
  margin-top: 22px;
  color: var(--muted);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-top: 28px;
}

.legal-content h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.25rem;
  margin-top: 34px;
}

.legal-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  margin-top: 18px;
}
