/* ════════════════════════════════════════════════════════════
   Te Oasis — style.css
   Desert apothecary. Shade in the heat. Calm is the product.
   ════════════════════════════════════════════════════════════ */

@layer components {

/* ─── Fonts ─── */

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/static/fonts/newsreader-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                 U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/static/fonts/newsreader-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
                 U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
                 U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/static/fonts/dm-sans-latin.woff2') format('woff2');
}

/* ─── Design Tokens ─── */

:root {
  /* Surfaces */
  --surface-0: oklch(94.5% 0.012 85);
  --surface-1: oklch(97% 0.008 82);
  --surface-2: oklch(91% 0.018 88);
  --surface-hero: oklch(22% 0.025 75);
  --surface-nav: oklch(94.5% 0.012 85 / 0.92);

  /* Text */
  --text-primary: oklch(18% 0.02 70);
  --text-secondary: oklch(38% 0.018 75);
  --text-tertiary: oklch(52% 0.012 78);
  --text-inverse: oklch(94% 0.008 80);

  /* Brand */
  --color-sage: oklch(52% 0.09 148);
  --color-sage-light: oklch(88% 0.05 148);
  --color-sage-dark: oklch(34% 0.08 148);
  --color-terracotta: oklch(54% 0.14 42);
  --color-terracotta-hover: oklch(46% 0.14 42);
  --color-sand: oklch(86% 0.035 82);
  --color-clay: oklch(42% 0.05 58);

  /* Borders */
  --border-subtle: oklch(86% 0.012 82);
  --border-visible: oklch(72% 0.018 78);
  --border-focus: oklch(42% 0.08 148);

  /* Typography */
  --font-display: 'Newsreader', 'Georgia', serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-md: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-lg: clamp(1.35rem, 1.1rem + 1.2vw, 1.85rem);
  --text-xl: clamp(1.7rem, 1.3rem + 2vw, 2.75rem);
  --text-display: clamp(2.4rem, 1.5rem + 4.5vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 8rem;

  --container-max: 1140px;
  --section-padding: clamp(3rem, 6vw, 7rem);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(25% 0.02 75 / 0.06);
  --shadow-md: 0 4px 16px oklch(25% 0.02 75 / 0.08);
  --shadow-lg: 0 8px 32px oklch(25% 0.02 75 / 0.1);
  --shadow-glow: 0 0 24px oklch(52% 0.09 148 / 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  /* Focus */
  --accent: var(--border-focus);
}


/* ─── Globals ─── */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--surface-0);
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--text-primary);
  margin-block-end: var(--space-6);
}

.skip-link {
  position: absolute;
  inset-block-start: -100%;
  inset-inline-start: var(--space-4);
  background: var(--surface-hero);
  color: var(--text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  z-index: 200;

  &:focus {
    inset-block-start: var(--space-2);
  }
}


/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
}

.btn__arrow {
  transition: translate var(--duration-base) var(--ease-out);
  display: inline-block;
}

.btn:hover .btn__arrow {
  translate: 4px 0;
}

.btn--primary {
  background: var(--color-terracotta);
  color: oklch(98% 0 0);
  border: none;

  &:hover {
    background: var(--color-terracotta-hover);
  }
}

.btn--secondary {
  background: transparent;
  color: var(--color-sage-dark);
  border: 1.5px solid var(--color-sage);

  &:hover {
    background: var(--color-sage-light);
    border-color: var(--color-sage-dark);
  }
}

.btn--outline-light {
  background: transparent;
  color: var(--text-inverse);
  border: 1.5px solid oklch(94% 0 0 / 0.5);

  &:hover {
    background: oklch(100% 0 0 / 0.1);
    border-color: oklch(94% 0 0 / 0.8);
  }
}


/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: var(--surface-nav);
  backdrop-filter: blur(12px);
  border-block-end: 1px solid var(--border-subtle);
  transition: background var(--duration-base);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-3) var(--space-5);
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0.3ch;
  font-family: var(--font-display);
  font-size: var(--text-md);
  line-height: 1;
}

.nav__logo-te {
  font-weight: 300;
  font-style: italic;
  color: var(--color-sage-dark);
}

.nav__logo-oasis {
  font-weight: 600;
  color: var(--text-primary);
}

.nav__links {
  display: flex;
  gap: var(--space-6);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--duration-fast);
  position: relative;

  &::after {
    content: '';
    position: absolute;
    inset-block-end: -4px;
    inset-inline: 0;
    block-size: 1.5px;
    background: var(--color-terracotta);
    scale: 0 1;
    transform-origin: right;
    transition: scale var(--duration-base) var(--ease-out);
  }

  &:hover {
    color: var(--text-primary);

    &::after {
      scale: 1 1;
      transform-origin: left;
    }
  }
}

