/* ============================================================
   Kahwatea Coffee — Main Stylesheet
   https://kahwatea-coffee.be
   ============================================================ */

/* --- Google Fonts Import --- */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap");

/* --- 1. Custom Properties --- */
:root {
  --cream: #f8f3ea;
  --beige-light: #ede5d5;
  --beige-medium: #d6c9b5;
  --brown-dark: #2a1508;
  --brown-medium: #5c3317;
  --brown-accent: #8b5230;
  --brown-light: #c4a07a;
  --white: #ffffff;
  --text-dark: #2a1508;
  --text-medium: #5c3317;
  --text-light: #8b7355;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;

  --section-v: 5rem;
  --section-h: 1.5rem;
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --shadow-soft: 0 4px 24px rgba(42, 21, 8, 0.08);
  --shadow-md: 0 8px 40px rgba(42, 21, 8, 0.14);
  --transition: 0.3s ease;
}

/* --- 2. Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- 3. Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown-dark);
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
p {
  font-size: 1rem;
  color: var(--text-medium);
  max-width: 62ch;
}

/* --- 4. Layout Utilities --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-h);
}
.section {
  padding: var(--section-v) var(--section-h);
}
.section--cream {
  background-color: var(--cream);
}
.section--beige {
  background-color: var(--beige-light);
}
.section--dark {
  background-color: var(--brown-dark);
  color: var(--cream);
}
.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--cream);
}
.section--dark .eyebrow {
  color: var(--brown-light);
}

.text-center {
  text-align: center;
}
.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-accent);
  margin-bottom: 0.6rem;
}

.section-header {
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.8rem;
}
.section-header p {
  font-size: 1.05rem;
}

/* --- 5. Buttons / CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background-color: var(--brown-dark);
  color: var(--white);
}
.btn--primary:hover {
  background-color: var(--brown-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn--outline {
  border: 2px solid var(--brown-dark);
  color: var(--brown-dark);
}
.btn--outline:hover {
  background-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-light {
  border: 2px solid var(--cream);
  color: var(--cream);
}
.btn--outline-light:hover {
  background-color: var(--cream);
  color: var(--brown-dark);
}
.btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
}
.btn--instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- 6. Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--beige-medium);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-h);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brown-accent);
  transition: width var(--transition);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--brown-accent);
}
.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  background-color: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--cream);
  border-top: 1px solid var(--beige-medium);
  padding: 1.5rem var(--section-h) 2rem;
  gap: 1.2rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.25rem 0;
}

/* --- 7. Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--brown-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem var(--section-h) 4rem;
  width: 100%;
}
.hero-content .eyebrow {
  color: var(--brown-light);
}
.hero-content h1 {
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.hero-content .hero-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 48ch;
  margin-bottom: 2rem;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 50ch;
}

/* Hero (smaller, for inner pages) */
.hero--sm {
  min-height: 40vh;
  align-items: flex-end;
}
.hero--sm .hero-content {
  padding-bottom: 3rem;
}
.hero--sm h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* --- 8. Image Shapes --- */

/* Arch shape */
.img-arch {
  border-radius: var(--radius-pill) var(--radius-pill) var(--radius-lg)
    var(--radius-lg);
  overflow: hidden;
}
.img-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rounded block */
.img-rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Circle */
.img-circle {
  border-radius: 50%;
  overflow: hidden;
}
.img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- 9. Story Section --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.story-text .eyebrow {
  margin-bottom: 0.8rem;
}
.story-text h2 {
  margin-bottom: 1.5rem;
}
.story-text p {
  margin-bottom: 1.2rem;
}
.story-text p:last-of-type {
  margin-bottom: 0;
}
.story-photo {
  position: relative;
}
.story-photo .img-arch {
  height: 520px;
}
.story-photo-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--brown-dark);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.story-photo-badge .badge-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--brown-light);
  margin-bottom: 0.2rem;
}
.story-photo-badge .badge-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}

/* --- 10. Feature Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card-image {
  height: 260px;
  overflow: hidden;
}
.feature-card-image.arch-top {
  border-radius: 0 0 0 0;
}
.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card:hover .feature-card-image img {
  transform: scale(1.05);
}
.feature-card-body {
  padding: 1.5rem;
}
.feature-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.feature-card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: none;
}
.feature-card-body .card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-accent);
  margin-bottom: 0.5rem;
}

/* Arch top for feature card */
.feature-card .img-arch {
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  height: 280px;
}

/* --- 11. Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto 2.5rem;
}
.review-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  /* Replace content in these cards with real reviews from Google */
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #d4a017;
  font-size: 1rem;
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
  font-style: italic;
  max-width: none;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--beige-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-medium);
  font-weight: 500;
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}
.review-author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.reviews-cta {
  text-align: center;
}

