/* =========================================================
   Castillo Boricua — Premium Apple-style stylesheet
   Mobile-first, semantic, vanilla CSS
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #0a1f44;
  --navy-deep: #050f24;
  --red: #c8102e;
  --red-deep: #9b0a22;
  --gold: #e0a84a;
  --gold-soft: #f5d28a;
  --cream: #faf6ee;
  --cream-warm: #f3ebd9;
  --charcoal: #1d1d1f;
  --charcoal-soft: #2c2c2e;
  --gray: #6e6e73;
  --gray-light: #d2d2d7;
  --white: #ffffff;

  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 30px 80px rgba(10, 31, 68, 0.18);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --max-w: 1200px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--navy);
}

p { margin: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.28);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.36);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 31, 68, 0.32);
}
.btn-link {
  color: var(--red);
  font-weight: 600;
}
.btn-link:hover { color: var(--red-deep); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(250, 246, 238, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.92);
  box-shadow: var(--shadow-sm);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-name { display: none; }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  display: none;
  padding: 10px 20px;
  font-size: 14px;
}

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.2s var(--ease);
}
.hamburger:hover { background: rgba(10, 31, 68, 0.06); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(250, 246, 238, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer a {
  display: block;
  padding: 16px 8px;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer .btn {
  margin-top: 16px;
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/papas-rellenas.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) forwards;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(5, 15, 36, 0.55) 0%, rgba(5, 15, 36, 0.78) 100%);
  z-index: -1;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-inner {
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-soft) 0%, var(--gold) 60%, #ffd97a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: none;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 12px auto 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: pulseDown 2.4s var(--ease) infinite;
}
@keyframes pulseDown {
  0%   { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  60%  { transform: scaleY(1);   transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1);   transform-origin: bottom; opacity: 0; }
}

/* ---------- Section base ---------- */
section {
  padding: 96px 0;
}
.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(34px, 5.5vw, 60px);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--navy);
}
.section-lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 640px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Experience ---------- */
.experience {
  background: var(--cream);
  position: relative;
}
.experience .container {
  display: grid;
  gap: 56px;
  align-items: center;
}
.experience-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.experience-image:hover img { transform: scale(1.04); }
.experience-text h2 { margin-bottom: 24px; }
.experience-text p {
  font-size: 18px;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.experience-text p:last-child { margin-bottom: 0; }

/* ---------- Featured cards ---------- */
.featured {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--navy);
}
.card p {
  color: var(--charcoal-soft);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}
.card .btn {
  align-self: flex-start;
}

/* ---------- Culture ---------- */
.culture {
  position: relative;
  color: var(--white);
  background: var(--navy-deep);
  isolation: isolate;
  overflow: hidden;
}
.culture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/chicken-plate.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: -2;
  transform: scale(1.05);
}
.culture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.92) 0%, rgba(200, 16, 46, 0.55) 100%);
  z-index: -1;
}
.culture .container { text-align: center; }
.culture .section-eyebrow { color: var(--gold-soft); }
.culture .section-title {
  color: var(--white);
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.culture .section-title .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.culture p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  line-height: 1.6;
  max-width: 640px;
  margin: 24px auto 0;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 31, 68, 0.45));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 36, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ---------- Location ---------- */
.location {
  background: var(--cream);
}
.location .container {
  display: grid;
  gap: 56px;
  align-items: center;
}
.location-text h2 { margin-bottom: 20px; }
.location-text p {
  color: var(--charcoal-soft);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.location-info {
  margin: 28px 0 32px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}
.info-row span, .info-row a {
  color: var(--charcoal-soft);
  font-size: 16px;
}
.info-row a:hover { color: var(--red); }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--navy);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 16, 46, 0.35), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(224, 168, 74, 0.25), transparent 45%);
  z-index: -1;
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 68px);
  margin-bottom: 20px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ---------- Contact page ---------- */
.contact-hero {
  padding: calc(var(--header-h) + 100px) 0 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.contact-hero p {
  font-size: 19px;
  color: var(--charcoal-soft);
  max-width: 560px;
  margin: 0 auto;
}

.contact-details .container {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.detail-card .info-icon {
  margin: 0 auto 16px;
  width: 52px;
  height: 52px;
}
.detail-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
}
.detail-card p, .detail-card a {
  color: var(--charcoal-soft);
  font-size: 16px;
  line-height: 1.5;
}
.detail-card a:hover { color: var(--red); }

.visit {
  background: var(--cream);
  text-align: center;
}
.visit .container { max-width: 760px; }
.visit p {
  font-size: 18px;
  color: var(--charcoal-soft);
  margin-top: 20px;
  line-height: 1.6;
}

/* Contact form */
.contact-form-section {
  background: var(--cream-warm);
}
.contact-form-section .container {
  display: grid;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light);
  background: var(--cream);
  font-family: inherit;
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
}
.form-row textarea {
  min-height: 140px;
  resize: vertical;
}
.form-row .field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: var(--red);
}
.form-row.has-error input,
.form-row.has-error textarea {
  border-color: var(--red);
}
.form-row.has-error .field-error { display: block; }

.form-submit { width: 100%; margin-top: 8px; }

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(34, 139, 90, 0.08);
  border: 1px solid rgba(34, 139, 90, 0.25);
  border-radius: var(--radius-sm);
  color: #1d6b46;
  font-size: 15px;
  font-weight: 500;
}
.form-success.is-visible { display: block; }