.nav__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-dark);
  transition: color var(--duration-fast);

  &:hover { color: var(--color-sage); }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);

  & span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--duration-base) var(--ease-out);
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  animation: parallax linear;
  animation-timeline: scroll();
  animation-range: 0% 50%;
}

@keyframes parallax {
  to { translate: 0 -15%; scale: 1.04; }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      oklch(18% 0.02 75 / 0.25) 0%,
      oklch(18% 0.02 75 / 0.15) 40%,
      oklch(18% 0.02 75 / 0.55) 75%,
      oklch(18% 0.02 75 / 0.8) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-16) var(--space-5) var(--space-10);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 350;
  line-height: 1.08;
  color: oklch(97% 0.005 80);
  margin-block-end: var(--space-5);
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
  color: oklch(92% 0.008 80 / 0.8);
  margin-block-end: var(--space-8);
  line-height: 1.6;
}

.hero__scroll {
  position: absolute;
  inset-block-end: var(--space-6);
  z-index: 2;
  color: oklch(92% 0 0 / 0.4);
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 8px; }
}


/* ═══════════════════════════════════════════
   SABORES (MENU PREVIEW)
   ═══════════════════════════════════════════ */

.sabores {
  padding-block: var(--section-padding);
}

.sabores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-block-end: var(--space-8);
}

@media (max-width: 640px) {
  .sabores__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.sabores__cta {
  text-align: center;
}


/* ─── Tea Card ─── */

.tea-card {
  background: var(--surface-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    translate var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);

  &:hover {
    translate: 0 -4px;
    box-shadow: var(--shadow-lg);
  }
}

.tea-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale var(--duration-slow) var(--ease-out);
  }

  /* Condensation glow on hover */
  &::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse at 50% 65%,
      oklch(96% 0.005 85 / 0.18),
      transparent 70%
    );
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-in-out);
    pointer-events: none;
  }
}

.tea-card:hover .tea-card__image {
  & img { scale: 1.04; }
  &::after { opacity: 1; }
}

.tea-card__body {
  padding: var(--space-5);
}

.tea-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.2;
  margin-block-end: var(--space-2);

  & a {
    transition: color var(--duration-fast);
    &:hover { color: var(--color-terracotta); }
  }
}

.tea-card__tagline {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-block-end: var(--space-4);
  line-height: 1.5;
}

.tea-card__prices {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-block-end: var(--space-5);
}

.tea-card__size {
  font-size: var(--text-sm);
  color: var(--text-secondary);

  & strong {
    color: var(--text-primary);
    font-weight: 600;
  }
}


/* ═══════════════════════════════════════════
   HISTORIA (ABOUT TEASER)
   ═══════════════════════════════════════════ */

.historia {
  padding-block: var(--section-padding);
  background: var(--surface-2);
}

.historia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (max-width: 768px) {
  .historia__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.historia__image-wrap {
  overflow: hidden;
}

.historia__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-blob);
  animation: morph 12s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 55% 45% / 45% 60% 40% 55%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
  75% { border-radius: 42% 58% 45% 55% / 60% 45% 55% 40%; }
}

.historia__text {
  max-width: 45ch;
}

.historia__body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-block-end: var(--space-4);
}

.historia__text .btn {
  margin-block-start: var(--space-4);
}


/* ═══════════════════════════════════════════
   BENEFITS STRIP
   ═══════════════════════════════════════════ */

.strip {
  background: var(--surface-hero);
  padding-block: var(--space-5);
  overflow: hidden;
  position: relative;
}

.strip__track {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.strip__item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-inverse);
}

.strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: oklch(55% 0.14 42 / 0.7);
  flex-shrink: 0;
}

@keyframes marquee {
  to { translate: -50% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .strip__track {
    animation: none;
    flex-wrap: wrap;
    white-space: normal;
    justify-content: center;
    gap: var(--space-4);
  }

  .strip__item[aria-hidden="true"],
  .strip__dot[aria-hidden="true"] {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   INSTAGRAM
   ═══════════════════════════════════════════ */

.instagram {
  padding-block: var(--section-padding);
}

.instagram__handle {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 300;
  font-style: italic;
  color: var(--color-sage);
  margin-block-start: calc(-1 * var(--space-4));
  margin-block-end: var(--space-6);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  margin-block-end: var(--space-6);
}

@media (max-width: 768px) {
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.instagram__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale var(--duration-slow) var(--ease-out);
  }

  &:hover img {
    scale: 1.08;
  }
}

.instagram__cta {
  text-align: center;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  background: var(--surface-hero);
  color: var(--text-inverse);
  padding-block-start: var(--section-padding);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  padding-block-end: var(--space-10);
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__logo-te {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--color-sage);
  display: inline;
}

.footer__logo-oasis {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  display: inline;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: oklch(70% 0.01 80);
}

.footer__wa {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-sage);
  transition: color var(--duration-fast);

  &:hover { color: oklch(65% 0.1 148); }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);

  & a {
    font-size: var(--text-sm);
    color: oklch(70% 0.01 80);
    transition: color var(--duration-fast);

    &:hover { color: var(--text-inverse); }
  }
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(55% 0.01 80);
  margin-block-end: var(--space-1);
}

