/* ============================================================
   Spice 'N' Vibes — Warm Artisan Editorial
   ============================================================ */

:root {
  --bg: #FFFBF5;
  --surface: #FFFFFF;
  --surface-alt: #FAF3EA;
  --fg: #2A1810;
  --fg-muted: #6B5346;
  --border: #F2E6D9;
  --primary: #BE185D;
  --primary-fg: #FFFFFF;
  --accent: #C2410C;
  --accent-fg: #FFFFFF;
  --success: #15803D;
  --brand-gradient: linear-gradient(95deg, #DB2777, #F97316);

  --serif: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(42, 24, 16, 0.04), 0 1px 1px rgba(42, 24, 16, 0.03);
  --shadow-md: 0 12px 32px -16px rgba(42, 24, 16, 0.18), 0 2px 6px rgba(42, 24, 16, 0.05);
  --shadow-lg: 0 30px 60px -30px rgba(42, 24, 16, 0.30), 0 8px 20px -12px rgba(42, 24, 16, 0.10);

  --container: 1200px;
  --container-pad: 1.25rem;

  --header-h: 72px;
}

@media (min-width: 1024px) {
  :root { --container-pad: 2rem; --header-h: 84px; }
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ----- Skip link ----- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--fg); color: var(--bg);
  padding: 0.6rem 0.9rem; border-radius: 6px;
  font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; outline: 2px solid var(--primary); }

/* ----- Focus ----- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ----- Typography helpers ----- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.4vw + 0.5rem, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
}
.display em, .display .accent {
  font-style: italic;
  color: var(--primary);
}
.display-sm {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw + 0.6rem, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.lede {
  font-size: clamp(1.05rem, 0.8vw + 0.9rem, 1.22rem);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 52ch;
  text-wrap: pretty;
}

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none !important;
  border: 1px solid transparent;
}
.btn .ic { width: 18px; height: 18px; flex: none; }
.btn-lg { padding: 0.95rem 1.4rem; font-size: 1rem; min-height: 52px; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 22px -10px rgba(190, 24, 93, 0.45);
}
.btn-primary:hover {
  background: #A21651;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -10px rgba(190, 24, 93, 0.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface-alt);
  border-color: #E5D3BD;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img {
  height: 36px; width: auto;
  display: block;
}
@media (min-width: 1024px) {
  .brand img { height: 42px; }
}

.primary-nav {
  display: none;
  margin-left: auto;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav a {
  color: var(--fg);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; margin-left: 0.5rem; }

.menu-toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--fg);
}
.menu-toggle:hover { background: var(--surface-alt); }
.menu-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1024px) {
  .primary-nav { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

.mobile-menu {
  border-top: 1px solid var(--border);
  padding: 1rem var(--container-pad) 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--bg);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  color: var(--fg);
  text-decoration: none;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu .btn { margin-top: 0.75rem; align-self: flex-start; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--bg);
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle warm vignette */
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%; height: 60%;
  background: radial-gradient(closest-side, rgba(219, 39, 119, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}
.hero-copy { max-width: 38rem; }
.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.hero-meta .ic { width: 16px; height: 16px; color: var(--accent); }

.hero-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-alt);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) {
  .hero-figure img { aspect-ratio: 4 / 5; }
}
.hero-tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.01em;
}
.tag-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.18);
}

/* ============================================================
   Section heads
   ============================================================ */
.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.section-head-center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-head-center .eyebrow { justify-content: center; }
.section-sub {
  margin-top: 1rem;
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 48ch;
  text-wrap: pretty;
}
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   Menu
   ============================================================ */
.menu-section {
  background: var(--surface-alt);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #EAD6BF;
  background: #FFFEFB;
}
.product-photo {
  display: block;
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 4 / 3;
}
.product-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-photo img { transform: scale(1.04); }
.product-body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.product-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.product-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.price {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.product-desc {
  color: var(--fg-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}
.product-link {
  margin-top: auto;
  padding-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  align-self: flex-start;
}
.product-link .ic { width: 14px; height: 14px; transition: transform 0.2s ease; }
.product-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.product-link:hover .ic { transform: translateX(3px); }

.menu-foot {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--fg-muted);
}
.menu-foot .ic { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* ============================================================
   About
   ============================================================ */
.about-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: 4rem; }
}
.about-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-quote {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: 1.1rem 1.25rem 1.2rem;
  background: rgba(255, 251, 245, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-family: var(--serif);
  color: var(--fg);
}
.about-quote p {
  font-size: 1.05rem;
  line-height: 1.4;
  font-style: italic;
}
.about-quote cite {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.82rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.about-quote .quote-mark {
  position: absolute;
  top: -10px; left: 14px;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
}

.about-copy { max-width: 36rem; }
.prose { margin-top: 1.25rem; color: var(--fg-muted); }
.prose p { margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.65; }
.prose p:last-child { margin-bottom: 0; }

.trust-strip {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--fg);
  font-weight: 500;
}
.trust-strip .ic { width: 18px; height: 18px; color: var(--accent); }

/* ============================================================
   Contact
   ============================================================ */
.contact-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(4rem, 6vw, 7rem);
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.6rem 1.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none !important;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.2s ease;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #EAD6BF;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--surface-alt);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card--whatsapp .contact-icon {
  background: var(--brand-gradient);
  color: white;
}
.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  word-break: break-word;
}
.contact-card[href^="mailto"] .contact-value { font-family: var(--sans); font-size: 1.1rem; font-weight: 500; }
.contact-meta {
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.contact-cta {
  margin-top: auto;
  padding-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-cta .ic { width: 14px; height: 14px; transition: transform 0.2s ease; }
.contact-card:hover .contact-cta .ic { transform: translateX(3px); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}
.footer-brand img { height: 32px; width: auto; }
.footer-brand p {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--primary); }
.footer-meta {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: left;
}
@media (min-width: 1024px) {
  .footer-meta { text-align: right; }
}
.footer-credit { margin-top: 0.25rem; font-style: italic; }
