/* =========================================================
   Corazón de Mañana Café — styles.css
   Warm, editorial, Apple-inspired minimal café aesthetic
   ========================================================= */

:root {
  /* Palette — warm neutrals */
  --cream:          #f6efe4;
  --warm-white:     #fbf7f1;
  --beige:          #ece2d2;
  --beige-2:        #e0d3bd;
  --terracotta:     #c47a5a;
  --terracotta-dk:  #a55f43;
  --espresso:       #3a2a1f;
  --espresso-dk:    #241710;
  --ink:            #1f1612;
  --gold:           #c9a063;
  --muted:          #7c6a5d;
  --line:           rgba(58, 42, 31, 0.12);
  --line-strong:    rgba(58, 42, 31, 0.22);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--terracotta-dk); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--espresso); color: var(--cream);
  padding: 10px 14px; border-radius: 8px; z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

/* =========================================================
   Typography helpers
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-dk);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0 0 18px;
}
.section-title .accent { color: var(--terracotta-dk); font-style: italic; }

.section-body {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 28px;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 247, 241, 0.92);
  border-bottom-color: var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--espresso);
}
.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-line-1 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--espresso);
}
.brand-line-2 {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso);
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--espresso);
  transition: right .3s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { right: 0; }

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.status-pill.is-open .status-dot {
  background: #2f8f4a;
  box-shadow: 0 0 0 4px rgba(47,143,74,0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
.status-pill.is-closing .status-dot { background: #d6a13b; box-shadow: 0 0 0 4px rgba(214,161,59,0.18); }
.status-pill.is-opening .status-dot { background: var(--terracotta); box-shadow: 0 0 0 4px rgba(196,122,90,0.18); }
.status-pill.is-closed .status-dot { background: #9a4a3a; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47,143,74,0.15); }
  50%      { box-shadow: 0 0 0 7px rgba(47,143,74,0.05); }
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--espresso);
  margin: 5px auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 28px 28px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav .nav-link { font-size: 18px; padding: 8px 0; }
.mobile-nav .btn { width: 100%; justify-content: center; }
.status-pill--mobile { align-self: flex-start; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-arrow { transition: transform .35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--espresso-dk);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -16px rgba(36,23,16,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 239, 228, 0.32);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}

.btn-dark {
  background: var(--espresso);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--terracotta-dk);
  color: var(--cream);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url('assets/cafe-hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(105%) contrast(102%);
  animation: heroZoom 20s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(36,23,16,0.55) 0%, rgba(36,23,16,0.30) 35%, rgba(36,23,16,0.55) 100%),
    linear-gradient(90deg, rgba(36,23,16,0.45) 0%, rgba(36,23,16,0.15) 60%, rgba(36,23,16,0.0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 120px;
  color: var(--cream);
  max-width: 880px;
}
.hero .eyebrow { color: var(--gold); }
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.75rem, 6.5vw, 5.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--cream);
}
.hero-title .accent {
  display: block;
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(246, 239, 228, 0.86);
  max-width: 56ch;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 239, 228, 0.22);
  max-width: 640px;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.meta-value {
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
}
.meta-divider {
  width: 1px; height: 28px;
  background: rgba(246, 239, 228, 0.22);
}

.hero-scroll {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(246, 239, 228, 0.7);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-scroll-line {
  display: inline-block;
  width: 60px; height: 1px;
  background: rgba(246, 239, 228, 0.4);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute;
  left: -50%; top: 0; bottom: 0; width: 50%;
  background: var(--gold);
  animation: scrollSweep 2.6s ease-in-out infinite;
}
@keyframes scrollSweep { to { left: 100%; } }

/* =========================================================
   Experience section
   ========================================================= */
.experience {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.experience-copy { max-width: 540px; }
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.bullet-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--espresso);
}
.bullet-list li:last-child { border-bottom: 1px solid var(--line); }
.bullet-list li span { color: var(--terracotta-dk); font-weight: 700; }

.experience-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--beige);
  aspect-ratio: 4 / 5;
}
.media-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.media-card:hover img { transform: scale(1.04); }
.media-card--tall { grid-row: span 2; aspect-ratio: 4 / 6; }

