/* ===========================
   HORIZON ESPRESSO — style.css
   Aesthetic: Coastal Minimalism
   Tone: Refined, Warm, Serene
   =========================== */

/* === TOKENS === */
:root {
  --sand:       #fff8f0;
  --sand-dark:  #f0e4d4;
  --driftwood:  #e8a262;
  --espresso:   #2e1f13;
  --espresso-mid: #5a3e2b;
  --gulf:       #1a7fa8;
  --gulf-light: #a8d8ee;
  --foam:       #fffcf8;
  --sunrise-gold: #f5a623;
  --sunrise-pink: #f7936f;
  --ink:        #1a110a;
  --mist:       rgba(255,255,255,0.65);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:  4px;
  --radius-lg: 12px;
  --shadow:  0 2px 20px rgba(61,43,31,0.08);
  --shadow-lg: 0 8px 48px rgba(61,43,31,0.12);

  --nav-h: 64px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--foam);
  color: var(--espresso);
  font-size: 17.5px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 100px 0; }

/* === TYPOGRAPHY UTILS === */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sunrise-gold);
  margin-bottom: 0.75rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--espresso);
}
h2 em { font-style: italic; color: var(--sunrise-pink); }
h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
p { color: var(--espresso-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sunrise-gold), var(--sunrise-pink));
  color: var(--espresso);
  font-weight: 600;
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(245,166,35,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--foam);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-full { width: 100%; justify-content: center; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(245,239,230,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand-dark);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--foam);
  transition: color 0.35s;
}
.nav.scrolled .nav-logo { color: var(--espresso); }
.nav-logo span { margin-left: 0.15em; font-weight: 300; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--espresso-mid); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sunrise-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--foam);
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--espresso); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(165deg, #f5a623 0%, #f7936f 25%, #e8714a 50%, #1a7fa8 80%, #0e5a7a 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
}

/* Animated waves */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  border-radius: 50%;
}
.wave-1 {
  height: 180px;
  background: rgba(255,255,255,0.12);
  animation: waveScroll 9s linear infinite;
  bottom: -40px;
}
.wave-2 {
  height: 140px;
  background: rgba(255,255,255,0.08);
  animation: waveScroll 13s linear infinite reverse;
  bottom: -20px;
}
.wave-3 {
  height: 100px;
  background: rgba(255,252,248,0.1);
  animation: waveScroll 7s linear infinite;
  bottom: 0;
}
@keyframes waveScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  padding-top: var(--nav-h);
  animation: heroFadeUp 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 1.1s 0.15s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 400;
  line-height: 1;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 1.1s 0.25s cubic-bezier(0.22,1,0.36,1) both;
  text-shadow: 0 2px 32px rgba(0,0,0,0.18);
}
.hero-title em {
  font-style: italic;
  color: #fff3cc;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  animation: heroFadeUp 1.1s 0.35s cubic-bezier(0.22,1,0.36,1) both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1.1s 0.45s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,239,230,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeUp 1.5s 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,239,230,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* === ABOUT === */
.about { background: var(--foam); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 2rem;
}
.about-perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--espresso-mid);
}
.perk-icon { font-size: 1rem; }
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-card {
  background: linear-gradient(145deg, #f5a623, #f7936f 60%, #e8714a);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
  max-width: 340px;
  box-shadow: 0 12px 48px rgba(245,166,35,0.35);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E") center/cover;
  opacity: 0.04;
  pointer-events: none;
}
.about-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-top: 1.5rem;
}
.float-tag {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gulf);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,127,168,0.3);
}
.tag-line { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.tag-score { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: #fff; line-height: 1; }
.tag-sub { font-size: 0.65rem; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* Cup Illustration */
.cup-illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0.5rem;
}
.cup-body {
  position: relative;
  width: 70px;
  height: 56px;
  background: var(--foam);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.cup-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: var(--sand-dark);
  border-radius: 0 0 4px 4px;
}
.cup-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(180deg, #7b4e32, #5a3420);
  border-radius: 0 0 18px 18px;
}
.cup-liquid::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  right: 8px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}
.cup-steam {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.steam {
  width: 4px;
  height: 20px;
  border-radius: 4px;
  background: rgba(245,239,230,0.4);
  animation: steamRise 2s ease-in-out infinite;
  transform-origin: bottom center;
}
.steam.s2 { animation-delay: 0.5s; height: 26px; }
.steam.s3 { animation-delay: 1s; height: 18px; }
@keyframes steamRise {
  0%   { opacity: 0; transform: scaleX(1) translateY(0); }
  30%  { opacity: 0.8; }
  100% { opacity: 0; transform: scaleX(2.5) translateY(-18px); }
}
.cup-saucer {
  width: 88px;
  height: 8px;
  background: var(--sand-dark);
  border-radius: 50%;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* === MENU === */
.menu { background: var(--sand); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-sub { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--sunrise-pink); margin-top: 0.5rem; font-weight: 500; }

/* Two-column hot/cold split */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.menu-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.menu-col-header {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
}
.hot-header {
  background: linear-gradient(90deg, var(--sunrise-gold), var(--sunrise-pink));
  color: var(--espresso);
}
.cold-header {
  background: linear-gradient(90deg, #a8d8ee, #1a7fa8);
  color: #fff;
}
.menu-card {
  background: var(--foam);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--sand-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sunrise-gold), var(--sunrise-pink));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.menu-col:last-child .menu-card::before {
  background: linear-gradient(90deg, #a8d8ee, #1a7fa8);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.menu-card:hover::before { transform: scaleX(1); }
.menu-icon { font-size: 1.75rem; margin-bottom: 0.6rem; display: block; }
.menu-card p { font-size: 0.9rem; line-height: 1.6; }
.menu-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gulf);
  margin-top: 1px;
}
.menu-price {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--espresso);
  border-top: 1px solid var(--sand-dark);
  padding-top: 0.65rem;
}
.menu-price span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sunrise-pink); font-family: var(--font-body); }

