/* ============================================
   Tío Lolo's Mini Pancakes — Stylesheet
   ============================================ */

:root {
  --cream: #FBF4E4;
  --cream-deep: #F4E8CC;
  --coffee: #2A1810;
  --coffee-soft: #4A2F1F;
  --syrup: #8B4513;
  --honey: #E89A2C;
  --honey-bright: #F4B547;
  --strawberry: #C8413B;
  --strawberry-soft: #E5746F;
  --butter: #FDE8B0;
  --shadow: rgba(42, 24, 16, 0.12);

  --font-display: 'Caprasimo', Georgia, serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Global image baseline ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--coffee);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle paper-grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.09 0 0 0 0 0.06 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 2; }

/* ============ NAVIGATION ============ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4vw;
  position: sticky;
  top: 0;
  background: rgba(251, 244, 228, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(42, 24, 16, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  height: 58px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover .logo-mark { transform: scale(1.05); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--coffee);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

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

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

.nav-cta {
  background: var(--coffee);
  color: var(--cream) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--strawberry);
  transform: translateY(-1px);
}

.menu-toggle { display: none; }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--cream-deep);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  border: 2px solid var(--honey);
  box-shadow: 0 2px 8px var(--shadow);
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--coffee-soft);
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lang-btn.active {
  background: var(--coffee);
  color: var(--cream);
  box-shadow: 0 2px 6px var(--shadow);
}

.lang-btn:hover:not(.active) {
  color: var(--coffee);
  background: rgba(42, 24, 16, 0.08);
}

/* ============ HERO ============ */
.hero {
  padding: 4rem 4vw 6rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--strawberry);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--strawberry);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: var(--coffee);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--strawberry);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero h1 .underline-honey {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-honey::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.1em;
  height: 0.3em;
  background: var(--honey);
  z-index: -1;
  border-radius: 4px;
  transform: skewY(-1deg);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--coffee-soft);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.55;
}

.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--coffee);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--strawberry);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--coffee);
  border: 2px solid var(--coffee);
}
.btn-ghost:hover {
  background: var(--coffee);
  color: var(--cream);
}

.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  height: auto;
  max-width: 520px;
  filter: drop-shadow(0 20px 50px rgba(42, 24, 16, 0.18));
  animation: float 6s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.hero-badge {
  position: absolute;
  background: var(--honey);
  color: var(--coffee);
  padding: 1.1rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 8px 20px var(--shadow);
  transform: rotate(-12deg);
}
.hero-badge.b1 { top: 8%; right: -2%; }
.hero-badge.b2 {
  bottom: 12%; left: -4%;
  background: var(--strawberry);
  color: var(--cream);
  transform: rotate(8deg);
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 4vw;
  max-width: 1400px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--strawberry);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--coffee);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.section h2 em {
  color: var(--strawberry);
  font-style: italic;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--coffee-soft);
  line-height: 1.6;
}

/* ============ EVENTS GRID ============ */
.events {
  background: var(--cream-deep);
  padding: 6rem 4vw;
  position: relative;
}

.events-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.event-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(42, 24, 16, 0.06);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow);
}

.event-icon {
  width: 60px;
  height: 60px;
  background: var(--honey);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}

.event-card:nth-child(2) .event-icon { background: var(--strawberry); }
.event-card:nth-child(3) .event-icon { background: var(--coffee); }
.event-card:nth-child(4) .event-icon { background: var(--syrup); }

.event-card:hover .event-icon { transform: rotate(6deg); }

.event-icon svg { width: 32px; height: 32px; }
.event-icon.dark svg { stroke: var(--coffee); }

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--coffee);
  margin-bottom: 0.6rem;
}

.event-card p {
  color: var(--coffee-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--honey);
  line-height: 1;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px dashed var(--strawberry);
  border-radius: 50%;
  opacity: 0.3;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--coffee);
  margin-bottom: 0.7rem;
}

.step p {
  color: var(--coffee-soft);
  max-width: 280px;
  margin: 0 auto;
}

