:root {
  --cream: #fbf5eb;
  --sand: #eadfcf;
  --soft: #edf3ee;
  --sage: #788f74;
  --sage-dark: #344a39;
  --pine: #18271f;
  --lake: #739eb3;
  --gold: #d2ad5f;
  --white: #ffffff;
  --muted: #69786d;
  --shadow: 0 32px 90px rgba(24, 39, 31, 0.18);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--pine);
  background: var(--cream);
  line-height: 1.7;
}

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

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

.announcement {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  background: var(--pine);
  color: white;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 38px;
  z-index: 25;
  padding: 16px 18px;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 45px rgba(24,39,31,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.34rem;
  font-weight: 800;
}

.brand span {
  color: var(--sage-dark);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-button {
  background: var(--sage-dark);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
}

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

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 170px 24px 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 34%, rgba(210,173,95,.32), transparent 26%),
    linear-gradient(90deg, rgba(24,39,31,.82), rgba(24,39,31,.38), rgba(24,39,31,.64)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=2100&q=90") center/cover;
}

.hero-video {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.38)),
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.11), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  margin: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.8rem, 9.5vw, 9rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  margin: 0;
}

.hero-subtitle {
  max-width: 700px;
  margin: 26px 0 34px;
  font-size: 1.25rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--sage-dark);
  color: white;
  box-shadow: 0 16px 34px rgba(52,74,57,.28);
}

.secondary,
.glass {
  background: rgba(255,255,255,.88);
  color: var(--pine);
}

.full {
  width: 100%;
}

.hero-reservation-card {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1200px) / 2));
  bottom: 58px;
  width: min(370px, calc(100% - 48px));
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-reservation-card span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
}

.hero-reservation-card strong {
  display: block;
  margin: 8px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.hero-reservation-card a {
  color: var(--sage-dark);
  font-weight: 900;
}

.trust-strip {
  background: var(--sage-dark);
  color: white;
  padding: 28px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  text-align: center;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.trust-grid span {
  opacity: .78;
  font-size: .94rem;
}

.section {
  padding: 112px 24px;
}

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

.editorial-grid,
.payment-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.editorial-copy p,
.section-heading p,
.payment-copy p,
.location-copy p,
.contact-card p,
.seo-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.signature-list {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.signature-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  background: white;
  padding: 16px 18px;
  border-radius: 22px;
}

.signature-list span {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.editorial-images {
  position: relative;
  min-height: 650px;
}

.editorial-images img {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-large {
  height: 610px;
  width: 82%;
}

.image-small {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 48%;
  height: 300px;
  border: 10px solid var(--cream);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.schedule-board {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schedule-board article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  border-bottom: 1px solid #e9e3d7;
}

.schedule-board article:last-child {
  border-bottom: 0;
}

.schedule-board span,
.label {
  color: var(--sage);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .14em;
}

.schedule-board h3 {
  font-size: 1.45rem;
}

.schedule-board p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  color: var(--sage-dark);
}

.weather-card {
  margin-top: 26px;
  background: rgba(255,255,255,.76);
  border-radius: 26px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

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

.price-card,
.testimonial-grid article,
.qr-card,
.map-card,
.contact-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card {
  padding: 34px;
}

.price-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--sage-dark);
  margin: 5px 0 10px;
}

.price-card p:not(.label) {
  color: var(--muted);
}

.featured {
  border: 2px solid var(--gold);
  transform: translateY(-14px);
}

.gallery-header {
  max-width: 850px;
  margin-bottom: 40px;
}

.luxury-gallery {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.luxury-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.luxury-gallery img:first-child {
  grid-row: span 2;
}

.luxury-gallery img:nth-child(5) {
  grid-column: span 2;
}

.testimonial-grid article {
  padding: 30px;
}

.testimonial-grid p {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  line-height: 1.35;
}

.testimonial-grid strong {
  color: var(--muted);
}

.venmo-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: white;
  border-radius: 24px;
  padding: 20px 24px;
  margin-top: 26px;
  font-size: 1.18rem;
  box-shadow: 0 14px 38px rgba(24,39,31,.08);
}

.venmo-line span {
  color: var(--sage-dark);
  font-weight: 900;
}

.qr-card {
  text-align: center;
  padding: 30px;
}

.qr-placeholder {
  height: 340px;
  border: 2px dashed #b7c5b5;
  border-radius: 26px;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 8px;
  color: var(--muted);
}

.qr-placeholder span {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--sage-dark);
}

.map-card {
  overflow: hidden;
  height: 460px;
}

.map-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.local-tags span {
  background: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--sage-dark);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.instagram-grid div {
  min-height: 250px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.instagram-grid div:nth-child(1) { background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=700&q=85"); }
.instagram-grid div:nth-child(2) { background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=700&q=85"); }
.instagram-grid div:nth-child(3) { background-image: url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=700&q=85"); }
.instagram-grid div:nth-child(4) { background-image: url("https://images.unsplash.com/photo-1599901860904-17e6ed7083a0?auto=format&fit=crop&w=700&q=85"); }

.contact-section {
  background:
    linear-gradient(rgba(24,39,31,.74), rgba(24,39,31,.74)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1900&q=85") center/cover;
}

.contact-card {
  max-width: 920px;
  text-align: center;
  padding: clamp(36px, 6vw, 76px);
}

.contact-card p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  justify-content: center;
  margin-top: 28px;
}

.seo-copy {
  background: white;
  text-align: center;
}

.seo-copy .container {
  max-width: 900px;
}

.seo-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px 24px;
  background: var(--pine);
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .announcement {
    position: static;
  }

  .site-header {
    top: 0;
  }

  .nav {
    border-radius: 24px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    background: white;
    border-radius: 24px;
    padding: 24px;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 900px;
    padding-top: 140px;
  }

  .hero-reservation-card {
    left: 24px;
    right: 24px;
  }

  .trust-grid,
  .editorial-grid,
  .payment-grid,
  .location-grid,
  .pricing-grid,
  .testimonial-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .editorial-images {
    min-height: auto;
  }

  .image-large {
    width: 100%;
    height: 420px;
  }

  .image-small {
    position: relative;
    width: 72%;
    height: 240px;
    margin: -70px 0 0 auto;
  }

  .schedule-board article {
    align-items: flex-start;
    flex-direction: column;
  }

  .weather-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured {
    transform: none;
  }

  .luxury-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .luxury-gallery img:first-child,
  .luxury-gallery img:nth-child(5) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .section {
    padding: 84px 20px;
  }
}