/* =========================================================
   Highlights
   ========================================================= */
.highlights {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  margin-bottom: 56px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -32px rgba(36,23,16,0.25);
  border-color: var(--line-strong);
}
.card-num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--terracotta-dk);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.card-body {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
  margin: 0 0 22px;
}
.card-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--beige);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* =========================================================
   Location preview
   ========================================================= */
.location-preview {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--warm-white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.location-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--beige);
}
.location-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.location-image:hover img { transform: scale(1.04); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-cell dt {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-dk);
  font-weight: 600;
  margin-bottom: 8px;
}
.info-cell dd {
  margin: 0;
  font-size: 15px;
  color: var(--espresso);
  line-height: 1.55;
}
.info-cell dd a { border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(180deg, var(--espresso) 0%, var(--espresso-dk) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 420px; height: 420px;
  background: radial-gradient(closest-side, rgba(201,160,99,0.22), rgba(201,160,99,0));
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -180px; left: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(196,122,90,0.18), rgba(196,122,90,0));
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta .eyebrow { color: var(--gold); }
.cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 18px;
}
.cta-body {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(246, 239, 228, 0.78);
  max-width: 48ch;
  margin: 0 auto 36px;
}
.final-cta .hero-actions { justify-content: center; margin-bottom: 0; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-hero {
  padding: clamp(110px, 14vw, 160px) 0 clamp(70px, 9vw, 110px);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(196,122,90,0.12), transparent 60%),
    radial-gradient(ellipse 80% 60% at 100% 20%, rgba(201,160,99,0.10), transparent 60%),
    var(--warm-white);
  border-bottom: 1px solid var(--line);
}
.contact-hero-inner { max-width: 820px; }
.contact-hero .hero-title { color: var(--espresso); }
.contact-hero .hero-title .accent { color: var(--terracotta-dk); }
.contact-hero .hero-sub { color: var(--muted); }
.contact-hero .hero-actions { margin-bottom: 0; }

.contact-details {
  padding: clamp(70px, 10vw, 110px) 0;
  background: var(--warm-white);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.detail-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.detail-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -32px rgba(36,23,16,0.22);
}
.detail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
  margin: 0;
}
.detail-card p {
  margin: 0;
  font-size: 15px;
  color: var(--espresso);
  line-height: 1.55;
}
.detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: grid; place-items: center;
  color: var(--terracotta-dk);
}
.detail-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta-dk);
}
.detail-link:hover { color: var(--espresso); }

.detail-card--accent {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}
.detail-card--accent h3 { color: var(--cream); }
.detail-card--accent p { color: rgba(246,239,228,0.82); }
.detail-card--accent .detail-icon {
  background: rgba(246,239,228,0.12);
  color: var(--gold);
}
.detail-card--accent .detail-link { color: var(--gold); }
.detail-card--accent .detail-link:hover { color: var(--cream); }

.status-pill--inline {
  align-self: flex-start;
  margin-top: 4px;
}

.map-section {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 12vw, 140px);
  background: var(--warm-white);
}
.map-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
}
.map-head .section-title { margin-bottom: 0; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--beige);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  filter: saturate(85%) contrast(98%);
}
.map-overlay-actions {
  position: absolute;
  left: 24px; bottom: 24px;
  display: flex; gap: 10px;
}

/* =========================================================
   Delivery Areas (parent) + city pages
   ========================================================= */

/* Radius strip on parent hero */
.radius-strip {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 56px);
}
.radius-strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.radius-strip-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--terracotta-dk);
  line-height: 1;
  letter-spacing: -0.01em;
}
.radius-strip-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Areas grid */
.areas-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--cream);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.area-card {
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  color: var(--espresso);
  text-decoration: none;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -32px rgba(36,23,16,0.25);
  background: #fff;
  color: var(--espresso);
}
.area-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.area-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta-dk);
  letter-spacing: 0.04em;
}
.area-card-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--beige);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.area-card-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.area-card-body {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
  margin: 0 0 22px;
  line-height: 1.55;
}
.area-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta-dk);
  align-self: flex-start;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.area-card:hover .area-card-cta { gap: 12px; color: var(--espresso); }
