/* ===== PREP ESSENTIALS — Brand Stylesheet ===== */
/* Colours: Espresso #3A2418, Cream #F7F2EC, Mauve #A68B92, Taupe #C8BBB0, Charcoal #2D2D2D */
/* Fonts: Playfair Display (headings), Montserrat (body) */

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

:root {
  --espresso: #3A2418;
  --cream: #F7F2EC;
  --mauve: #A68B92;
  --taupe: #C8BBB0;
  --charcoal: #2D2D2D;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(58, 36, 24, 0.08);
  --shadow-lg: 0 8px 32px rgba(58, 36, 24, 0.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--mauve);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--espresso);
  line-height: 1.3;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }

p {
  margin-bottom: 1em;
  color: var(--charcoal);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--espresso);
  color: var(--white);
}

.btn-primary:hover {
  background: #2a1a10;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-mauve {
  background: var(--mauve);
  color: var(--white);
}

.btn-mauve:hover {
  background: #8f7580;
  color: var(--white);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(58, 36, 24, 0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  gap: 4px;
  padding: 4px 0;
}

.logo-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.logo-divider {
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8BBB0, transparent);
  margin: 2px 0;
}

.logo-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve);
}

@media (max-width: 768px) {
  .logo-name {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
  }
  .logo-tagline {
    font-size: 0.48rem;
  }
  .logo-divider {
    width: 40%;
  }
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mauve);
  transition: width var(--transition);
}

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

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

/* Mobile menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, #f0e8df 100%);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 139, 146, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--mauve);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 24px;
}

.section-alt {
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.feature-item {
  text-align: center;
  padding: 32px 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-item h3 {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--espresso);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.75;
  margin: 0;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-image {
  height: 220px;
  background: linear-gradient(135deg, var(--cream) 0%, #ece4db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--taupe);
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.product-body .product-includes {
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-body .btn {
  width: 100%;
  font-size: 0.75rem;
  padding: 12px 24px;
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(200, 187, 176, 0.3);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.category-card h3 {
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 20px;
}

/* ===== PRODUCT LIST (SHOP PAGE) ===== */
.product-list {
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-list-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 187, 176, 0.3);
}

.product-list-item:last-child {
  border-bottom: none;
}

.product-list-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.product-list-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.product-list-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.product-list-info p {
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.about-signoff {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--mauve);
  margin-top: 32px;
}

/* ===== FAQ PAGE ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(200, 187, 176, 0.3);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--espresso);
  list-style: none;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--mauve);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin: 0 0 0.8em;
  line-height: 1.7;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  font-size: 1.05rem;
  margin-bottom: 2em;
}

.contact-method {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-method h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--mauve);
}

.contact-method a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 60px 24px;
}

.newsletter h2 {
  color: var(--cream);
  margin-bottom: 8px;
}

.newsletter p {
  color: var(--taupe);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(200, 187, 176, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: var(--taupe);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--mauve);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: #8f7580;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--taupe);
  padding: 60px 24px 32px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--taupe);
  font-style: italic;
}

.footer-links h4 {
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--taupe);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-social a {
  display: block;
  color: var(--taupe);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 187, 176, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(200, 187, 176, 0.5);
}

.footer-bottom a {
  color: rgba(200, 187, 176, 0.5);
}

.footer-bottom a:hover {
  color: var(--taupe);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  text-align: center;
  padding: 80px 24px 40px;
  background: linear-gradient(135deg, var(--cream) 0%, #f0e8df 100%);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto;
}


.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-item {
    padding: 20px 8px;
  }

  .hero {
    padding: 60px 24px 50px;
  }

  .section {
    padding: 50px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .feature-strip {
    grid-template-columns: 1fr;
  }
}
/* updated */