.footer__bottom {
  border-block-start: 1px solid oklch(35% 0.02 75);
  padding: var(--space-5);
  text-align: center;

  & p {
    font-size: var(--text-xs);
    color: oklch(50% 0.01 80);
  }
}


/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  inset-block-end: var(--space-5);
  inset-inline-end: var(--space-5);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: oklch(52% 0.18 148);
  color: white;
  box-shadow:
    var(--shadow-md),
    0 0 0 0 oklch(52% 0.18 148 / 0.4);
  transition: scale var(--duration-fast) var(--ease-out);
  animation: wa-pulse 3s ease-in-out 2s 3;

  &:hover {
    scale: 1.08;
  }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 oklch(52% 0.18 148 / 0.4); }
  50% { box-shadow: var(--shadow-md), 0 0 0 12px oklch(52% 0.18 148 / 0); }
}


/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */

.reveal {
  animation: fade-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 25%;
}

@keyframes fade-up {
  from { opacity: 0; translate: 0 40px; }
}

/* ═══════════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════════ */

.page-header {
  padding-block: var(--space-16) var(--space-10);
  background: var(--surface-1);
  border-block-end: 1px solid var(--border-subtle);
}

.page-header__title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-block-end: var(--space-4);
}

.page-header__subtitle {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 55ch;
  line-height: 1.6;
}

.nav__link--active {
  color: var(--color-sage-dark);
  border-block-end: 2px solid var(--color-sage);
}


/* ═══════════════════════════════════════════
   MENU PAGE — Pricing cards
   ═══════════════════════════════════════════ */

.pricing {
  padding-block: var(--section-padding);
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.pricing__card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-5);
  text-align: center;
  transition: box-shadow var(--duration-base) var(--ease-out);

  &:hover {
    box-shadow: var(--shadow-md);
  }
}

.pricing__card--featured {
  border-color: var(--color-sage);
  background: var(--color-sage-light);
}

.pricing__badge {
  position: absolute;
  inset-block-start: calc(-1 * var(--space-3));
  inset-inline-start: 50%;
  translate: -50% 0;
  background: var(--color-sage);
  color: oklch(98% 0 0);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-4);
  border-radius: 100px;
}

.pricing__icon {
  font-size: 2.5rem;
  display: block;
  margin-block-end: var(--space-4);
}

.pricing__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-block-end: var(--space-2);
}

.pricing__desc {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-block-end: var(--space-5);
}

.pricing__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-terracotta);
}


/* ═══════════════════════════════════════════
   MENU PAGE — Menu cards
   ═══════════════════════════════════════════ */

.menu {
  padding-block: var(--section-padding);
  background: var(--surface-1);
}

.menu__grid {
  display: grid;
  gap: var(--space-8);
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  background: var(--surface-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);

  @media (width < 600px) {
    grid-template-columns: 1fr;
  }
}

.menu-card__image {
  position: relative;
  overflow: hidden;

  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.menu-card__image--placeholder {
  & img {
    filter: grayscale(0.5) brightness(0.8);
  }
}

.menu-card__soon {
  position: absolute;
  inset-block-start: var(--space-4);
  inset-inline-start: var(--space-4);
  background: var(--color-sage);
  color: oklch(98% 0 0);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
}

.menu-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-block-end: var(--space-2);
}

.menu-card__tagline {
  font-size: var(--text-sm);
  color: var(--color-sage);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-block-end: var(--space-4);
}

.menu-card__desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-block-end: var(--space-5);
}

.menu-card__details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-1) var(--space-4);
  font-size: var(--text-sm);
  margin-block-end: var(--space-5);
  padding-block: var(--space-4);
  border-block: 1px solid var(--border-subtle);

  & dt {
    color: var(--text-tertiary);
    font-weight: 500;
  }

  & dd {
    color: var(--text-secondary);
  }
}

.menu-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.menu-card__price {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}


