
:root {
  --dark: #2c241d;
  --brown: #5b4636;
  --tan: #eadfcf;
  --cream: #f8f5f0;
  --white: #ffffff;
  --accent: #a36b2c;
  --text: #241f1b;
  --muted: #6d625a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: var(--dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 14px rgba(0,0,0,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta {
  background: white;
  color: var(--dark);
  padding: 9px 14px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 26px;
}

.hero,
.page-hero {
  background: linear-gradient(135deg, rgba(44,36,29,.95), rgba(91,70,54,.95));
  color: white;
}

.hero { padding: 86px 0; }
.page-hero { padding: 72px 0; text-align: center; }

.hero-grid,
.two-column,
.reservation-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 22px;
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -.03em;
}

h3 { font-size: 24px; margin: 0 0 10px; }

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f4c98d;
}

.hero-text,
.page-hero p,
.large {
  font-size: 20px;
  opacity: .92;
  max-width: 760px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 13px 20px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,.65);
}

.button.small {
  padding: 10px 14px;
  font-size: 14px;
}

.photo-card {
  background: white;
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.photo-placeholder {
  min-height: 330px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d9c7ad, #8c745b);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  padding: 20px;
}

.feature-row,
.product-highlight,
.content-page,
.faq-list,
.reservation-section {
  padding: 72px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.simple-card,
.product-card,
.info-panel,
.quote,
.contact-box,
.note-box {
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.feature-card a,
.product-card a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.band {
  background: var(--tan);
  padding: 72px 0;
}

.check-list p {
  background: white;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 800;
}

.cards-3,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-card.featured { border: 3px solid var(--accent); }

.price {
  color: var(--accent);
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 14px;
}

.product-card ul,
.styled-list {
  padding-left: 20px;
}

.product-highlight {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 38px;
  align-items: start;
}

.info-panel {
  background: var(--dark);
  color: white;
}

.info-panel p {
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 10px;
}

.cta {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 72px 0;
}

.content-page h2 { margin-top: 38px; }
.note-box { background: #fff7e8; margin-top: 28px; }

.faq-list details {
  background: white;
  margin-bottom: 14px;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 5px 18px rgba(0,0,0,.06);
}

.faq-list summary {
  font-weight: 900;
  cursor: pointer;
  font-size: 18px;
}

/* Reservation form */
.reservation-form {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  display: grid;
  gap: 16px;
}

.reservation-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #d8cec2;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
}

textarea { resize: vertical; }

.form-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 0;
}

.site-footer {
  background: #1f1914;
  color: white;
  padding-top: 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 28px;
}

.site-footer a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 8px 0;
}

.copyright {
  text-align: center;
  color: #b7aea7;
  padding: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

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

  nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav.open { display: flex; }

  .hero-grid,
  .two-column,
  .reservation-section,
  .product-highlight {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .cards-3,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding: 58px 0;
  }
}