.area-card--note {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
  padding-top: 36px;
}
.area-card--note:hover { background: var(--espresso-dk); color: var(--cream); }
.area-card--note .area-card-num { color: var(--gold); font-size: 1.4rem; font-style: normal; }
.area-card--note .area-card-title { color: var(--cream); margin-top: 16px; }
.area-card--note .area-card-body { color: rgba(246,239,228,0.78); }
.area-card--note .area-card-cta { color: var(--gold); }
.area-card--note:hover .area-card-cta { color: var(--cream); }

/* Breadcrumb */
.breadcrumb {
  padding: 28px 0 0;
  background: var(--warm-white);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb .container { display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--terracotta-dk); font-weight: 600; }
.breadcrumb a:hover { color: var(--espresso); }
.breadcrumb > .container > span { color: var(--espresso); font-weight: 600; }

/* City area hero (lighter than home hero) */
.area-hero {
  padding: clamp(60px, 8vw, 100px) 0 clamp(70px, 10vw, 120px);
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(196,122,90,0.12), transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 30%, rgba(201,160,99,0.10), transparent 60%),
    var(--warm-white);
  border-bottom: 1px solid var(--line);
}
.area-hero-inner { max-width: 820px; }
.area-hero .hero-title { color: var(--espresso); }
.area-hero .hero-title .accent { color: var(--terracotta-dk); }
.area-hero .hero-sub { color: var(--muted); }
.area-hero .hero-actions { margin-bottom: 0; }

/* Brunch callout band */
.brunch-callout {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.brunch-callout::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(196,122,90,0.22), rgba(196,122,90,0));
  pointer-events: none;
}
.brunch-callout-inner {
  position: relative;
  max-width: 760px;
}
.brunch-callout .section-title { color: var(--espresso); }
.brunch-callout .section-body { color: var(--espresso); opacity: 0.82; max-width: 60ch; }
.brunch-callout .hero-actions { margin-bottom: 0; }

/* =========================================================
   Fee compare (marketplace deflection pages)
   ========================================================= */
.fee-compare-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--cream);
}
.fee-compare-section .section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.fee-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.fee-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fee-card-head h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 12px 0 6px;
}
.fee-card-head p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.fee-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.fee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.fee-list li {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid currentColor;
  border-color: rgba(0,0,0,0);
}
.fee-list li:first-child { border-top: 0; padding-top: 0; }
.fee-list strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.fee-list span {
  font-size: 14px;
  opacity: 0.78;
  line-height: 1.5;
}

/* Direct (recommended) card — warm + bright */
.fee-card--direct {
  background: var(--warm-white);
  border-color: var(--line-strong);
  color: var(--espresso);
  box-shadow: 0 24px 60px -32px rgba(36,23,16,0.18);
}
.fee-card--direct:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px -34px rgba(36,23,16,0.28);
}
.fee-card--direct .fee-list li { border-top-color: var(--line); }
.fee-card--direct .fee-list strong { color: var(--terracotta-dk); }
.fee-card--direct .btn { align-self: flex-start; margin-top: auto; }
.fee-badge--good {
  background: var(--terracotta-dk);
  color: var(--cream);
}

/* Marketplace card — muted, restrained */
.fee-card--market {
  background: rgba(58, 42, 31, 0.04);
  border-color: var(--line);
  color: var(--espresso);
}
.fee-card--market .fee-list li { border-top-color: var(--line); }
.fee-card--market .fee-list strong { color: var(--espresso); opacity: 0.85; }
.fee-card--market .fee-card-head p { opacity: 0.7; }
.fee-badge--meh {
  background: var(--beige-2);
  color: var(--espresso);
}

/* =========================================================
   Hero reviews avatars (delivery / area / marketplace heroes)
   ========================================================= */