/* ============ VIDEO SECTION ============ */
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow);
  background: var(--coffee);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--coffee);
  color: var(--cream);
  padding: 6rem 4vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 25rem;
  color: var(--honey);
  opacity: 0.1;
  top: -4rem;
  left: 5%;
  line-height: 1;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--cream);
}

.testimonial blockquote em {
  color: var(--honey-bright);
  font-style: italic;
}

.testimonial-author {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-deep);
  opacity: 0.85;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  padding: 5rem 4vw;
  background: linear-gradient(135deg, var(--honey) 0%, var(--strawberry) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--coffee);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.cta-banner p {
  color: var(--coffee);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ FOOTER ============ */
footer {
  background: var(--coffee);
  color: var(--cream);
  padding: 4rem 4vw 2rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  color: var(--cream-deep);
  opacity: 0.75;
  max-width: 320px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--honey-bright);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--cream-deep);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  font-size: 0.95rem;
}
.footer-col a:hover { opacity: 1; color: var(--honey-bright); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 244, 228, 0.12);
  text-align: center;
  font-size: 0.88rem;
  color: var(--cream-deep);
  opacity: 0.6;
}

/* ============ GALLERY PAGE ============ */
.page-header {
  padding: 5rem 4vw 4rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
  color: var(--coffee);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.page-header h1 em {
  color: var(--strawberry);
  font-style: italic;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--coffee-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured hero shot */
.gallery-hero {
  max-width: 1400px;
  margin: 1rem auto 3rem;
  padding: 0 4vw;
  position: relative;
}

.gallery-hero-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px var(--shadow);
  aspect-ratio: 16 / 9;
}

.gallery-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-hero-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.gallery-hero-caption {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  background: rgba(42, 24, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  max-width: 80%;
}

.gallery-hero-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--honey-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

.gallery-grid {
  max-width: 1400px;
  margin: 2rem auto 4rem;
  padding: 0 4vw;
  columns: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Video embed wrapper — preserves vertical Shorts aspect */
.gallery-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--coffee);
}

.gallery-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.gallery-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-placeholder.tall { aspect-ratio: 3/4; }
.gallery-placeholder.square { aspect-ratio: 1/1; }
.gallery-placeholder.wide { aspect-ratio: 4/3; }

.gallery-placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.5;
}

.gallery-item:nth-child(3n+1) .gallery-placeholder { background: var(--butter); }
.gallery-item:nth-child(3n+2) .gallery-placeholder { background: var(--strawberry-soft); }
.gallery-item:nth-child(3n+3) .gallery-placeholder { background: var(--cream-deep); }

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(to top, rgba(42, 24, 16, 0.9) 0%, rgba(42, 24, 16, 0.4) 70%, transparent);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* Instagram callout */
.ig-callout {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 3rem 4vw;
  text-align: center;
  background: var(--cream-deep);
  border-radius: 28px;
  position: relative;
}

.ig-callout h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--coffee);
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.ig-callout h3 em {
  color: var(--strawberry);
  font-style: italic;
}

.ig-callout p {
  color: var(--coffee-soft);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--coffee);
  color: var(--cream);
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.ig-handle:hover {
  background: var(--strawberry);
  transform: translateY(-2px);
}

.ig-handle svg { width: 20px; height: 20px; }

/* ============ CONTACT PAGE ============ */
.contact-wrap {
  max-width: 1200px;
  margin: 2rem auto 6rem;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--cream-deep);
  padding: 3rem;
  border-radius: 28px;
  border: 1px solid rgba(42, 24, 16, 0.08);
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--coffee);
}

.contact-form > p {
  color: var(--coffee-soft);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.form-field {
  margin-bottom: 1.1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coffee);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(42, 24, 16, 0.15);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--coffee);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 4px rgba(232, 154, 44, 0.15);
}

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

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Contact sidebar */
.contact-info { padding-top: 1rem; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--coffee);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-info h2 em { color: var(--strawberry); font-style: italic; }

