/* AYHURA Labs — static stylesheet (hand-written, no build step) */

:root {
  --plum: #2b103b;
  --plum-700: #341a47;
  --plum-50: #f4eff6;
  --gold: #d4af37;
  --gold-light: #e6cc73;
  --gold-dark: #a8861f;
  --emerald: #0f5b43;
  --emerald-dark: #0a4231;
  --cream: #faf8f3;
  --ink: #111111;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow.on-dark { color: var(--gold-light); }

h1, h2, h3 { font-family: var(--font-display); color: var(--plum); margin: 0; }
.section { padding: 5rem 0; }
.section.tight { padding: 3rem 0; }
.bg-white { background: #fff; }
.bg-cream { background: var(--cream); }
.bg-plum { background: var(--plum); color: var(--cream); }
.bg-plum-50 { background: var(--plum-50); }
.text-cream { color: var(--cream); }
.muted { color: rgba(43,16,59,0.65); }
.muted-light { color: rgba(250,248,243,0.65); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.95rem 1.75rem; border-radius: 999px; border: 1px solid transparent;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-primary { background: var(--plum); color: var(--cream); }
.btn-primary:hover { background: var(--plum-700); }
.btn-gold { background: var(--gold); color: var(--plum); }
.btn-gold:hover { background: var(--gold-light); }
.btn-emerald { background: var(--emerald); color: var(--cream); }
.btn-emerald:hover { background: var(--emerald-dark); }
.btn-outline { border-color: rgba(43,16,59,0.3); color: var(--plum); }
.btn-outline:hover { border-color: var(--plum); }
.btn-outline-light { border-color: rgba(250,248,243,0.3); color: var(--cream); }
.btn-outline-light:hover { border-color: var(--cream); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,16,59,0.1);
  box-shadow: 0 1px 0 0 rgba(43,16,59,0.03);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.logo img { height: 36px; width: auto; object-fit: contain; }
@media (max-width: 1023px) {
  .logo img { height: 45px; }
}
.nav-desktop { display: none; gap: 2.25rem; align-items: center; }
.nav-desktop a { font-size: 0.82rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; }
.nav-desktop a:hover { color: var(--emerald); }
.nav-toggle { display: block; background: none; border: none; padding: 0.4rem; }
.nav-mobile { display: none; flex-direction: column; padding: 0.5rem 1.5rem 1rem; border-top: 1px solid rgba(43,16,59,0.08); }
.nav-mobile a { padding: 0.75rem 0; font-size: 0.95rem; font-weight: 500; }
.nav-mobile.open { display: flex; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex !important; }
}
.header-cta { display: none; }

/* Hero */
.hero { padding: 2.25rem 0 4rem; position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 3.5rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 { font-size: 2.6rem; line-height: 1.08; }
@media (min-width: 768px) { .hero h1 { font-size: 3.6rem; } }
.hero-image-wrap { position: relative; max-width: 420px; margin: 0 auto; aspect-ratio: 4/5; background: var(--plum-50); display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.hero-image-wrap::before {
  content: ""; position: absolute; inset: -16px; border: 1px solid rgba(212,175,55,0.35); pointer-events: none;
}
.hero-image-wrap img { width: 100%; height: 100%; border-radius: 2px; box-shadow: 0 40px 80px -30px rgba(43,16,59,0.4); object-fit: contain; }

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

/* Cards */
.card { border: 1px solid rgba(43,16,59,0.1); border-radius: 2px; background: rgba(255,255,255,0.6); padding: 1.75rem; }
.card-link { display: block; transition: border-color .3s ease, box-shadow .3s ease; }
.card-link:hover { border-color: rgba(212,175,55,0.4); box-shadow: 0 24px 60px -30px rgba(43,16,59,0.35); }
.card-link.simple:hover { border-color: rgba(15,91,67,0.4); }
.card-img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--plum-50); display: flex; align-items: center; justify-content: center; }
.card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; background: var(--plum-50); }
.card-link:hover .card-img img { transform: scale(1.04); }
.card-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(250,248,243,0.9); border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--plum); }
.card-body { padding: 1.75rem; }
.pill { display: inline-flex; align-items: center; gap: 0.4rem; border-radius: 999px; padding: 0.4rem 0.9rem; font-size: 0.74rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; border: 1px solid rgba(15,91,67,0.3); background: rgba(15,91,67,0.05); color: var(--emerald-dark); }