.contact-info-side h2 { margin-bottom: 16px; }
.contact-info-side p {
  color: var(--charcoal-soft);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact-info-side .info-row {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

/* Map full-width on contact */
.contact-map {
  padding: 0;
}
.contact-map .map-wrap {
  border-radius: 0;
  aspect-ratio: 21 / 9;
  box-shadow: none;
}

/* ---------- Delivery Areas ---------- */
.delivery-hero {
  position: relative;
  padding: calc(var(--header-h) + 110px) 0 100px;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.delivery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/alcapurrias.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
}
.delivery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(5, 15, 36, 0.7) 0%, rgba(5, 15, 36, 0.85) 100%);
  z-index: -1;
}
.delivery-hero h1 {
  color: var(--white);
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.delivery-hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.delivery-hero p {
  color: rgba(255,255,255,0.86);
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.55;
}
.delivery-radius {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  border: 1px solid rgba(10, 31, 68, 0.04);
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.area-card .pin {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.28);
}
.area-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.area-card p {
  color: var(--charcoal-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 22px;
  flex: 1;
}
.area-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-card .btn { padding: 10px 18px; font-size: 14px; }

/* City page hero */
.city-hero {
  position: relative;
  padding: calc(var(--header-h) + 100px) 0 90px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
}
.city-hero.is-kempner::before        { background-image: url("images/piononos.jpg"); }
.city-hero.is-cove::before           { background-image: url("images/papas-rellenas.jpg"); }
.city-hero.is-killeen::before        { background-image: url("images/chicken-plate.jpg"); }
.city-hero.is-fort-hood::before      { background-image: url("images/alcapurrias.jpg"); }
.city-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0.86) 0%, rgba(200,16,46,0.55) 100%);
  z-index: -1;
}
.city-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.city-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.city-hero .breadcrumb a:hover { color: var(--white); }
.city-hero h1 {
  color: var(--white);
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.city-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 19px;
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.city-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* City content */
.city-intro { background: var(--cream); }
.city-intro .container { max-width: 820px; }
.city-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}

.places {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.place-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.place-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-left: 4px solid var(--red);
}
.place-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.place-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 10px;
}
.place-card p {
  color: var(--charcoal-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Order Direct (3rd-party comparison pages) ---------- */
.direct-hero {
  position: relative;
  padding: calc(var(--header-h) + 100px) 0 90px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}
.direct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/papas-rellenas.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
}
.direct-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(200,16,46,0.35), transparent 55%),
    linear-gradient(180deg, rgba(5,15,36,0.78) 0%, rgba(5,15,36,0.9) 100%);
  z-index: -1;
}
.platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.direct-hero h1 {
  color: var(--white);
  font-size: clamp(40px, 7vw, 76px);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.direct-hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.direct-hero p {
  color: rgba(255,255,255,0.86);
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.direct-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Why-direct grid */
.why-direct {
  background: var(--cream);
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-card .info-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
}
.benefit-card h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-card p {
  color: var(--charcoal-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Side-by-side comparison */
.compare {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.compare-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.compare-card .lead {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.compare-card li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
}
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-card.is-direct {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.compare-card.is-direct::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 20%, rgba(200,16,46,0.35), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(224,168,74,0.22), transparent 50%);
  z-index: -1;
}
.compare-card.is-direct h3 { color: var(--white); }
.compare-card.is-direct .lead { color: var(--gold-soft); }
.compare-card.is-direct li::before {
  background: var(--gold-soft);
  color: var(--navy);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}
.compare-card.is-direct li { color: rgba(255,255,255,0.88); }

.compare-card.is-third {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid rgba(10,31,68,0.08);
}
.compare-card.is-third h3 { color: var(--navy); }
.compare-card.is-third .lead { color: var(--gray); }
.compare-card.is-third li::before {
  background: rgba(10,31,68,0.08);
  color: var(--gray);
  content: "×";
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.compare-card.is-third li { color: var(--charcoal-soft); }

/* Big call-out */
.local-callout {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.local-callout::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,16,46,0.3), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(224,168,74,0.22), transparent 45%);
  z-index: -1;
}
.local-callout .container { max-width: 760px; }
.local-callout h2 {
  color: var(--white);
  font-size: clamp(34px, 5.5vw, 56px);
  margin-bottom: 18px;
}
.local-callout h2 .accent {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.local-callout p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  display: block;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.footer-bottom .legal { margin: 0; }
.footer-bottom .powered { margin: 0; }
.footer-bottom .powered a {
  color: var(--gold-soft);
  font-weight: 600;
}
.footer-bottom .powered a:hover { color: var(--gold); }
@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (min-width: 600px) {
  .brand-name { display: inline; }
  .scroll-cue { display: block; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 800px) {
  .cards { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .experience .container { grid-template-columns: 5fr 6fr; gap: 80px; }
  .location .container { grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact-details .container { grid-template-columns: repeat(3, 1fr); }
  .contact-form-section .container { grid-template-columns: 5fr 7fr; gap: 72px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .place-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-drawer { display: none !important; }
  section { padding: 120px 0; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .hero { min-height: 92vh; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