.contact-info > p {
  color: var(--coffee-soft);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.info-block {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.info-block-icon {
  width: 44px;
  height: 44px;
  background: var(--honey);
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-block:nth-child(2n) .info-block-icon { background: var(--strawberry); }

.info-block-icon svg { width: 22px; height: 22px; stroke: var(--coffee); }
.info-block:nth-child(2n) .info-block-icon svg { stroke: var(--cream); }

.info-block h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--coffee);
  margin-bottom: 0.2rem;
}

.info-block p, .info-block a {
  color: var(--coffee-soft);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.4;
}

.info-block a:hover { color: var(--strawberry); }

/* ============ CALENDAR ============ */
.find-us-section {
  background: var(--cream);
}

.calendar-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.cal-month-label {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--coffee);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 1.5rem;
}

.cal-head {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coffee-soft);
  padding: 0.5rem 0;
}

.cal-day {
  min-height: 100px;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  position: relative;
}

.cal-day.empty {
  background: transparent;
}

.cal-day.closed {
  background: rgba(42, 24, 16, 0.04);
  opacity: 0.45;
}

.cal-day.weekend-open {
  background: var(--cream-deep);
  border: 1px solid rgba(42, 24, 16, 0.08);
}

.cal-day.event {
  border: 2px solid transparent;
}

.cal-day.event.derby {
  background: var(--honey);
  border-color: var(--honey-bright);
}

.cal-day.event.safety {
  background: var(--strawberry-soft);
  border-color: var(--strawberry);
}

.cal-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.35rem;
  color: var(--coffee);
}

.cal-day.event.safety .cal-num,
.cal-day.event.safety .cal-event-info strong,
.cal-day.event.safety .cal-event-info span {
  color: var(--cream);
}

.cal-event-info {
  font-size: 0.72rem;
  line-height: 1.35;
}

.cal-event-info strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--coffee);
}

.cal-event-info span {
  color: var(--coffee-soft);
  opacity: 0.9;
}

.cal-legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--cream-deep);
  border-radius: 18px;
  padding: 1.5rem 2rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(42, 24, 16, 0.06);
}

.legend-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.legend-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid transparent;
}

.legend-dot.derby {
  background: var(--honey);
  border-color: var(--honey-bright);
}

.legend-dot.safety {
  background: var(--strawberry-soft);
  border-color: var(--strawberry);
}

.legend-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--coffee);
  margin-bottom: 0.2rem;
}

.legend-item span {
  font-size: 0.88rem;
  color: var(--coffee-soft);
  line-height: 1.4;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2rem;
  }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { columns: 2; }
  .gallery-hero-frame { aspect-ratio: 4 / 3; }
  .gallery-hero-caption { left: 1rem; bottom: 1rem; font-size: 1.1rem; padding: 0.8rem 1.2rem; }
}

@media (max-width: 900px) {
  .cal-day { min-height: 80px; padding: 0.5rem; }
  .cal-event-info { font-size: 0.65rem; }
  .cal-num { font-size: 1rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { padding: 1rem 5vw; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(42, 24, 16, 0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  .section { padding: 4rem 5vw; }
  .events { padding: 4rem 5vw; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 1; }
  .hero-badge.b1 { top: 4%; right: 0; }
  .hero-badge.b2 { bottom: 6%; left: 0; }
  .cal-day { min-height: 60px; padding: 0.4rem; }
  .cal-event-info { display: none; }
  .cal-num { font-size: 0.9rem; margin-bottom: 0; }
  .cal-head { font-size: 0.65rem; }
  .cal-legend { padding: 1.2rem; }
}

/* ============ PERMANENT LOCATION SECTION ============ */
.location-section { background: var(--cream-deep); }

.location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.location-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(42, 24, 16, 0.1);
}

.location-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--coffee);
  margin-bottom: 0.6rem;
}

.location-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coffee);
  margin-bottom: 0.4rem;
}

.location-detail {
  font-size: 0.9rem;
  color: var(--coffee-soft);
}

.location-hours-time {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--strawberry);
}