/* Add-ons */
.menu-extra { margin-top: 3rem; }
.addons-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 1.25rem;
  position: relative;
}
.addons-label::before, .addons-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--sand-dark);
}
.addons-label::before { right: calc(50% + 70px); }
.addons-label::after  { left:  calc(50% + 70px); }
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.extra-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--foam);
  border: 1px solid var(--sand-dark);
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}
.addon-name { color: var(--espresso-mid); }
.addon-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--espresso);
}
.addon-price em {
  font-style: normal;
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--gulf);
  font-weight: 500;
}

/* === HOURS BAND === */
.hours-band {
  background: linear-gradient(90deg, var(--sunrise-gold), var(--sunrise-pink));
  padding: 1.4rem 2rem;
}
.hours-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hours-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(46,31,19,0.65);
}
.hours-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--espresso);
  font-style: italic;
  font-weight: 600;
}
.hours-phone a {
  font-size: 0.88rem;
  color: var(--espresso);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* === DIRECTIONS === */
.directions { background: var(--foam); }
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.directions-info h2 { margin-bottom: 2rem; }
.addr-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--espresso-mid);
  line-height: 1.6;
}
.addr-line svg { flex-shrink: 0; margin-top: 2px; color: var(--gulf); }
.addr-line a { color: var(--gulf); }
.addr-line a:hover { text-decoration: underline; }
.directions-steps {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-dark);
}
.directions-steps h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 1rem;
}
.directions-steps ol {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}
.directions-steps li {
  font-size: 0.9rem;
  color: var(--espresso-mid);
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-dark);
}

/* === CONTACT === */
.contact { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { margin-bottom: 1.25rem; }
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--espresso-mid);
  transition: color 0.2s;
}
.channel:hover { color: var(--gulf); }
.channel svg { color: var(--gulf); }

/* Form */
.contact-form-wrap {
  background: var(--foam);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--sand-dark);
  box-shadow: var(--shadow);
}
.field-group {
  margin-bottom: 1.25rem;
}
.field-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  background: var(--foam);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--espresso);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--sunrise-gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.field-group textarea { resize: vertical; min-height: 120px; }
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b4c38'%3E%3Cpath d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.field-err {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
  min-height: 1em;
}
.field-group.error input,
.field-group.error textarea {
  border-color: #c0392b;
}
.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: rgba(245,166,35,0.1);
  border: 1px solid var(--sunrise-gold);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--espresso-mid);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.visible { display: flex; }

/* === FOOTER === */
.footer {
  background: var(--espresso);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--foam);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-logo em { font-style: italic; color: var(--sunrise-gold); margin-left: 0.15em; }
.footer-brand p { font-size: 0.82rem; color: rgba(245,239,230,0.5); line-height: 1.6; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sunrise-gold); }
.footer-copy {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(245,239,230,0.3);
}
.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q360 0 720 30 T1440 30 V60 H0Z' fill='rgba(78,125,150,0.08)'/%3E%3C/svg%3E") center/cover no-repeat;
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-grid,
  .directions-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .float-tag { right: 1rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .map-container { height: 360px; }
}

@media (max-width: 640px) {
  .nav { padding: 0 1.25rem; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(245,239,230,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    border-bottom: 1px solid var(--sand-dark);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--espresso-mid); padding: 0.85rem 2rem; display: block; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-perks { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hours-inner { flex-direction: column; text-align: center; gap: 0.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