/* ═══════════════════════════════════════════
   MENU PAGE — How to order
   ═══════════════════════════════════════════ */

.como-pedir {
  padding-block: var(--section-padding);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin-block-end: var(--space-8);
}

.steps__item {
  text-align: center;
}

.steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-sage-light);
  color: var(--color-sage-dark);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-block-end: var(--space-4);
}

.steps__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  margin-block-end: var(--space-2);
}

.steps__item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.como-pedir__cta {
  text-align: center;
}


/* ═══════════════════════════════════════════
   ZONA PAGE — Zone cards
   ═══════════════════════════════════════════ */

.zonas {
  padding-block: var(--section-padding);
}

.zonas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.zona-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.zona-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-block-end: var(--space-1);
}

.zona-card__desc {
  font-size: var(--text-sm);
  color: var(--color-sage);
  font-weight: 500;
  margin-block-end: var(--space-4);
}

.zona-card__list {
  list-style: none;
  padding: 0;

  & li {
    padding-block: var(--space-2);
    border-block-end: 1px solid var(--border-subtle);
    font-size: var(--text-sm);
    color: var(--text-secondary);

    &:last-child {
      border: none;
    }
  }
}


/* ═══════════════════════════════════════════
   SHARED — Info grid (zona, eventos)
   ═══════════════════════════════════════════ */

.entrega-info, .event-pricing {
  padding-block: var(--section-padding);
  background: var(--surface-1);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
  margin-block-end: var(--space-8);
}

.info-item {
  padding: var(--space-5);
  background: var(--surface-0);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.info-item__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  margin-block-end: var(--space-2);
}

.info-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.entrega-info__cta {
  text-align: center;
  margin-block-start: var(--space-8);
}

.entrega-info__question {
  font-family: var(--font-display);
  font-size: var(--text-md);
  margin-block-end: var(--space-4);
}


/* ═══════════════════════════════════════════
   NOSOTROS PAGE — Story
   ═══════════════════════════════════════════ */

.story {
  padding-block: var(--section-padding);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;

  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.story__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.story__text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-block-end: var(--space-4);

  &:last-of-type {
    margin-block-end: var(--space-6);
  }
}


/* ═══════════════════════════════════════════
   NOSOTROS PAGE — Values
   ═══════════════════════════════════════════ */

.valores {
  padding-block: var(--section-padding);
  background: var(--surface-1);
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.valor-card {
  padding: var(--space-6);
  background: var(--surface-0);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.valor-card__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  margin-block-end: var(--space-3);
}

.valor-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.nosotros-cta {
  padding-block: var(--section-padding);
}


/* ═══════════════════════════════════════════
   EVENTOS PAGE — Event cards
   ═══════════════════════════════════════════ */

.event-types {
  padding-block: var(--section-padding);
}

.event-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.event-card {
  padding: var(--space-6);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--duration-base) var(--ease-out);

  &:hover {
    box-shadow: var(--shadow-md);
  }
}

.event-card__title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  margin-block-end: var(--space-3);
}

.event-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   CONTACTO PAGE
   ═══════════════════════════════════════════ */

.contacto {
  padding-block: var(--section-padding);
}

.contacto__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.contacto-card {
  display: block;
  padding: var(--space-8) var(--space-5);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);

  &:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-visible);
  }

  & svg {
    color: var(--color-sage);
    margin-block-end: var(--space-4);
  }
}

.contacto-card--wa {
  border-color: var(--color-sage);
  background: var(--color-sage-light);
}

.contacto-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  margin-block-end: var(--space-1);
}

.contacto-card__detail {
  font-weight: 600;
  color: var(--color-sage-dark);
  margin-block-end: var(--space-3);
}

.contacto-card__desc {
  color: var(--text-secondary);
  font-size: var(--text-sm);
}


/* ═══════════════════════════════════════════
   CONTACTO PAGE — FAQ
   ═══════════════════════════════════════════ */

.faq {
  padding-block: var(--section-padding);
  background: var(--surface-1);
}

.faq__list {
  max-width: 700px;
  margin-inline: auto;
}

.faq__item {
  border-block-end: 1px solid var(--border-subtle);

  &[open] .faq__question::after {
    rotate: 180deg;
  }
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  cursor: pointer;
  list-style: none;

  &::after {
    content: '▾';
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    transition: rotate var(--duration-base) var(--ease-out);
  }

  &::-webkit-details-marker {
    display: none;
  }
}

.faq__answer {
  padding-block-end: var(--space-5);
  color: var(--text-secondary);
  line-height: 1.7;
}

.btn--sm {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


} /* end @layer components */
