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

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

:root {
  --red:      #be2b0b;
  --red-dk:   #9a2209;
  --white:    #ffffff;
  --cream:    #faf7f2;
  --border:   #e8e0d8;
  --text:     #2a1a0e;
  --muted:    #6b5040;
  --font-d:   'Playfair Display', Georgia, serif;
  --font-b:   'Inter', system-ui, sans-serif;
  --max:      1200px;
  --r:        6px;
  --t:        0.22s ease;
}


/* Inner page background path overrides */
body.inner-page .hero,
body.inner-page .how-section,
body.inner-page .about-band,
body.inner-page .page-hero,
body.inner-page .blog-img {
  background-image: url("../assets/background1.png");
  background-repeat: repeat;
  background-size: auto;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: #ffffff; color: #2a1a0e; font-size: 16px; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ANNOUNCEMENT */
.ann { background: #be2b0b; color: #fff; text-align: center; font-size: 0.78rem; letter-spacing: 0.06em; padding: 9px 20px; font-weight: 500; }
.ann a { color: #fff; text-decoration: underline; opacity: 0.9; }

/* HEADER */
header { background: #ffffff; border-bottom: 2px solid #be2b0b; position: sticky; top: 0; z-index: 200; }
.hdr { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 20px; }
.logo img { height: 64px; width: auto; object-fit: contain; }
.logo-txt { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: #be2b0b; }

nav { display: flex; align-items: center; }
nav > a, .dd-btn { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 12px; color: #be2b0b; border: none; background: none; cursor: pointer; font-family: var(--font-b); display: flex; align-items: center; gap: 3px; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: text-decoration-color var(--t); }
nav > a:hover, .dd-btn:hover { text-decoration-color: #be2b0b; }

.dd { position: relative; }
.dd-btn::after { content: '▾'; font-size: 0.6em; }
.dd-menu { display: none; position: absolute; top: calc(100% + 2px); left: 0; background: #ffffff; border: 1px solid #e8e0d8; border-top: 2px solid #be2b0b; border-radius: 0 0 6px 6px; padding: 8px 0; min-width: 320px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); z-index: 300; }
.dd:hover .dd-menu { display: block; }
.dd-menu a { display: block; padding: 10px 18px; font-size: 0.82rem; color: #be2b0b; font-weight: 500; transition: background var(--t); }
.dd-menu a:hover { background: #faf7f2; }

.hdr-icons { display: flex; gap: 6px; }
.hdr-icons a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; color: #be2b0b; transition: background var(--t); }
.hdr-icons a:hover { background: #faf7f2; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: #be2b0b; border-radius: 2px; }
.mob-nav { display: none; flex-direction: column; background: #ffffff; border-top: 1px solid #e8e0d8; padding: 12px 24px 20px; }
.mob-nav a { padding: 10px 0; font-size: 0.88rem; font-weight: 600; border-bottom: 1px solid #e8e0d8; color: #be2b0b; letter-spacing: 0.05em; text-transform: uppercase; }
.mob-nav a:last-child { border-bottom: none; }
.mob-nav.open { display: flex; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 0.86rem; letter-spacing: 0.05em; transition: all var(--t); cursor: pointer; border: 2px solid transparent; text-transform: uppercase; font-family: var(--font-b); }
.btn-primary { background: #be2b0b; color: #fff; border-color: #be2b0b; }
.btn-primary:hover { background: #9a2209; border-color: #9a2209; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: #be2b0b; color: #be2b0b; }
.btn-outline:hover { background: #be2b0b; color: #fff; }

/* HERO — light blue background image */
.hero { position: relative; overflow: hidden; background-color: #c8d8e4; background-image: url("assets/background1.png"); background-repeat: repeat; background-size: auto; color: #be2b0b; padding: 80px 24px; text-align: center; min-height: 380px; display: flex; align-items: center; justify-content: center; }
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hero p { font-size: 1rem; color: #be2b0b; margin-bottom: 10px; line-height: 1.75; }
.hero h2 { font-family: var(--font-d); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #be2b0b; margin-bottom: 12px; line-height: 1.35; }
.hero .mission { font-weight: 700; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(190,43,11,0.25); }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* BADGES */
.badges-strip { background: #ffffff; padding: 28px 24px; border-bottom: 1px solid #e8e0d8; }
.badges-strip img { max-width: 680px; margin: 0 auto; width: 100%; }

/* PACKING */
.packing-section { background: #faf7f2; padding: 64px 24px; }
.packing-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.packing-img { border-radius: 6px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.packing-copy h2 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 700; color: #be2b0b; margin-bottom: 16px; }
.packing-copy p { color: #6b5040; margin-bottom: 12px; font-size: 0.95rem; line-height: 1.8; }
.packing-copy ul { margin: 12px 0 20px 0; }
.packing-copy ul li { font-size: 0.92rem; color: #6b5040; padding: 6px 0; border-bottom: 1px solid #e8e0d8; display: flex; gap: 10px; }
.packing-copy ul li::before { content: '✓'; color: #be2b0b; font-weight: 700; flex-shrink: 0; }

/* SECTIONS */
section { padding: 64px 24px; }
.inner { max-width: 1200px; margin: 0 auto; }
.sec-hdr { text-align: center; margin-bottom: 44px; }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; color: #be2b0b; }
.sec-title { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: #be2b0b; line-height: 1.2; }
.sec-title em { font-style: italic; }
.sec-sub { margin-top: 10px; color: #6b5040; font-size: 0.95rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.divider { width: 40px; height: 2px; background: #be2b0b; margin: 12px auto 0; }

/* PRODUCTS */
.products-section { background: #ffffff; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.p-card { border-radius: 6px; overflow: hidden; border: 1px solid #e8e0d8; background: #ffffff; transition: transform var(--t), box-shadow var(--t); }
.p-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(190,43,11,0.1); }
.p-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #faf7f2; }
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.p-card:hover .p-img img { transform: scale(1.04); }
.sold-tag { position: absolute; top: 10px; right: 10px; background: rgba(190,43,11,0.85); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.p-info { padding: 14px 16px 16px; }
.p-info h3 { font-family: var(--font-d); font-size: 0.9rem; font-weight: 600; color: #be2b0b; margin-bottom: 4px; line-height: 1.3; }
.p-info p { font-size: 0.76rem; color: #6b5040; margin-bottom: 10px; }
.p-foot { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 700; color: #be2b0b; font-size: 0.95rem; }
.cs-tag { font-size: 0.7rem; color: #6b5040; font-style: italic; }

/* STEPS — light blue bg */
.how-section { background-color: #c8d8e4; background-image: url("assets/background1.png"); background-repeat: repeat; background-size: auto; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.step-card { background: #ffffff; border-radius: 6px; overflow: hidden; border: 1px solid #e8e0d8; }
.step-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.step-body { padding: 20px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #be2b0b; color: #fff; font-weight: 700; font-size: 0.82rem; border-radius: 50%; margin-bottom: 10px; }
.step-body h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: #be2b0b; margin-bottom: 6px; }
.step-body p { font-size: 0.86rem; color: #6b5040; line-height: 1.6; }

/* ABOUT BAND — light blue bg */
.about-band { background-color: #c8d8e4; background-image: url("assets/background1.png"); background-repeat: repeat; background-size: auto; text-align: center; padding: 64px 24px; }
.about-band .sec-title { color: #be2b0b; }
.about-text { max-width: 620px; margin: 0 auto 28px; font-size: 0.97rem; color: #be2b0b; line-height: 1.8; }

/* RECIPE CARDS */
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.recipe-card { background: #ffffff; border-radius: 6px; overflow: hidden; border: 1px solid #e8e0d8; transition: transform var(--t), box-shadow var(--t); }
.recipe-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.recipe-img { aspect-ratio: 16/9; overflow: hidden; background: #faf7f2; }
.recipe-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.recipe-card:hover .recipe-img img { transform: scale(1.04); }
.recipe-body { padding: 18px; }
.recipe-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #be2b0b; margin-bottom: 5px; }
.recipe-body h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: #be2b0b; margin-bottom: 6px; line-height: 1.3; }
.recipe-body p { font-size: 0.83rem; color: #6b5040; margin-bottom: 12px; }
.recipe-meta { display: flex; gap: 14px; font-size: 0.74rem; color: #6b5040; font-weight: 500; }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.blog-card { background: #ffffff; border-radius: 6px; overflow: hidden; border: 1px solid #e8e0d8; transition: transform var(--t), box-shadow var(--t); }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.blog-img { aspect-ratio: 16/9; background-color: #c8d8e4; background-image: url("assets/background1.png"); background-repeat: repeat; background-size: auto; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 18px; }
.blog-date { font-size: 0.7rem; color: #6b5040; font-weight: 500; margin-bottom: 5px; letter-spacing: 0.04em; text-transform: uppercase; }
.blog-body h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: #be2b0b; margin-bottom: 6px; line-height: 1.35; }
.blog-body p { font-size: 0.83rem; color: #6b5040; line-height: 1.6; }
.read-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: 0.78rem; font-weight: 600; color: #be2b0b; }
.read-more:hover { gap: 8px; }

/* PAGE HERO — inner pages */
.page-hero { background-color: #c8d8e4; background-image: url("assets/background1.png"); background-repeat: repeat; background-size: auto; color: #be2b0b; padding: 56px 24px; text-align: center; }
.page-hero h1 { font-family: var(--font-d); font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 10px; color: #be2b0b; }
.page-hero p { color: #be2b0b; max-width: 480px; margin: 0 auto; font-size: 0.95rem; opacity: 0.85; }

/* BREADCRUMB */
.breadcrumb { padding: 11px 32px; background: #ffffff; border-bottom: 1px solid #e8e0d8; font-size: 0.76rem; color: #6b5040; }
.breadcrumb a { color: #be2b0b; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* FILTER BUTTONS */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-btn { padding: 6px 18px; border-radius: 100px; border: 1.5px solid #be2b0b; background: #ffffff; font-size: 0.74rem; font-weight: 600; cursor: pointer; transition: all var(--t); color: #be2b0b; font-family: var(--font-b); letter-spacing: 0.04em; text-transform: uppercase; }
.filter-btn:hover, .filter-btn.active { background: #be2b0b; color: #fff; }

/* ABOUT PAGE */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-wrap { border-radius: 6px; overflow: hidden; }
.about-img-wrap img { width: 100%; display: block; }
.about-copy h2 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 700; color: #be2b0b; margin-bottom: 14px; }
.about-copy p { color: #6b5040; margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 16px; }
.value-card { background: #faf7f2; border-radius: 6px; padding: 20px; border: 1px solid #e8e0d8; text-align: center; }
.value-icon { font-size: 1.8rem; margin-bottom: 8px; }
.value-card h4 { font-family: var(--font-d); font-size: 0.9rem; font-weight: 700; color: #be2b0b; margin-bottom: 5px; }
.value-card p { font-size: 0.78rem; color: #6b5040; line-height: 1.6; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 5px; color: #be2b0b; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 13px; border: 1.5px solid #e8e0d8; border-radius: 6px; background: #ffffff; font-family: var(--font-b); font-size: 0.88rem; color: #2a1a0e; transition: border-color var(--t); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #be2b0b; }
.form-group textarea { height: 120px; resize: vertical; }
.contact-info h3 { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; color: #be2b0b; margin-bottom: 14px; }
.contact-info p { font-size: 0.88rem; color: #6b5040; margin-bottom: 10px; line-height: 1.75; }
.contact-detail { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.88rem; }

/* POLICY */
.policy-content { max-width: 740px; margin: 0 auto; }
.policy-content h2 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin: 28px 0 9px; color: #be2b0b; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 0.9rem; color: #6b5040; margin-bottom: 12px; line-height: 1.8; }
.policy-content ul { margin: 8px 0 12px 20px; list-style: disc; }
.policy-content ul li { font-size: 0.9rem; color: #6b5040; margin-bottom: 5px; line-height: 1.7; }

/* INSTAGRAM */
.ig-strip { background: #ffffff; padding: 20px 24px; text-align: center; border-top: 1px solid #e8e0d8; border-bottom: 1px solid #e8e0d8; }
.ig-strip a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #be2b0b; transition: opacity var(--t); }
.ig-strip a:hover { opacity: 0.7; }

/* FOOTER */
footer { background: #be2b0b; color: rgba(255,255,255,0.88); padding: 48px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.f-brand .logo-txt { font-size: 1.3rem; margin-bottom: 10px; display: block; color: #fff; font-family: var(--font-d); font-weight: 700; }
.f-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.8); }
.f-col h4 { font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700; margin-bottom: 14px; }
.f-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.8); padding: 4px 0; transition: color var(--t); }
.f-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.76rem; color: rgba(255,255,255,0.6); }
.f-links { display: flex; gap: 16px; flex-wrap: wrap; }
.f-links a { color: rgba(255,255,255,0.6); transition: color var(--t); }
.f-links a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid, .contact-grid, .packing-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav, .hdr-icons { display: none; }
  .burger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .f-links { justify-content: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps-grid, .recipe-grid, .blog-grid { grid-template-columns: 1fr; }
  section { padding: 48px 20px; }
  .hdr { padding: 0 20px; min-height: 70px; }
  .hero { padding: 56px 20px; min-height: auto; }
}
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }
