/*
 * styles.css — Heavenly Eats & Sweets
 * Built from design-direction.md art direction
 */

/* ============================================================
   Google Fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700&family=Fredoka:wght@300;400;500;600;700&display=swap');

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #E8852A;
  --color-primary-dark: #C46E1C;
  --color-primary-light: #FBE4C8;
  --color-secondary: #4AADD6;
  --color-secondary-wash: rgba(74, 173, 214, 0.08);
  --color-accent: #C74B6F;
  --color-bg: #FDFAF7;
  --color-surface: #F3ECE2;
  --color-text: #1C2D42;
  --color-text-secondary: #5C6E82;
  --color-text-on-primary: #FFFFFF;
  --color-border: #D4CBC0;
  --font-primary: 'Fredoka', sans-serif;
  --font-secondary: 'Albert Sans', sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;
  --max-width: 1200px;
  --content-width: 680px;
  --nav-height: 72px;
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  padding-bottom: 42px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   Typography
   ============================================================ */
.display-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h2 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-text);
}

h4 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--color-text);
}

.lead {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
}

.body-text {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
}

.small-text {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.caption-text {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section-padding {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
}

/* ============================================================
   Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  height: var(--nav-height);
  overflow: visible;
}

.site-header.transparent {
  background-color: transparent;
}

.site-header.scrolled {
  background-color: var(--color-bg);
  box-shadow: 0 1px 0 var(--color-border);
  border-top: 3px solid var(--color-secondary);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.nav-logo {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  height: 114px;
  background: var(--color-bg);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  border: 3px solid var(--color-border);
}

.nav-logo img {
  width: 120px;
  height: auto;
  max-width: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-links a {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.site-header.transparent .nav-links a {
  color: var(--color-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-primary);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav-hamburger .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg);
  z-index: 105;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 32px;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--color-primary);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  line-height: 1;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text-on-primary);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: #b3415f;
  color: var(--color-text-on-primary);
  box-shadow: 0 8px 24px rgba(199, 75, 111, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
  box-shadow: 0 8px 24px rgba(232, 133, 42, 0.2);
}

.text-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* ============================================================
   Hero — Index
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  margin-top: 0;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 64px);
  padding-left: clamp(24px, 5vw, 64px);
  background-color: rgba(253, 250, 247, 0.95);
}

.hero-content .display-heading {
  margin-bottom: 16px;
}

.hero-content .hero-tagline {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  max-width: 380px;
}

/* SPECIALS SLOT: Remove display:none and populate .hero-specials with content when specials are active */
.hero-specials {
  display: none;
}

/* ============================================================
   Section: The Mashup
   ============================================================ */
.mashup-section {
  background-color: var(--color-surface);
}

.mashup-grid {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.mashup-item {
  flex: 1;
  min-width: 0;
  position: relative;
}

.mashup-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mashup-item:hover img {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 45, 66, 0.15);
}

.mashup-divider {
  width: 2px;
  align-self: stretch;
  background-color: var(--color-primary);
  margin: 24px 32px;
  flex-shrink: 0;
}

.mashup-text {
  text-align: center;
  margin-top: 48px;
}

.mashup-text h2 {
  margin-bottom: 12px;
}

.mashup-text p {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   Section: Donut Tease
   ============================================================ */
.donut-tease-section {
  background-color: var(--color-bg);
}

.donut-tease-heading {
  margin-bottom: 32px;
}

.donut-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.donut-scroll::-webkit-scrollbar {
  height: 4px;
}

.donut-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.donut-scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: 2px;
}

.donut-scroll-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.donut-scroll-card:hover {
  transform: scale(1.05);
}

.donut-scroll-card img {
  width: 280px;
  height: 280px;
  object-fit: cover;
}

.donut-tease-cta {
  margin-top: 32px;
}

/* ============================================================
   Section: Inside Our Shop
   ============================================================ */
.inside-shop-section {
  position: relative;
  width: 100%;
}

.inside-shop-image {
  width: 100%;
}

.inside-shop-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.inside-shop-overlay {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 5vw, 64px);
  width: 40%;
  max-width: 480px;
  background-color: rgba(253, 250, 247, 0.92);
  padding: 32px;
  border-bottom: 3px solid var(--color-primary);
}

.inside-shop-overlay h2 {
  margin-bottom: 12px;
}

.inside-shop-overlay p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
}

/* ============================================================
   Section: Morgan's Story Tease
   ============================================================ */
.morgan-tease-section {
  background-color: var(--color-primary-light);
}

.morgan-tease-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.morgan-tease-content {
  flex: 0 0 55%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
  padding-left: clamp(20px, 5vw, 64px);
}

.morgan-tease-content h2 {
  margin-bottom: 16px;
}

.morgan-tease-content .lead {
  margin-bottom: 24px;
  max-width: 500px;
}

.morgan-tease-image {
  flex: 0 0 45%;
  min-width: 0;
  overflow: hidden;
}

.morgan-tease-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 20%;
}

/* ============================================================
   Section: Visit CTA
   ============================================================ */
.visit-cta-section {
  background-color: var(--color-bg);
  text-align: center;
}

.visit-cta-section h2 {
  margin-bottom: 24px;
}

.visit-info {
  margin-bottom: 12px;
}

.visit-info .address {
  font-size: 18px;
  margin-bottom: 8px;
}

.visit-info .hours {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
}

.visit-info .phone-link {
  font-size: 18px;
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.visit-info .phone-link:hover {
  color: var(--color-primary);
}

.visit-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.visit-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}

.visit-divider-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background-color: var(--color-primary);
}

.visit-divider .logo-mini {
  height: 64px;
  width: auto;
  margin: 0 16px;
}

/* ============================================================
   Page Hero — Short (donuts, menu, about)
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  margin-top: var(--nav-height);
}

.page-hero-50 {
  height: 50vh;
  min-height: 360px;
  max-height: 560px;
}

.page-hero-40 {
  height: 40vh;
  min-height: 300px;
  max-height: 480px;
}

.page-hero-60 {
  height: 60vh;
  min-height: 400px;
  max-height: 640px;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(253, 250, 247, 0.15);
}

.page-hero .hero-overlay-panel {
  position: absolute;
  z-index: 2;
  background-color: rgba(253, 250, 247, 0.94);
  padding: 32px 40px;
}

.page-hero .hero-overlay-panel.centered {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 600px;
  width: 90%;
}

.page-hero .hero-overlay-panel.left {
  top: 50%;
  left: clamp(20px, 5vw, 64px);
  transform: translateY(-50%);
  max-width: 500px;
}

/* ============================================================
   About Hero — Asymmetric with Morgan photo
   ============================================================ */
.about-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 640px;
  margin-top: var(--nav-height);
  display: flex;
}

.about-hero-content {
  flex: 0 0 50%;
  min-width: 0;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(24px, 4vw, 64px);
  border-top: 4px solid var(--color-primary);
}

.about-hero-content h1 {
  margin-bottom: 16px;
}

.about-hero-content .lead {
  max-width: 440px;
  color: var(--color-text);
}

.about-hero-image {
  flex: 0 0 50%;
  min-width: 0;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ============================================================
   Section: The Story (About)
   ============================================================ */
.story-section {
  background-color: var(--color-primary-light);
}

.story-content {
  max-width: var(--content-width);
  margin: 0 auto;
}

.story-content p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 1.5em;
}

.story-content .pull-quote {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-text);
  border-left: 4px solid var(--color-primary);
  padding-left: 24px;
  margin: 2em 0;
}

.story-image {
  margin: 2em auto;
  max-width: 560px;
}

.story-image img {
  width: 100%;
  border-radius: 8px;
}

/* ============================================================
   Section: The Space (About)
   ============================================================ */
.space-section {
  background-color: var(--color-bg);
}

.space-image {
  width: 100%;
}

.space-image img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center 20%;
}

.space-text {
  max-width: 600px;
  margin: 48px auto 0;
  text-align: center;
}

.space-text h2 {
  margin-bottom: 16px;
}

/* ============================================================
   Donut Gallery Grid
   ============================================================ */
.donut-gallery-section {
  background-color: var(--color-bg);
}

.donut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.donut-grid figure {
  margin: 0;
  transition: transform 0.25s ease;
}

.donut-grid figure:hover {
  transform: scale(1.04);
}

.donut-grid .donut-img-wrapper {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.donut-grid .donut-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donut-grid figcaption {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 12px 0 4px;
  color: var(--color-text);
}

/* ============================================================
   Custom Donuts CTA
   ============================================================ */
.custom-donuts-section {
  background-color: var(--color-surface);
  text-align: center;
}

.custom-donuts-inner {
  max-width: 600px;
  margin: 0 auto;
}

.custom-donuts-inner .custom-img {
  width: 320px;
  max-width: 100%;
  margin: 0 auto 32px;
  border-radius: 12px;
}

.custom-donuts-inner h2 {
  margin-bottom: 16px;
}

.custom-donuts-inner p {
  margin-bottom: 24px;
  color: var(--color-text-secondary);
}

/* ============================================================
   Menu Page Sections
   ============================================================ */
.menu-section {
  max-width: 720px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category-header {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 133, 42, 0.4);
}

.menu-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
}

.menu-item-name {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  flex: 1;
  min-width: 0;
  padding-right: 16px;
}

.menu-item-price {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text-secondary);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-item-desc {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 4px;
  padding-right: 60px;
}

.menu-item-mods {
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: 4px;
}

/* Coffee Bar Section */
.coffee-bar-section {
  background-color: var(--color-secondary-wash);
}

.coffee-bar-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
}

.coffee-bar-content {
  flex: 0 0 55%;
  min-width: 0;
}

.coffee-bar-image {
  flex: 0 0 45%;
  min-width: 0;
}

.coffee-bar-image img {
  width: 100%;
  border-radius: 12px;
}

.combo-callout {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-text);
  border-left: 4px solid var(--color-primary);
  padding-left: 16px;
  margin: 24px 0;
}

