/* ============================================================
   Eagle Holdings Limited — shared stylesheet
   Palette
     Cream            #F7F1E3   page bg
     Warm ivory       #EFE7D2   section alt
     Tea-leaf green   #5A7D4E   primary accent
     Deep forest      #3E5E3A   hover / headings
     Brew honey       #B8894D   warm secondary accent
     Earth brown      #3E2C1C   body text
     Soft stone       #E6DCC8   borders / placeholders
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #3E2C1C;
  background: #F7F1E3;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Decorative tea-leaf baskets (side background, tea page only) ---------- */
.leaf-decor {
  position: absolute;
  top: 120px;
  width: 240px;
  height: auto;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  display: none;
}
.leaf-decor.left  { left: -60px; transform: rotate(-10deg); }
.leaf-decor.right { right: -60px; transform: scaleX(-1) rotate(-10deg); }
.leaf-decor.mid-left  { left: -80px; top: 1800px; opacity: 0.07; }
.leaf-decor.mid-right { right: -80px; top: 2000px; opacity: 0.07; transform: scaleX(-1); }
.leaf-decor.bottom-left { left: -70px; top: auto; bottom: 200px; opacity: 0.07; transform: rotate(15deg); }
@media (min-width: 1100px) { .leaf-decor { display: block; } }
header.site, section, footer.site { position: relative; z-index: 1; }

/* ---------- Layout ---------- */
.container { width: min(1120px, 92%); margin-inline: auto; }