/* --- 12. Location Section --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.location-text h2 {
  margin-bottom: 1.2rem;
}
.location-text p {
  margin-bottom: 1rem;
}
.location-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.location-info-item .icon {
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brown-accent);
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- 13. Final CTA Band --- */
.cta-band {
  background-color: var(--brown-dark);
  padding: 5rem var(--section-h);
  text-align: center;
}
.cta-band h2 {
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-style: italic;
}
.cta-band p {
  color: rgba(248, 243, 234, 0.75);
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.cta-band .cta-group {
  justify-content: center;
}

/* --- 14. Footer --- */
.site-footer {
  background-color: var(--cream);
  border-top: 1px solid var(--beige-medium);
  padding: 4rem var(--section-h) 2rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 170px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  max-width: 28ch;
  margin-bottom: 1.2rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-medium);
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--brown-dark);
}
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-medium);
  gap: 1rem;
}
.footer-hours-row .day {
  font-weight: 700;
  color: var(--text-dark);
}
.footer-hours-row .time {
  color: var(--text-medium);
}
.footer-hours-row.closed .time {
  color: var(--brown-light);
  font-style: italic;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--brown-dark);
}
.social-link:hover {
  background-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--beige-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: none;
}
.footer-bottom a {
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--brown-dark);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* --- 15. Menu Page --- */
.menu-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.menu-category {
  /* one category block */
}
.menu-category h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-accent);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--beige-medium);
  font-family: var(--font-body);
}
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.menu-item-name {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 400;
}
.menu-item-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  display: block;
  margin-top: 1px;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown-medium);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-price--na {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-light);
}
.menu-divider {
  flex: 1;
  border: none;
  border-bottom: 1px dotted var(--beige-medium);
  margin-bottom: 3px;
}

/* Menu sections full width */
.menu-section-full {
  max-width: var(--container);
  margin: 0 auto 4rem;
}
.menu-section-full h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.menu-section-full .section-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Brunch cards */
.brunch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.brunch-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--brown-accent);
}
.brunch-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1rem;
  color: var(--brown-dark);
}
.brunch-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.brunch-includes li {
  font-size: 0.88rem;
  color: var(--text-medium);
  padding-left: 1rem;
  position: relative;
}
.brunch-includes li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--brown-accent);
}
.brunch-price {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brown-medium);
  font-style: italic;
}

/* Extras box */
.extras-box {
  background-color: var(--beige-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  max-width: 420px;
}
.extras-box h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.8rem;
}

/* Lunch grid */
.lunch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.lunch-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.lunch-item-info {
}
.lunch-item-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.lunch-item-info span {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}
.lunch-item-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brown-medium);
  white-space: nowrap;
  flex-shrink: 0;
  font-style: italic;
}

/* Extra tags (sirops, boissons veg) */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tag {
  display: inline-block;
  background-color: var(--beige-light);
  color: var(--text-medium);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 400;
}

/* --- 16. Hours Page --- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}
.hours-table {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--beige-light);
  transition: background-color var(--transition);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row:hover {
  background-color: var(--cream);
}
.hours-row.today {
  background-color: var(--beige-light);
}
.hours-day {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.hours-time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-medium);
}
.hours-time.closed {
  color: var(--brown-light);
  font-style: italic;
  font-size: 0.9rem;
}
.hours-event-section {
}
.hours-event-section h3 {
  margin-bottom: 1rem;
}
.hours-event-section p {
  margin-bottom: 1.5rem;
}
.event-highlight {
  background-color: var(--beige-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--brown-accent);
}
.event-highlight p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
  max-width: none;
}

/* --- 17. Legal Pages --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  margin-bottom: 1rem;
  max-width: none;
}

/* --- 18. Page hero inner (for inner pages) --- */
.page-hero {
  background-color: var(--brown-dark);
  position: relative;
  min-height: 36vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--section-h) 3rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 {
  color: var(--white);
  font-style: italic;
}
.page-hero-content p {
  color: rgba(248, 243, 234, 0.8);
  max-width: 52ch;
  margin-top: 0.75rem;
}

/* --- 19. Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* --- 20. Responsive --- */
@media (max-width: 1024px) {
  :root {
    --section-h: 1.5rem;
  }
  .story-grid {
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 3.5rem;
  }

  /* Header */
  .header-nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content .hero-tagline {
    font-size: 1rem;
  }

  /* Story */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-photo .img-arch {
    height: 340px;
  }
  .story-photo-badge {
    bottom: 1rem;
    left: 1rem;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .location-map {
    height: 280px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Brunch */
  .brunch-grid {
    grid-template-columns: 1fr;
  }

  /* Lunch */
  .lunch-grid {
    grid-template-columns: 1fr;
  }

  /* Hours */
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* CTA group */
  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-content .cta-group {
    align-items: flex-start;
  }
  .cta-band .cta-group {
    align-items: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.8rem;
  }
  .header-inner {
    height: 64px;
  }
  .header-logo img {
    height: 40px;
  }
}
