:root {
  --wine: #7f1d16;
  --wine-dark: #4f140f;
  --copper: #b96d3d;
  --cream: #fff7e9;
  --paper: #ffffff;
  --ink: #1f2420;
  --olive: #496b45;
  --stone: #efe5d4;
  --sky: #dbeef4;
  --shadow: 0 24px 70px rgba(77, 32, 17, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(219, 238, 244, .55) 0, rgba(255, 247, 233, .94) 360px, #fff 100%);
  font-family: Inter, Montserrat, Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 247, 233, .9);
  border-bottom: 1px solid rgba(127, 29, 22, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 800;
}

.brand img {
  width: 78px;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 900;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--olive);
  transition: width .2s ease;
}

.nav a:hover::after { width: 100%; }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 14px 28px rgba(127, 29, 22, .24);
}

.button.secondary {
  color: var(--wine);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(127, 29, 22, .18);
}

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

.menu-toggle,
.mobile-nav { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 82px) 0 48px;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  color: var(--wine);
  font-family: Georgia, serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--wine);
  font-size: 23px;
  line-height: 1.15;
}

.lead {
  max-width: 630px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  overflow-wrap: break-word;
}

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

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 590px;
  margin: 0;
}

.quick-facts div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(127, 29, 22, .13);
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--olive);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--wine);
  font-size: 18px;
  font-weight: 950;
}

.hero-visual {
  margin: 0;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--wine);
}

.booking-strip a {
  display: grid;
  gap: 8px;
  padding: 25px clamp(18px, 4vw, 44px);
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, 0));
}

.booking-strip strong {
  color: #f4caa4;
  font-size: 13px;
  text-transform: uppercase;
}

.booking-strip span {
  font-size: 20px;
  font-weight: 900;
}

.section,
.rooms,
.food,
.location,
.contact {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

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

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

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

.promise-grid article,
.room-card,
.location-grid article {
  min-height: 255px;
  padding: 26px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(127, 29, 22, .12);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(77, 32, 17, .08);
}

.promise-grid p,
.room-card p,
.food-copy p,
.food-list span,
.location-grid p,
.contact-copy p {
  font-size: 16px;
  line-height: 1.64;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--wine);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 900;
}

.rooms {
  background: var(--stone);
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.room-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.room-card {
  min-height: 300px;
  background:
    linear-gradient(145deg, rgba(127, 29, 22, .08), rgba(73, 107, 69, .08)),
    #fff;
}

.food {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.food-list {
  display: grid;
  gap: 1px;
  background: rgba(127, 29, 22, .14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.food-list p {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  margin: 0;
  padding: 24px;
  background: #fff;
}

.food-list strong {
  color: var(--wine);
  font-size: 20px;
}

.location {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-band {
  padding: clamp(46px, 7vw, 82px) 18px;
  color: #fff;
  background:
    linear-gradient(rgba(79, 20, 15, .82), rgba(79, 20, 15, .82)),
    linear-gradient(135deg, var(--wine), var(--olive));
  text-align: center;
}

.quote-band p {
  max-width: 900px;
  margin: 0 auto;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
}

.contact-panel {
  display: grid;
  gap: 1px;
  background: rgba(127, 29, 22, .14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-panel a,
.contact-panel p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 22px;
  background: #fff;
}

.contact-panel span {
  color: var(--olive);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-panel strong {
  color: var(--wine);
  font-size: 20px;
}

.book-link {
  color: #fff;
  background: var(--wine) !important;
}

.book-link span,
.book-link strong {
  color: #fff;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--wine-dark);
}

.footer p { margin: 0; }

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta { display: none; }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    background: var(--wine);
    border: 0;
    border-radius: 8px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .mobile-nav.open {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 25;
    display: grid;
    gap: 1px;
    background: rgba(127, 29, 22, .14);
    border-bottom: 1px solid rgba(127, 29, 22, .14);
  }

  .mobile-nav a {
    padding: 18px;
    background: var(--cream);
    font-weight: 900;
  }

  .hero,
  .food,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .promise-grid,
  .room-layout,
  .booking-strip {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 20px;
  }

  .brand img {
    width: 64px;
  }

  .hero,
  .section,
  .food,
  .location,
  .contact {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .hero-copy,
  .eyebrow {
    width: 100%;
    max-width: 100%;
  }

  .lead {
    width: 100%;
    max-width: 330px;
    font-size: 16px;
  }

  h1 {
    font-size: 42px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .quick-facts,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .food-list p {
    grid-template-columns: 1fr;
  }
}