/* Product gallery */
.gallery-main { position: relative; aspect-ratio: 1/1; border-radius: 3px; overflow: hidden; background: var(--plum-50); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(43,16,59,0.1); touch-action: pan-y; user-select: none; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; transition: opacity .18s ease; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(43,16,59,0.55); color: var(--cream); border: none;
  cursor: pointer; transition: background-color .2s ease;
  z-index: 2;
}
.gallery-nav:hover { background: rgba(43,16,59,0.8); }
.gallery-nav-prev { left: 0.75rem; }
.gallery-nav-next { right: 0.75rem; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 0.75rem; }
.gallery-thumb { position: relative; aspect-ratio: 1/1; border-radius: 2px; overflow: hidden; background: var(--plum-50); border: 1px solid rgba(43,16,59,0.12); cursor: pointer; padding: 0; width: 100%; display: block; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb-label { display: block; text-align: center; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(43,16,59,0.5); margin-top: 0.3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid figure { margin: 0; background: var(--plum-50); border: 1px solid rgba(43,16,59,0.1); border-radius: 2px; overflow: hidden; }
.gallery-grid .ph-img-wrap { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.gallery-grid img { width: 100%; height: 100%; object-fit: contain; }
.gallery-grid figcaption { text-align: center; padding: 0.5rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(43,16,59,0.55); border-top: 1px solid rgba(43,16,59,0.08); }

/* About hero image */
.about-hero-img { position: relative; aspect-ratio: 1/1; max-width: 360px; margin: 2rem auto 0; background: var(--plum-50); border-radius: 3px; border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-hero-img img { width: 100%; height: 100%; object-fit: contain; }

/* Ingredient images */
.ingredient-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--plum-50); }
.ingredient-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-link:hover .ingredient-card-img img { transform: scale(1.04); }
.ingredient-hero-img { position: relative; aspect-ratio: 1/1; border-radius: 3px; overflow: hidden; background: var(--plum-50); border: 1px solid rgba(43,16,59,0.1); display: flex; align-items: center; justify-content: center; }
.ingredient-hero-img img { width: 100%; height: 100%; object-fit: contain; }

/* Map embed */
.map-embed { border: 0; width: 100%; height: 14rem; border-radius: 2px; filter: grayscale(8%); }

/* Trust strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; justify-content: center; padding: 1.5rem 0; border-top: 1px solid rgba(43,16,59,0.1); border-bottom: 1px solid rgba(43,16,59,0.1); }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(43,16,59,0.7); }

/* CTA banner */
.cta-banner { padding: 6rem 0; text-align: center; }
.cta-banner h2 { color: var(--cream); font-size: 2.1rem; max-width: 640px; margin: 1rem auto 0; }
@media (min-width: 768px) { .cta-banner h2 { font-size: 2.7rem; } }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.25rem; }

/* Breadcrumbs */
.breadcrumbs { display: flex; gap: 0.4rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(43,16,59,0.55); }
.breadcrumbs a:hover { color: var(--emerald); }
.breadcrumbs .current { color: rgba(43,16,59,0.85); }

/* Prose (article / ingredient body) */
.prose { max-width: 700px; }
.prose p { line-height: 1.85; margin: 0 0 1.25rem; color: #2c2c2c; }
.prose h2 { font-size: 1.5rem; margin: 2.25rem 0 1rem; }
.prose ul { list-style: none; margin: 0 0 1.25rem; }
.prose li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; line-height: 1.7; color: #2c2c2c; }
.prose li::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(43,16,59,0.1); padding: 1.25rem 0; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 0.98rem; color: var(--plum); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--emerald); transition: transform .2s ease; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { margin-top: 0.75rem; color: rgba(43,16,59,0.6); font-size: 0.9rem; }

/* Forms */
.field { margin-bottom: 1.25rem; }
.field label { display: block; margin-bottom: 0.4rem; font-size: 0.8rem; font-weight: 500; color: rgba(43,16,59,0.8); }
.field input, .field textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(43,16,59,0.2); border-radius: 6px;
  font-family: inherit; font-size: 0.9rem; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--emerald); }
.field.error input, .field.error textarea { border-color: #f87171; }
.field-error { color: #dc2626; font-size: 0.75rem; margin-top: 0.35rem; }
.form-note { font-size: 0.75rem; color: rgba(43,16,59,0.45); margin-top: 0.75rem; }

/* Footer */
.site-footer { background: var(--plum); color: var(--cream); padding: 4rem 0; }
.footer-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: var(--gold-light); font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.footer-grid ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a { font-size: 0.9rem; color: rgba(250,248,243,0.75); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-logo { display: inline-block; background: var(--cream); padding: 0.4rem 0.7rem; border-radius: 4px; }
.footer-logo img { height: 34px; width: auto; object-fit: contain; display: block; }
.footer-bottom { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(250,248,243,0.1); display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: rgba(250,248,243,0.45); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* Numbered list (how-to-use) */
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.steps li { display: flex; gap: 1rem; }
.step-num { flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid rgba(212,175,55,0.5); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.9rem; color: var(--gold-dark); }

/* Utility */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 2.5rem; }
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 0.75rem; }
