/* ============================================
   Humming Honeysuckle — Shared Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

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

:root {
  --brand:         #b85c38;
  --brand-dark:    #8b3f22;
  --brand-light:   #fdf0eb;
  --gold:          #c9a96e;
  --text-primary:  #1a1008;
  --text-secondary:#6b5045;
  --border:        rgba(184, 92, 56, 0.18);
  --bg:            #fffaf7;
  --bg-secondary:  #fdf6f2;
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(184, 92, 56, 0.07);
  --shadow-md:     0 4px 20px rgba(184, 92, 56, 0.11);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --max-width:     1200px;
  --nav-height:    72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  font-family: system-ui, sans-serif;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 0.5px;
  background: var(--brand);
  transition: width 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text-primary);
  padding: 4px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  z-index: 199;
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.mobile-nav a:hover { color: var(--brand); }


/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-secondary);
  border-top: 0.5px solid var(--border);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-brand .logo-main { font-size: 1.1rem; margin-bottom: 0.5rem; display: block; }
.footer-brand .logo-tagline { font-size: 0.7rem; display: block; margin-bottom: 1rem; }

.footer-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-left: 2px solid var(--brand);
  padding-left: 0.8rem;
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--brand); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.footer-social a {
  width: 34px; height: 34px;
  border: 0.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
}


/* ============================================
   SHARED COMPONENTS
   ============================================ */

/* Section wrapper */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-sm { padding: 3rem 2rem; }

/* Section label */
.section-label {
  font-family: system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 0.5px;
  background: var(--brand);
  opacity: 0.4;
}

/* Headings */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--brand); }

.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 640px;
}

/* Pull quote */
.pullquote {
  border-left: 2.5px solid var(--brand);
  padding: 0.9rem 1.4rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  background: var(--bg-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-primary);
}

/* Ornament divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brand);
  font-size: 16px;
  padding: 1rem 0;
  opacity: 0.6;
}

.ornament span { height: 1px; width: 50px; background: var(--brand); display: block; }

/* Stitch divider */
.stitch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 1.5rem 0;
  color: var(--brand);
  opacity: 0.45;
}

.stitch-dot  { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.stitch-line { width: 22px; height: 1px; background: currentColor; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 30px;
  font-family: system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.22s;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}

.btn-dark {
  background: var(--text-primary);
  color: var(--white);
  border: 1px solid var(--text-primary);
}

.btn-dark:hover {
  background: #000;
}

/* Badge / tag */
.badge {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: var(--brand-light);
  color: var(--brand);
  padding: 3px 9px;
  border-radius: 2px;
}

a.badge {
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

a.badge:hover {
  background: var(--brand);
  color: #fff;
}

/* Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #f5e8e0 0%, #ecddd5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brand);
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 1px dashed rgba(184,92,56,0.3);
}

.img-placeholder svg {
  width: 36px; height: 36px;
  opacity: 0.5;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--bg-secondary);
  border-bottom: 0.5px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}

.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }

.page-hero .section-label { justify-content: center; }
.page-hero .section-label::after { display: none; }

.page-hero .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero .section-body {
  margin: 0 auto;
  text-align: center;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

/* Product card */
.product-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.product-card-body {
  padding: 1.2rem 1.4rem 1.5rem;
}

.product-card-label {
  font-family: system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-card-desc {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Values row */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--brand);
}

.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.value-text {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Category card */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
}

.cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cat-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cat-card-body {
  padding: 1.5rem 1rem;
}

.cat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.cat-card-desc {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* CTA full-width band */
.cta-band {
  background: var(--bg-secondary);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band .section-title {
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-band .section-body {
  margin: 0 auto 1.8rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--brand); }


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

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

@media (max-width: 600px) {
  :root { --nav-height: 64px; }

  .section { padding: 3rem 1.2rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
  }
}
