/* ==========================================================================
   Coral — Landing Page Styles
   Brand palette sourced from the official Coral brand theme sheet.
   ========================================================================== */

:root {
  --primary: #6d073c;
  --primary-2: #722343;
  --secondary: #a8476e;
  --pink: #ffbcd1;
  --cream: #f8f6f2;
  --ivory: #fffced;
  --blush: #fbdce2;
  --pale-pink: #ffeaec;
  --ink: #0f0f0f;
  --text: #2b1420;
  --text-light: #7a5566;
  --white: #ffffff;
  --border: #f1dde3;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius: 18px;
  --shadow-soft: 0 14px 40px rgba(109, 7, 60, 0.12);
  --shadow-strong: 0 20px 50px rgba(109, 7, 60, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--secondary);
}

img,
svg {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--white);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* ==========================================================================
   Scroll reveal (IntersectionObserver driven)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > * {
  animation: staggerIn 0.7s var(--ease) both;
}

.reveal-stagger.is-visible > *:nth-child(1) { animation-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { animation-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { animation-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { animation-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { animation-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { animation-delay: 0.55s; }

@keyframes staggerIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: var(--shadow-soft);
  background-size: 160% 160%;
  background-position: 0% 50%;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--white);
  box-shadow: var(--shadow-strong);
  background-position: 100% 50%;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 237, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(109, 7, 60, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding 0.3s var(--ease);
}

.site-header.is-scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 40px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.site-header.is-scrolled .brand-logo {
  height: 32px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  color: var(--text);
  font-weight: 500;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.25s var(--ease);
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--secondary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }

  .primary-nav.is-open {
    max-height: 400px;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
  }

  .primary-nav li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav li:last-child {
    border-bottom: none;
  }

  .nav-cta {
    display: inline-block;
    margin-top: 8px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ==========================================================================
   Marquee strip
   ========================================================================== */

.marquee {
  background: var(--primary);
  color: var(--ivory);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 70px 0 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 130%;
  background: radial-gradient(60% 60% at 75% 20%, var(--blush) 0%, transparent 70%),
    radial-gradient(50% 50% at 10% 80%, var(--pale-pink) 0%, transparent 70%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--secondary);
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  animation: float 6s ease-in-out infinite;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-blob {
  position: absolute;
  width: 90%;
  height: 90%;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--pink), var(--secondary));
  top: 8%;
  left: 8%;
  z-index: -1;
  opacity: 0.5;
  filter: blur(2px);
}

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite 0.4s;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1;
}

.hero-badge span {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ==========================================================================
   Section shared styles
   ========================================================================== */

section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-sub {
  color: var(--text-light);
}

/* About */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  z-index: -1;
}

.about-copy .section-heading {
  text-align: left;
  margin: 0 0 20px;
}

.about-text {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.88rem;
  max-width: 16ch;
  margin-top: 6px;
}

/* Brand Values */
.values {
  background: var(--pale-pink);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  margin-bottom: 18px;
  transition: transform 0.35s var(--ease);
}

.value-card:hover .value-icon {
  transform: rotate(-8deg) scale(1.08);
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin: 0;
}

/* Product Showcase — bento grid */
.showcase {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 20px;
}

.showcase-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.showcase-card.span-2 {
  grid-column: span 2;
}

.showcase-card.row-2 {
  grid-row: span 2;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.showcase-card:hover img {
  transform: scale(1.08);
}

.showcase-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(15, 5, 10, 0.72));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

/* Why Choose Us */
.why-us {
  background: var(--blush);
}

.why-us-inner {
  max-width: 820px;
  margin: 0 auto;
}

.why-us-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(109, 7, 60, 0.14);
  transition: transform 0.3s var(--ease);
}

.why-us-list li:hover {
  transform: translateX(6px);
}

.why-us-list li:last-child {
  border-bottom: none;
}

.check {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.why-us-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.why-us-list p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-details ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--text-light);
}

.contact-icon {
  color: var(--primary);
  flex: 0 0 auto;
  margin-top: 2px;
}

.contact-form {
  background: var(--pale-pink);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.form-row input,
.form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(109, 7, 60, 0.12);
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: var(--primary-2);
}

.form-error {
  color: var(--primary-2);
  font-size: 0.82rem;
  min-height: 1.2em;
  margin-top: 4px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--primary);
  min-height: 1.2em;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--primary);
  color: var(--ivory);
  padding: 52px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
  height: 34px;
  width: auto;
}

.footer-brand p {
  margin: 8px 0 0;
  color: rgba(255, 252, 237, 0.75);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 252, 237, 0.85);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pink);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: var(--ivory);
  display: inline-flex;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--pink);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 252, 237, 0.6);
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform 0.25s var(--ease);
}

.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: scale(1.08);
  color: var(--white);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ==========================================================================
   Responsive breakpoints (NFR-1)
   ========================================================================== */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-14px) translateX(-50%); }
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-copy .section-heading {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .showcase-card.span-2 {
    grid-column: span 2;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 600px) {
  section {
    padding: 64px 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .showcase-card.span-2,
  .showcase-card.row-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .about-stats {
    gap: 28px;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   Multi-page additions: page hero, CTA banner, about/wholesale/catalog
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero {
  padding: 64px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush), var(--ivory));
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.page-hero .section-sub {
  max-width: 60ch;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 64px 0;
}

.cta-banner-inner {
  text-align: center;
  color: var(--ivory);
}

.cta-banner-inner h2 {
  color: var(--ivory);
  margin-bottom: 10px;
}

.cta-banner-inner p {
  color: rgba(255, 252, 237, 0.85);
  margin-bottom: 24px;
}

.cta-banner-inner .btn-primary {
  background: var(--ivory);
  color: var(--primary);
}

.cta-banner-inner .btn-primary:hover,
.cta-banner-inner .btn-primary:focus-visible {
  color: var(--primary);
  background: var(--white);
}

/* About page: mission/vision + facility */
.mission-vision {
  background: var(--white);
  padding-top: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-card {
  background: var(--pale-pink);
  border-radius: var(--radius);
  padding: 32px;
}

.mission-card h3 {
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--text-light);
  margin: 0;
}

.draft-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

.facility {
  background: var(--blush);
}

.facility-list {
  max-width: 700px;
  margin: 0 auto;
}

.facility-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  color: var(--text);
  border-bottom: 1px solid rgba(109, 7, 60, 0.12);
}

.facility-list li:last-child {
  border-bottom: none;
}

.facility-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Wholesale page */
.wholesale-section {
  background: var(--white);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wholesale-block {
  background: var(--pale-pink);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.wholesale-block h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.wholesale-block p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* Catalog page */
.catalog-section {
  background: var(--white);
  padding-top: 40px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.filter-pill:hover,
.filter-pill:focus-visible {
  border-color: var(--secondary);
  color: var(--secondary);
}

.filter-pill.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.catalog-search input {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  min-width: 220px;
  background: var(--white);
  color: var(--text);
}

.catalog-search input:focus {
  border-color: var(--primary);
  outline: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.catalog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.catalog-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.catalog-card:hover .catalog-card-media img {
  transform: scale(1.06);
}

.catalog-card-body {
  padding: 20px;
}

.catalog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary);
  background: var(--pale-pink);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.catalog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.catalog-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.featured-grid {
  grid-auto-rows: 260px;
}

.catalog-empty,
.catalog-error {
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
}

/* Contact page: optional label + honeypot + map */
.optional {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.82em;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.map-note {
  background: var(--pale-pink);
  color: var(--text-light);
  font-size: 0.8rem;
  margin: 0;
  padding: 10px 16px;
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

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

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-search input {
    width: 100%;
  }
}