/* Spot open days on calendar */
.cal-day.spot-open {
  background: var(--butter);
  border: 1px solid var(--honey);
}
.cal-break {
  display: block;
  font-size: 0.6rem;
  opacity: 0.5;
  font-style: italic;
  letter-spacing: 0.02em;
}

.legend-dot.spot {
  background: var(--butter);
  border-color: var(--honey);
}

@media (max-width: 640px) {
  .location-cards { grid-template-columns: 1fr; }
}

/* ============ FULL-WIDTH SITE BANNER ============ */
.site-banner {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  max-height: 340px;
}

.site-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 640px) {
  .site-banner,
  .site-banner img { max-height: 180px; height: 180px; }
}

/* ============ HOME PAGE PHOTO STRIP ============ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 300px;
  overflow: hidden;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.08);
}

.photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(42,24,16,0.35));
  pointer-events: none;
}

@media (max-width: 900px) {
  .photo-strip { height: 220px; }
}

@media (max-width: 640px) {
  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 360px;
  }
}

/* ============ MENU IMAGE DISPLAY ============ */
.menu-image-section {
  padding: 2rem 4vw 4rem;
  background: var(--cream);
}

.menu-image-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}

.menu-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ MENU PAGE ============ */
.menu-sizes-section {
  background: var(--cream-deep);
  padding: 3rem 4vw 4rem;
}

.menu-sizes-inner {
  max-width: 900px;
  margin: 0 auto;
}

.size-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.size-card-featured {
  border-color: var(--honey) !important;
  background: var(--butter) !important;
}

.menu-items-section {
  padding: 5rem 4vw;
}

.menu-items-inner {
  max-width: 900px;
  margin: 0 auto;
}

.menu-section-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.menu-section-label span {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--strawberry);
  font-weight: 600;
  border-bottom: 2px solid var(--honey);
  padding-bottom: 0.4rem;
}

.create-your-own {
  margin-top: 3rem;
  background: var(--coffee);
  border-radius: 28px;
  padding: 3rem;
  color: var(--cream);
}

.create-your-own .section-eyebrow { color: var(--honey-bright); }

.create-your-own h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--cream);
}

.create-your-own h2 em { color: var(--honey-bright); font-style: italic; }

.create-your-own p {
  color: var(--cream-deep);
  opacity: 0.85;
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.6;
}

.create-your-own .menu-price-tag {
  background: rgba(251,244,228,0.12);
  border-color: var(--honey);
  color: var(--cream-deep);
}

.create-your-own .menu-price-tag strong { color: var(--honey-bright); }

@media (max-width: 640px) {
  .create-your-own { padding: 2rem 1.5rem; }
  .menu-image-wrap { border-radius: 16px; }
}

/* ============ MENU SECTION ============ */
.menu-section {
  padding: 6rem 4vw;
  background: var(--cream);
}

.menu-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto 4rem;
}

.size-card {
  background: var(--cream-deep);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 2px solid rgba(42, 24, 16, 0.08);
  transition: border-color 0.2s;
}

.size-card:hover { border-color: var(--honey); }

.size-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--coffee);
  margin-bottom: 0.3rem;
}

.size-card p {
  color: var(--coffee-soft);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.size-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--strawberry);
  display: block;
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.menu-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--cream-deep);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(42, 24, 16, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px var(--shadow);
}

.menu-card-img {
  width: 260px;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.menu-munch-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--honey);
  color: var(--coffee);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(42,24,16,0.18);
  white-space: nowrap;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body {
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--coffee);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.menu-card-body p {
  color: var(--coffee-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.3rem;
}

.menu-prices {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.menu-price-tag {
  background: var(--cream);
  border: 1.5px solid var(--honey);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  color: var(--coffee-soft);
  white-space: nowrap;
}

.menu-price-tag strong {
  color: var(--strawberry);
  font-size: 1rem;
  margin-left: 0.3rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .menu-sizes { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 640px) {
  .menu-card { grid-template-columns: 1fr; }
  .menu-card-img { width: 100%; height: 220px; }
  .menu-card-body { padding: 1.4rem; }
  .menu-card-body h3 { font-size: 1.3rem; }
}
