:root {
  --cream: #fff8ef;
  --sand: #f3e1c8;
  --terracotta: #b95a34;
  --espresso: #2f1f17;
  --leaf: #46613c;
  --gold: #cb9331;
  --ink-soft: #4e3d33;
  --surface: #fffdf9;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 16px 40px rgba(47, 31, 23, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(203, 147, 49, 0.22), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(185, 90, 52, 0.2), transparent 45%),
    var(--cream);
  color: var(--espresso);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
}

.bg-orb {
  position: fixed;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
  animation: drift 12s ease-in-out infinite alternate;
}

.bg-orb-left {
  left: -4rem;
  top: 18rem;
  background: rgba(70, 97, 60, 0.18);
}

.bg-orb-right {
  right: -5rem;
  top: 4rem;
  background: rgba(185, 90, 52, 0.2);
  animation-delay: 0.8s;
}

.site-header {
  width: min(1120px, 92vw);
  margin: 1rem auto 0;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(47, 31, 23, 0.09);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(47, 31, 23, 0.2);
  background: #fff;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--terracotta), var(--gold));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.brand-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: var(--terracotta);
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 8px 20px rgba(185, 90, 52, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  background: #a34b28;
}

.btn-header {
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1px solid rgba(185, 90, 52, 0.4);
  box-shadow: none;
}

.btn-outline:hover {
  color: #fff;
  background: var(--terracotta);
}

main {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 6.5rem 0 4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-content {
  max-width: 60ch;
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 31, 23, 0.11);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.hero-eyebrow {
  margin: 0;
  color: var(--leaf);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-badge {
  margin: 0.6rem 0 0;
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: rgba(70, 97, 60, 0.12);
  border: 1px solid rgba(70, 97, 60, 0.3);
  color: var(--leaf);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-founder {
  margin: 0.45rem 0 0.2rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  margin-top: 0.85rem;
  max-width: 16ch;
}

.hero-copy {
  font-size: 1.04rem;
  max-width: 58ch;
  color: var(--ink-soft);
  margin: 1.1rem 0 0;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
}

.hero-metrics article {
  background: var(--surface);
  border: 1px solid rgba(47, 31, 23, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow);
  animation: rise 700ms ease both;
}

.hero-metrics article:nth-child(2) {
  animation-delay: 120ms;
}

.hero-metrics article:nth-child(3) {
  animation-delay: 240ms;
}

.metric-value {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--terracotta);
}

.metric-label {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}

.section {
  margin-top: 4.5rem;
}

.section-intro {
  margin-bottom: 1rem;
}

.section-tag {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--leaf);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
}

.story {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(243, 225, 200, 0.65));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 31, 23, 0.08);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.story-copy p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
}

.story-image {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(47, 31, 23, 0.1);
}

.story-image img {
  width: 100%;
  display: block;
  max-height: 460px;
  object-fit: cover;
}

.gallery-lead {
  margin-top: 0;
  color: var(--ink-soft);
  max-width: 74ch;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  grid-column: span 4;
  margin: 0;
  background: var(--surface);
  border: 1px solid rgba(47, 31, 23, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 9px 22px rgba(47, 31, 23, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 270px;
  display: block;
  object-fit: cover;
}

.gallery-card-tall {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-card-tall img {
  height: 620px;
}

.gallery-card-wide {
  grid-column: span 8;
}

.gallery-card-wide img {
  height: 360px;
}

.gallery-card figcaption {
  padding: 0.9rem 0.95rem 1rem;
}

.gallery-card h3 {
  font-size: 1.16rem;
}

.gallery-card p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.menu-card {
  background: var(--surface);
  border: 1px solid rgba(47, 31, 23, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(47, 31, 23, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 90, 52, 0.32);
  box-shadow: 0 16px 30px rgba(47, 31, 23, 0.12);
}

.menu-card h3 {
  font-size: 1.2rem;
}

.menu-card p {
  margin: 0.55rem 0 0.75rem;
  color: var(--ink-soft);
}

.menu-card span {
  font-weight: 800;
  color: var(--terracotta);
}

.hours-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.hours-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(47, 31, 23, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.hours-card ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.hours-card li {
  padding: 0.48rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px dashed rgba(47, 31, 23, 0.2);
}

.hours-card li:last-child {
  border-bottom: 0;
}

.contact-card a {
  color: var(--terracotta);
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.site-footer {
  width: min(1120px, 92vw);
  margin: 4rem auto 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.reg-id {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -22px, 0) scale(1.08);
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem 1.1rem;
    padding-top: 0.4rem;
  }

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

  .story {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .gallery-card img,
  .gallery-card-wide img,
  .gallery-card-tall img {
    height: 260px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .brand-text {
    font-size: 0.96rem;
  }

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