.combo-callout-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-top: 8px;
  font-family: var(--font-secondary);
  font-weight: 400;
}

.drink-list {
  margin-bottom: 24px;
}

.drink-item {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.drink-item i {
  color: var(--color-primary);
  font-size: 18px;
}

/* Menu break image */
.menu-break-image {
  margin: 32px auto;
  max-width: 480px;
}

.menu-break-image img {
  width: 100%;
  border-radius: 12px;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-col {
  flex: 0 0 55%;
  min-width: 0;
}

.contact-image-col {
  flex: 0 0 45%;
  min-width: 0;
}

.contact-image-col img {
  width: 100%;
  border-radius: 12px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-detail i {
  color: var(--color-primary);
  font-size: 22px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form-section {
  background-color: var(--color-surface);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(74, 173, 214, 0.15);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Map Section */
.map-section {
  background-color: var(--color-surface);
}

.map-wrapper {
  width: 100%;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-note {
  max-width: 600px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-text);
  color: rgba(253, 250, 247, 0.7);
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-bg);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(253, 250, 247, 0.7);
  line-height: 1.7;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-nav a {
  display: block;
  padding: 4px 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 250, 247, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(253, 250, 247, 0.7);
}

/* ============================================================
   404 Page
   ============================================================ */
.four-oh-four {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  margin-top: var(--nav-height);
  background-color: #fbf02f;
}

.four-oh-four-img {
  max-width: 560px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.four-oh-four h1 {
  margin-bottom: 16px;
}

.four-oh-four p {
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 420px;
}

/* ============================================================
   Responsive — Tablet (768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-logo {
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    align-self: center;
    margin-top: 0;
  }

  .nav-logo img {
    height: 56px;
  }

  .nav-hamburger {
    display: block;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .hero-image-wrapper {
    position: relative;
    height: 65vw;
    min-height: 280px;
  }

  .hero-content {
    position: relative;
    width: 100%;
    padding: 32px clamp(20px, 5vw, 48px);
    background-color: var(--color-bg);
  }

  .display-heading {
    font-size: 42px;
    letter-spacing: -0.01em;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  .lead {
    font-size: 18px;
  }

  /* Mashup */
  .mashup-grid {
    flex-direction: column;
    gap: 0;
  }

  .mashup-divider {
    width: 60%;
    height: 2px;
    margin: 24px auto;
  }

  /* Donut Tease → 2-column grid on mobile */
  .donut-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    overflow-x: visible;
  }

  .donut-scroll-card {
    flex: auto;
  }

  .donut-scroll-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .donut-scroll-card:nth-child(5) {
    display: none;
  }

  /* Inside Our Shop */
  .inside-shop-image img {
    aspect-ratio: 4 / 3;
  }

  .inside-shop-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    background-color: var(--color-bg);
    padding: 24px clamp(20px, 5vw, 48px);
  }

  /* Morgan Tease */
  .morgan-tease-grid {
    flex-direction: column-reverse;
  }

  .morgan-tease-content {
    flex: auto;
    padding: 32px clamp(20px, 5vw, 48px);
  }

  .morgan-tease-image {
    flex: auto;
    aspect-ratio: 4 / 3;
    max-height: 50vw;
  }

  .morgan-tease-image img {
    min-height: auto;
  }

  /* About Hero */
  .about-hero {
    flex-direction: column-reverse;
    height: auto;
    max-height: none;
  }

  .about-hero-content {
    flex: auto;
    padding: 32px clamp(20px, 5vw, 48px);
  }

  .about-hero-image {
    flex: auto;
    height: 50vw;
    min-height: 240px;
  }

  /* Coffee Bar */
  .coffee-bar-grid {
    flex-direction: column;
  }

  .coffee-bar-content,
  .coffee-bar-image {
    flex: auto;
  }

  /* Contact */
  .contact-grid {
    flex-direction: column;
  }

  .contact-info-col,
  .contact-image-col {
    flex: auto;
  }

  /* Page Hero */
  .page-hero-50,
  .page-hero-40 {
    height: 40vh;
    min-height: 260px;
  }

  .page-hero .hero-overlay-panel.left {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: none;
    width: 100%;
  }

  .page-hero .hero-overlay-panel.centered {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: none;
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  /* Gallery grid */
  .donut-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  /* Menu */
  .menu-category-header {
    font-size: 22px;
  }

  /* Map */
  .map-wrapper iframe {
    height: 300px;
  }
}

/* ============================================================
   Responsive — Mobile (480px)
   ============================================================ */
@media (max-width: 480px) {
  .donut-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

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

  .custom-donuts-inner .custom-img {
    width: 100%;
  }

  .visit-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .visit-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .four-oh-four-img {
    max-width: 100%;
  }
}

/* ============================================================
   Menu section backgrounds
   ============================================================ */
.menu-breakfast-section {
  background-color: var(--color-bg);
}

.menu-lunch-section {
  background-color: var(--color-surface);
}

/* ============================================================
   Utility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