/* ---------- Top nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 227, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E6DCC8;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: #3E2C1C;
}
.brand-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: auto; }
.brand-text { line-height: 1.1; }
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.74rem;
  color: #7A6247;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: none; gap: 1.6rem; font-size: 0.95rem; }
.nav-links a { color: #3E2C1C; opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: #3E5E3A; }
.nav-links a.active { font-weight: 600; }
.nav-cta {
  background: #5A7D4E;
  color: #F7F1E3;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: #3E5E3A; }
.menu-btn { background: none; border: none; font-size: 1.5rem; color: #3E2C1C; cursor: pointer; padding: 0.4rem; }
@media (min-width: 880px) {
  .nav-links { display: flex; }
  .menu-btn { display: none; }
}

/* ---------- Tea banner ---------- */
.tea-banner {
  background:
    radial-gradient(ellipse at 80% 40%, rgba(90,125,78,0.10), transparent 55%),
    #F7F1E3;
  border-bottom: 1px solid #E6DCC8;
  overflow: hidden;
}
.tea-banner-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 65vw;
  object-fit: cover;
}
.tea-banner-content {
  padding: 2rem 5% 2.5rem;
}
@media (min-width: 880px) {
  .tea-banner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .tea-banner-image {
    position: relative;
  }
  .tea-banner-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }
  .tea-banner-image::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 45%;
    background: linear-gradient(to right, transparent, #F7F1E3);
    pointer-events: none;
  }
  .tea-banner-content {
    padding: 4rem 3.5rem 4rem 1rem;
  }
}
.tea-hero-body {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(90, 125, 78, 0.12), transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(90, 125, 78, 0.10), transparent 55%),
    #F7F1E3;
  border-bottom: 1px solid #E6DCC8;
}
.hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (max-width: 879px) {
  .hero-image { order: -1; }
}
@media (min-width: 880px) {
  .hero { padding: 5rem 0 4rem; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; }
  .hero-image { order: 0; }
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3E5E3A;
  background: rgba(90, 125, 78, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
/* Eyebrow + inline certification logos */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.eyebrow-row .eyebrow { margin-bottom: 0; }
.cert-mini {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #3E5E3A;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: normal; color: #3E5E3A; font-weight: 600; }
.hero p.lead {
  font-size: 1.1rem;
  color: #5A4A38;
  margin: 0 0 1.8rem;
  max-width: 36rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #5A7D4E; color: #F7F1E3; }
.btn-primary:hover { background: #3E5E3A; }
.btn-outline { background: transparent; color: #3E2C1C; border-color: #5A7D4E; }
.btn-outline:hover { background: rgba(90, 125, 78, 0.08); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1eba57; }

/* ---------- Hero image / photo placeholder ---------- */
.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: repeating-linear-gradient(135deg, #E6DCC8 0 14px, #EDE4D0 14px 28px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(62, 44, 28, 0.25);
}
.placeholder-badge {
  position: absolute;
  inset: auto auto 1rem 1rem;
  background: rgba(62, 44, 28, 0.75);
  color: #F7F1E3;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.placeholder-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #7A6247;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.placeholder-center span {
  background: rgba(247, 241, 227, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* ---------- Home hero (cinematic banner + centred title) ---------- */
.home-hero {
  background: #F7F1E3;
  border-bottom: 1px solid #E6DCC8;
}
.home-hero-banner {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 241, 227, 0) 85%, rgba(247, 241, 227, 1) 100%),
    url('Landing%20Page/Wide%20Cinematic%20Banner.jpg') center/cover no-repeat;
}
@media (min-width: 880px) {
  .home-hero-banner { aspect-ratio: auto; height: 520px; }
}
.home-hero-body {
  text-align: center;
  padding: 0.5rem 1.5rem 4rem;
  max-width: 760px;
  margin: -3.5rem auto 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 880px) {
  .home-hero-body { margin-top: -6rem; }
}
.home-hero-body .eyebrow { margin-bottom: 1rem; }
.home-hero-body h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #3E2C1C;
  margin: 0 0 1.4rem;
  padding-bottom: 0.2rem;
}
.home-hero-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: #5A4A38;
  margin: 0 0 1.8rem;
}
.home-hero-tagline em { color: #3E5E3A; font-style: italic; }
.home-hero-body .hero-ctas { justify-content: center; }

/* ---------- About us section ---------- */
.about-us {
  background: #EFE7D2;
  border-bottom: 1px solid #E6DCC8;
  padding: 3.5rem 0 4rem;
}
.about-us .section-heading { margin-bottom: 1.6rem; }
.about-lead {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
  color: #5A4A38;
  line-height: 1.65;
}
.about-lead strong { color: #3E2C1C; font-weight: 600; }
.about-us .feature-row { margin-top: 2.4rem; }
@media (min-width: 760px) {
  .about-us .feature-row { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Certifications strip ---------- */
.certs {
  background: #F7F1E3;
  border-bottom: 1px solid #E6DCC8;
  padding: 2rem 0;
}
.certs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.certs-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7A6247;
  font-weight: 600;
}
.certs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: white;
  border: 1px solid #E6DCC8;
  border-radius: 14px;
  box-shadow: 0 6px 14px -10px rgba(62, 44, 28, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 320px;
}
.cert-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -12px rgba(62, 44, 28, 0.25);
}
.cert-badge .mark { flex-shrink: 0; }
.cert-badge .text { text-align: left; line-height: 1.3; }
.cert-badge .text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 0.98rem;
  color: #3E2C1C;
  font-weight: 600;
}
.cert-badge .text span {
  display: block;
  font-size: 0.78rem;
  color: #5A4A38;
  margin-top: 1px;
}

/* ---------- Story strip ---------- */
.story {
  padding: 3rem 0;
  background: #EFE7D2;
  border-bottom: 1px solid #E6DCC8;
}
.story-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 880px) { .story-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.story h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin: 0 0 1rem;
  color: #3E2C1C;
}
.story p { color: #5A4A38; font-size: 1.02rem; }
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature {
  background: #F7F1E3;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #E6DCC8;
}
.feature strong {
  display: block;
  font-family: 'Fraunces', serif;
  color: #3E5E3A;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.feature span { font-size: 0.9rem; color: #5A4A38; line-height: 1.5; }
@media (min-width: 760px) {
  .feature-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 759px) {
  .feature-row .feature:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    margin: 0 auto;
  }
}

/* ---------- Section headings ---------- */
.section-heading { max-width: 46rem; margin: 0 auto 2.5rem; text-align: center; }
.section-heading h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin: 0 0 0.6rem;
  color: #3E2C1C;
}
.section-heading p { color: #5A4A38; margin: 0; }

/* ---------- Brand tiles (tea page top-level, clickable into modal) ---------- */
.brand-tiles-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.brand-tile {
  background: white;
  border: 1px solid #E6DCC8;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.brand-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px -22px rgba(62, 44, 28, 0.35);
  border-color: #5A7D4E;
}
.brand-tile:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(90, 125, 78, 0.3);
  border-color: #5A7D4E;
}
.brand-tile-image {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, #EFE7D2 0 12px, #EDE4D0 12px 24px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E6DCC8;
}
.brand-tile-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.brand-tile-image .placeholder-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A08965;
  text-align: center;
  padding: 1rem;
}
.brand-tile-image .placeholder-label span {
  background: rgba(247, 241, 227, 0.85);
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
}
.brand-tile-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.brand-tile-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3E5E3A;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.brand-tile-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: #3E2C1C;
  line-height: 1.2;
}
.brand-tile-tagline {
  color: #5A4A38;
  font-size: 0.92rem;
  margin: 0 0 1rem;
  flex: 1;
}
.brand-tile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid #E6DCC8;
  font-size: 0.85rem;
}
.brand-tile-count { color: #7A6247; }
.brand-tile-open {
  color: #3E5E3A;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------- Brand section (legacy — kept for reference, not in new layout) ---------- */
.brands { padding: 4rem 0 3rem; }

/* ---------- Product grid (inside brand detail modal and on other pages) ---------- */
.product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E6DCC8;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -20px rgba(62, 44, 28, 0.3);
}
.card-image {
  aspect-ratio: 1 / 1;
  background: repeating-linear-gradient(45deg, #EFE7D2 0 10px, #EDE4D0 10px 20px);
  position: relative;
  border-bottom: 1px solid #E6DCC8;
}
.card-image .tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: rgba(62, 44, 28, 0.82);
  color: #F7F1E3;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.card-image .tag.green { background: rgba(90, 125, 78, 0.9); }
.card-image .tag.honey { background: rgba(184, 137, 77, 0.92); }
.card-image .placeholder-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A08965;
  text-align: center;
  padding: 1rem;
}
.card-image .placeholder-label span {
  background: rgba(247, 241, 227, 0.8);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
}
.card-body {
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  color: #3E2C1C;
}
.card-body .size {
  font-size: 0.85rem;
  color: #3E5E3A;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.card-body p {
  color: #5A4A38;
  font-size: 0.92rem;
  margin: 0 0 1rem;
}
.card-body ul.specs {
  margin: 0 0 0.6rem;
  padding-left: 1.1rem;
  color: #5A4A38;
  font-size: 0.88rem;
}
.card-body ul.specs li { margin-bottom: 0.15rem; }

/* ---------- Category tile grid (landing page) ---------- */
.cat-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.cat-tile {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #E6DCC8;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -22px rgba(62, 44, 28, 0.35);
  border-color: #5A7D4E;
}
.cat-tile-image {
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(45deg, #EFE7D2 0 12px, #EDE4D0 12px 24px);
  position: relative;
  border-bottom: 1px solid #E6DCC8;
}
/* When the image container actually holds a photo, drop the woven placeholder
   pattern and use white so any letterboxing from object-fit:contain blends
   with the photo's own white studio background. */
.brand-tile-image:has(img),
.card-image:has(img),
.cat-tile-image:has(img) {
  background: #FFFFFF;
}
.cat-tile-body { padding: 1.3rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.cat-tile-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: #3E2C1C;
}
.cat-tile-body p { color: #5A4A38; font-size: 0.95rem; margin: 0 0 1rem; flex: 1; }
.cat-tile-link {
  color: #3E5E3A;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, #5A7D4E 0%, #3E5E3A 100%);
  color: #F7F1E3;
  padding: 3rem 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  margin: 0 0 0.6rem;
}
.cta-strip p { margin: 0 0 1.8rem; opacity: 0.92; max-width: 40rem; margin-inline: auto; }
.cta-strip .btn-primary { background: #F7F1E3; color: #3E5E3A; }
.cta-strip .btn-primary:hover { background: white; }
.cta-strip .btn-whatsapp { background: #25D366; color: white; }

/* ---------- Footer ---------- */
footer.site {
  background: #3E2C1C;
  color: #E6DCC8;
  padding: 3rem 0 1.5rem;
}
.foot-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.foot-logo img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
.foot-certs { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; }
.foot-certs .cert-badge {
  background: rgba(247, 241, 227, 0.08);
  border-color: rgba(247, 241, 227, 0.15);
  box-shadow: none;
  padding: 0.6rem 0.9rem;
  max-width: none;
}
.foot-certs .cert-badge .text strong { color: #F7F1E3; font-size: 0.88rem; }
.foot-certs .cert-badge .text span { color: #C9BA9D; font-size: 0.72rem; }
.foot-certs .cert-badge:hover { transform: none; }
.foot-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-bottom: 2rem; }
@media (min-width: 700px) {
  .foot-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .foot-grid > div:nth-child(n+2) { padding-top: 1.3rem; }
}
footer h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: #F7F1E3;
  margin: 0 0 0.8rem;
}
footer p, footer a { font-size: 0.92rem; color: #C9BA9D; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.5rem; }
footer a:hover { color: #F7F1E3; }
.foot-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #5A4A38;
  font-size: 0.82rem;
  color: #8E7A5E;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Utility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.is-hidden { display: none !important; }
.text-center { text-align: center; }

/* ---------- Modal base (enquiry + brand detail) ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 14, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-backdrop.is-open { display: flex; opacity: 1; }
.modal {
  background: #F7F1E3;
  border-radius: 18px;
  max-width: 560px;
  width: 100%;
  margin: 2rem auto;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(30, 22, 14, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}
.modal-backdrop.is-open .modal { transform: translateY(0); opacity: 1; }
.modal-large { max-width: 900px; }
.modal-header {
  background: linear-gradient(135deg, #5A7D4E 0%, #3E5E3A 100%);
  color: #F7F1E3;
  padding: 1.6rem 1.8rem 1.8rem;
  position: relative;
}
.modal-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 0.3rem;
}
.modal-header p { margin: 0; font-size: 0.92rem; opacity: 0.92; }
.modal-header .eyebrow {
  background: rgba(247, 241, 227, 0.2);
  color: #F7F1E3;
  margin-bottom: 0.6rem;
}
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(247, 241, 227, 0.15);
  border: none;
  color: #F7F1E3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  z-index: 2;
}
.modal-close:hover { background: rgba(247, 241, 227, 0.3); }
.modal-body { padding: 1.8rem; }
.modal-body .product-grid { gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* ---------- Enquiry form ---------- */
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 560px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3E2C1C;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.field label .req { color: #8B2A18; margin-left: 2px; }
.field label .opt { color: #A08965; font-weight: 500; font-size: 0.78rem; margin-left: 4px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #E6DCC8;
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 0.95rem;
  color: #3E2C1C;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #5A7D4E;
  box-shadow: 0 0 0 3px rgba(90, 125, 78, 0.15);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #E6DCC8;
}
.form-actions .btn { padding: 0.8rem 1.6rem; }
.form-note { flex: 1; min-width: 200px; font-size: 0.82rem; color: #7A6247; }
.modal-alt {
  padding: 1rem 1.8rem 1.6rem;
  background: #EFE7D2;
  font-size: 0.88rem;
  color: #5A4A38;
  text-align: center;
  border-top: 1px solid #E6DCC8;
}
.modal-alt a { color: #3E5E3A; font-weight: 600; border-bottom: 1px solid rgba(62, 94, 58, 0.3); }
.modal-alt a:hover { border-bottom-color: #3E5E3A; }
.success-state { padding: 2.5rem 1.8rem; text-align: center; }
.success-state .checkmark {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #5A7D4E;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2rem;
}
.success-state h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #3E2C1C;
  margin: 0 0 0.6rem;
}
.success-state p { color: #5A4A38; margin: 0; }

/* Lock body scroll when a modal is open */
body.modal-open { overflow: hidden; }

/* ---------- Contact page specifics ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }
.info-block {
  background: white;
  border: 1px solid #E6DCC8;
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.2rem;
}
.info-block h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #3E2C1C;
  margin: 0 0 0.6rem;
}
.info-block p { margin: 0 0 0.4rem; color: #5A4A38; font-size: 0.95rem; }
.info-block a { color: #3E5E3A; font-weight: 500; border-bottom: 1px solid rgba(62, 94, 58, 0.25); }
.info-block a:hover { border-bottom-color: #3E5E3A; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed #E6DCC8;
  color: #5A4A38;
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: #3E2C1C; font-weight: 500; }
.hours-list li.closed span:last-child { color: #A08965; }

.embedded-form {
  background: white;
  border: 1px solid #E6DCC8;
  border-radius: 16px;
  padding: 1.8rem;
}
.embedded-form h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #3E2C1C;
  margin: 0 0 0.3rem;
}
.embedded-form .intro { margin: 0 0 1.2rem; color: #5A4A38; font-size: 0.95rem; }

/* ============================================================
   Contact page — Option B layout
   (wide banner + 4 quick-contact cards + centred form + info row)
   ============================================================ */
.contact-banner {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: #EFE7D2;
  border-bottom: 1px solid #E6DCC8;
}
@media (min-width: 880px) { .contact-banner { height: 620px; } }
.contact-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.contact-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(247,241,227,0.7) 100%);
  pointer-events: none;
}
.contact-banner-text {
  position: absolute; left: 0; right: 0; bottom: 13rem;
  z-index: 2; text-align: center; padding: 0 1.5rem;
}
@media (min-width: 720px) {
  .contact-banner-text { bottom: 13rem; }
}
.contact-banner-text h1 {
  display: inline-block;
  background: transparent;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  max-width: 100%;
}
.contact-banner-text h1 em { font-style: normal; color: #FFFFFF; font-weight: 600; }

.contact-cards {
  position: relative; z-index: 3;
  margin: -11.5rem auto 0;
  max-width: 1100px;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .contact-cards { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
}
/* Mobile: flow image naturally so full picture is visible */
@media (max-width: 719px) {
  .contact-banner {
    height: auto;
    overflow: visible;
  }
  .contact-banner > img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
    display: block;
  }
  .contact-banner::after {
    display: none;
  }
  .contact-banner-text {
    position: static;
    background: #F7F1E3;
    padding: 1.1rem 1.5rem 1.3rem;
    text-align: center;
    transform: none;
    top: auto; bottom: auto;
  }
  .contact-banner-text h1 {
    color: #3E2C1C;
    text-shadow: none;
    font-size: 1.9rem;
  }
  .contact-cards {
    margin: 1.5rem auto 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .contact-card {
    padding: 1rem 0.8rem;
    border-radius: 12px;
  }
  .contact-card .icon {
    width: 40px; height: 40px;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
  .contact-card h3 { font-size: 0.95rem; }
  .contact-card p { font-size: 0.8rem; }
  .contact-card .link { font-size: 0.78rem; margin-top: 0.4rem; }
}
.contact-card {
  background: #FFFFFF;
  border: 1px solid #E6DCC8;
  border-radius: 16px;
  padding: 1.5rem 1.2rem 1.4rem;
  text-align: center;
  box-shadow: 0 16px 36px -20px rgba(62, 44, 28, 0.32);
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: #3E2C1C;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(62, 44, 28, 0.38);
  border-color: #5A7D4E;
}
.contact-card .icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(90, 125, 78, 0.12);
  color: #3E5E3A;
  display: grid; place-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
}
.contact-card.whatsapp .icon { background: rgba(37,211,102,0.15); color: #1eba57; }
.contact-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #3E2C1C;
  margin: 0 0 0.2rem;
}
.contact-card p { margin: 0; color: #5A4A38; font-size: 0.9rem; }
.contact-card .link {
  margin-top: 0.7rem;
  color: #3E5E3A;
  font-weight: 600;
  font-size: 0.85rem;
}

.contact-form-section {
  padding: 4rem 0 4rem;
  background: #F7F1E3;
}
.contact-form-section .container { max-width: 720px; }

.contact-info-section {
  padding: 3rem 0 4rem;
  background: #EFE7D2;
  border-top: 1px solid #E6DCC8;
}
.contact-info-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .contact-info-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.contact-info-card {
  background: #F7F1E3;
  border: 1px solid #E6DCC8;
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.5rem;
}
.contact-info-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #3E5E3A;
  margin: 0 0 0.55rem;
}
.contact-info-card p,
.contact-info-card .hours-list { margin: 0; color: #5A4A38; font-size: 0.95rem; }
.contact-info-card a { color: #3E5E3A; font-weight: 500; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             