@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --brand: #b8432f;
  --brand-light: #d4654f;
  --cream: #faf6f0;
  --cream-dark: #f0ebe3;
  --olive: #4a5d3a;
  --olive-light: #6b7d5a;
  --text: #2d2622;
  --text-muted: #7a7068;
  --text-light: #9a9088;
  --bg: #faf6f0;
  --bg-alt: #f0ebe3;
  --bg-dark: #2d2622;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 1.15;
  font-weight: 600;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--brand-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.97);
  box-shadow: 0 1px 0 rgba(45, 38, 34, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.nav__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav__phone svg {
  width: 17px;
  height: 17px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 55%, rgba(184, 67, 47, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(74, 93, 58, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #1a1612 0%, #2d2622 40%, #1a1612 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--brand-light);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #b8afa6;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: var(--radius-sm);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
}

.btn--primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== SECTION BASE ========== */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--cream);
}

.section--dark .section__label {
  color: var(--brand-light);
}
.section--dark .section__heading {
  color: var(--cream);
}
.section--dark .section__intro {
  color: #b8afa6;
}

.section__label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.section__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section__intro {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

/* ========== ABOUT / STORY SPLIT ========== */
.story-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}

.story-split__text .section__label {
  margin-bottom: 0.5rem;
}

.story-split__text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.story-split__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.story-split__highlight {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-split__highlight p {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

.story-split__visual {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(45, 38, 34, 0.08);
}

.story-split__visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 70%, rgba(184, 67, 47, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--cream-dark) 0%, #e8e0d5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.story-split__visual-year {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  color: rgba(45, 38, 34, 0.06);
  line-height: 1;
}

.story-split__visual-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ========== MENU HIGHLIGHTS ========== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: #fff;
  border: 1px solid rgba(45, 38, 34, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 38, 34, 0.06);
}

.menu-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 67, 47, 0.08);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.menu-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.menu-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== REVIEWS ========== */
.reviews-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.review-card {
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid rgba(250, 246, 240, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-card__stars svg {
  width: 15px;
  height: 15px;
  fill: #d4a843;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.82rem;
  color: #b8afa6;
  font-style: normal;
}

/* ========== HOURS + LOCATION ========== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(45, 38, 34, 0.06);
}

.hours-table td {
  padding: 0.8rem 0;
  font-size: 0.93rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(45, 38, 34, 0.08);
  aspect-ratio: 1;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

.info-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.93rem;
  transition: color 0.3s;
}

.info-contact a:hover {
  color: var(--brand);
}

.info-contact svg {
  width: 17px;
  height: 17px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ========== CTA ========== */
.cta {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-dark);
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(184, 67, 47, 0.06) 0%, transparent 70%);
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta p {
  color: #b8afa6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta .phone-big {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--brand-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta .address {
  color: #8a8078;
  font-size: 0.88rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg);
  border-top: 1px solid rgba(45, 38, 34, 0.06);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer__address {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.footer__hours {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.footer__hours strong {
  color: var(--text);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 38, 34, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-light);
}

.footer__credit a {
  color: var(--text-light);
  transition: color 0.3s;
}

.footer__credit a:hover {
  color: var(--brand);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-split__visual {
    display: none;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-row {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
  }
}
