:root {
  --ink: #18140f;
  --muted: #6d6256;
  --cream: #f7f0e5;
  --paper: #fffaf1;
  --gold: #caa263;
  --green: #415c3d;
  --black: #080706;
  --line: rgba(24, 20, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.86);
  border-bottom: 1px solid rgba(24, 20, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 32px);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  background: var(--cream);
}

.hero-media {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0)),
    url("assets/real/hive-interior-creative-01.jpg") center / cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(24px, 5vw, 76px) 62px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  max-width: 740px;
  font-size: clamp(54px, 6.8vw, 104px);
}

h2 {
  font-size: clamp(38px, 5vw, 74px);
}

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

.lead,
.section-heading p,
.intro-copy p,
.review-summary p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.lead {
  max-width: 580px;
  margin: 28px 0 0;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  background: transparent;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip div {
  min-height: 128px;
  padding: 30px clamp(18px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background: var(--paper);
}

.intro-copy {
  align-self: center;
}

.intro-copy p {
  max-width: 720px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.mini-grid span {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 850;
}

.intro-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.intro-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.intro-card figcaption {
  padding: 18px 20px;
  color: var(--muted);
  font-weight: 750;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  min-height: 620px;
  background: var(--black);
  color: #fff;
}

.feature-photo {
  min-height: 620px;
  background: url("assets/real/hive-church-street-front.png") center / cover;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px);
}

.feature-panel .eyebrow {
  color: var(--gold);
}

.feature-panel h2 {
  color: #fff;
  font-size: clamp(36px, 4.5vw, 64px);
}

dl {
  display: grid;
  gap: 24px;
  margin: 34px 0 0;
}

dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.feature-panel .button {
  align-self: flex-start;
  margin-top: 36px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.menu-section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background: var(--cream);
}

.section-heading {
  max-width: 980px;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.menu-board article {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
}

.menu-board h3 {
  color: var(--green);
}

.menu-board p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(24, 20, 15, 0.12);
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.menu-board p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-board strong {
  color: var(--ink);
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--black);
}

.gallery-band img {
  height: clamp(240px, 32vw, 460px);
  object-fit: cover;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background: #fff;
}

.review-cards {
  display: grid;
  gap: 16px;
}

.review-cards article {
  padding: 28px;
  border-left: 6px solid var(--gold);
  background: var(--paper);
}

.review-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.review-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 58px 20px;
  background: var(--black);
  color: #fff;
  text-align: center;
}

.footer-brand {
  color: #fff;
}

.footer-brand h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.footer p {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.footer-links a {
  min-width: 92px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.footer small {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero,
  .intro-section,
  .split-feature,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 58svh;
  }

  .hero-copy {
    padding-top: 56px;
  }

  .proof-strip,
  .menu-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-photo {
    min-height: 420px;
  }

  .gallery-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand span:last-child,
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 46svh;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .proof-strip,
  .menu-board,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .menu-board p {
    grid-template-columns: 1fr;
  }
}