.hero-reviews {
  margin: 4px 0 32px;
  padding: 18px 22px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: 100%;
}
.hero-reviews emr-avatars {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  color: var(--espresso);
}
.hero-reviews iframe,
.hero-reviews img {
  max-width: 100%;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .hero-reviews {
    border-radius: var(--radius);
    padding: 14px 18px;
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================================================
   Reviews carousel (homepage)
   ========================================================= */
.reviews-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(201,160,99,0.10), transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(196,122,90,0.10), transparent 60%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.reviews-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.reviews-head .section-body { margin-bottom: 0; }

.reviews-carousel {
  position: relative;
  min-height: 260px;
}
.reviews-carousel emr-simple-carousel {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  color: var(--espresso);
}
.reviews-carousel iframe {
  width: 100% !important;
  border: 0;
  background: transparent;
}

.reviews-foot {
  margin-top: 36px;
  display: flex;
  justify-content: flex-end;
}
.reviews-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta-dk);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.reviews-foot-link:hover { gap: 12px; color: var(--espresso); }

/* =========================================================
   Contact FAQ
   ========================================================= */
.contact-faq {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--cream);
}
.contact-faq .section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.faq-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--line);
}
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item dt {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.faq-item dd {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .faq-list { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   Feedback page
   ========================================================= */
.feedback-section {
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 12vw, 140px);
  background: var(--warm-white);
}
.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.feedback-aside { max-width: 460px; }
.feedback-aside .section-title { margin-bottom: 18px; }
.feedback-aside .section-body { margin-bottom: 28px; }

.feedback-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.feedback-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feedback-list li:last-child { border-bottom: 1px solid var(--line); }
.feedback-list strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: -0.005em;
}
.feedback-list span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.feedback-contact {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--beige);
  font-size: 14px;
}
.feedback-contact p { margin: 0; color: var(--espresso); line-height: 1.55; }
.feedback-contact a { color: var(--terracotta-dk); font-weight: 600; border-bottom: 1px solid var(--line-strong); }

.feedback-form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 80px -50px rgba(36,23,16,0.25);
  position: sticky;
  top: 100px;
}
.feedback-form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.feedback-form-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--espresso);
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
}
.feedback-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feedback-form-embed {
  --emr-accent: var(--terracotta-dk);
  min-height: 320px;
}
.feedback-form-embed emr-collect-review-form {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  color: var(--espresso);
}
.feedback-form-embed iframe {
  width: 100% !important;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

@media (max-width: 860px) {
  .feedback-grid { grid-template-columns: 1fr; }
  .feedback-form-card { position: static; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--espresso-dk);
  color: var(--cream);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246, 239, 228, 0.12);
}
.footer-brand .footer-mark {
  width: 56px; height: 56px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 18px;
}
.footer-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 6px;
  color: var(--cream);
}
.footer-sub {
  margin: 0;
  color: rgba(246, 239, 228, 0.66);
  font-size: 14px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col p {
  margin: 0 0 8px;
  font-size: 14px;
  color: rgba(246, 239, 228, 0.78);
}
.footer-col a:hover { color: var(--cream); }

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(246, 239, 228, 0.08);
  border: 1px solid rgba(246, 239, 228, 0.16);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.social-link:hover {
  background: var(--gold);
  color: var(--espresso-dk);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(246, 239, 228, 0.5);
  letter-spacing: 0.04em;
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-image, .media-card img, .location-image img {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 4; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.is-open { display: flex !important; }

  .experience-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .experience-media { grid-template-columns: 1fr 1fr; }
  .location-image { max-width: 540px; }

  .hero-content { padding-top: 80px; padding-bottom: 90px; }
  .hero-scroll { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }

  .cards,
  .details-grid,
  .areas-grid,
  .fee-compare {
    grid-template-columns: 1fr;
  }

  .experience-media { grid-template-columns: 1fr; }
  .media-card, .media-card--tall { aspect-ratio: 4 / 3; }

  .info-grid { grid-template-columns: 1fr; }

  .hero-meta { gap: 16px; }
  .meta-divider { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-grid > :first-child { grid-column: span 2; }
  .footer-social-col { grid-column: span 2; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .map-overlay-actions { left: 16px; bottom: 16px; }
  .map-wrap iframe { height: 380px; }
}
