/* ============ Yinor Coffee - Global Styles ============ */
:root {
  --dark: #221610;
  --dark-2: #2f2016;
  --coffee: #5c3a21;
  --coffee-light: #8a5a33;
  --cream: #faf6f0;
  --cream-2: #f2eadd;
  --amber: #c98a3d;
  --amber-dark: #a96f2c;
  --text: #3a2c20;
  --muted: #7a6a58;
  --white: #ffffff;
  --line: #e5d9c8;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(34, 22, 16, 0.08);
  --font-head: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Lora', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coffee); text-decoration: none; }
a:hover { color: var(--amber-dark); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--dark); line-height: 1.25; }
h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; }
p { margin-bottom: 1em; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px; max-width: 1240px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--dark); }
.brand img { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; }
.brand span small { display: block; font-size: 0.68rem; font-weight: 500; color: var(--muted); letter-spacing: 0.4px; text-transform: uppercase; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--dark); cursor: pointer; }
.site-nav ul { display: flex; list-style: none; gap: 4px; align-items: center; flex-wrap: wrap; }
.site-nav a {
  display: block; padding: 8px 12px; font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  color: var(--dark-2); border-radius: 8px;
}
.site-nav a:hover { background: var(--cream-2); color: var(--amber-dark); }
.site-nav .cta a { background: var(--coffee); color: var(--white); }
.site-nav .cta a:hover { background: var(--amber-dark); color: var(--white); }
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.open { display: block; }
  .header-inner { flex-wrap: wrap; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 8px 0 16px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); padding: 90px 0; }
.hero .bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(34,22,16,0.88) 20%, rgba(34,22,16,0.45) 70%); }
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero .lead { font-size: 1.2rem; max-width: 620px; color: #f3e9dc; margin-bottom: 1.4em; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 8px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: 0; transition: 0.2s;
}
.btn-primary { background: var(--amber); color: var(--dark); }
.btn-primary:hover { background: var(--amber-dark); color: var(--white); }
.btn-dark { background: var(--coffee); color: var(--white); }
.btn-dark:hover { background: var(--amber-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--dark); color: #eadfce; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.2em; }
.section-head .kicker { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; color: var(--amber-dark); font-weight: 700; margin-bottom: 0.6em; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px; transition: transform 0.2s;
}
.card:hover { transform: translateY(-3px); }
.card .icon { font-size: 1.7rem; margin-bottom: 0.5em; }
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-3px); }
.product-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.product-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.product-card .flavor { color: var(--muted); font-size: 0.88rem; margin-bottom: 0.9em; flex: 1; }
.product-card .meta { font-size: 0.78rem; color: var(--amber-dark); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 0.6em; }
.tag { display: inline-block; padding: 3px 10px; border-radius: 99px; background: var(--cream-2); color: var(--coffee); font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-right: 6px; }

/* ---------- FAQ ---------- */
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 12px; }
.faq summary { font-family: var(--font-head); font-weight: 700; cursor: pointer; color: var(--dark); }
.faq details p { margin: 12px 0 0; color: var(--muted); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.2em; font-family: var(--font-head); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--amber-dark); }

/* ---------- Spec table ---------- */
.spec-table { width: 100%; border-collapse: collapse; margin: 1.2em 0 1.6em; font-size: 0.95rem; }
.spec-table th, .spec-table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.spec-table th { background: var(--cream-2); font-family: var(--font-head); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; width: 150px; }
.spec-table td { background: var(--white); }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: var(--dark); color: #eadfce; padding: 60px 0 50px; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: #d9cbb6; max-width: 680px; }
.page-hero .breadcrumbs a { color: #c9b89e; }

/* ---------- About / article ---------- */
.prose h3 { margin: 1.4em 0 0.5em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; }
.prose li { margin-bottom: 0.4em; }
.post-meta { color: var(--muted); font-size: 0.85rem; font-family: var(--font-head); margin-bottom: 1.2em; }
.post-list-item { display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 16px; box-shadow: var(--shadow); }
.post-list-item h3 { margin-bottom: 0.3em; color: var(--dark); }
.post-list-item:hover h3 { color: var(--amber-dark); }
.post-list-item .post-meta { margin: 0 0 0.4em; }
.post-list-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Contact / form ---------- */
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); max-width: 680px; }
.contact-form label { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; display: block; margin: 14px 0 6px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; background: var(--cream);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--amber); background: var(--white); }
.contact-form .btn { margin-top: 18px; }
.contact-info li { list-style: none; margin-bottom: 0.8em; }
.contact-info li strong { font-family: var(--font-head); display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
.trust-strip .item { padding: 22px 12px; }
.trust-strip .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--amber); display: block; }
.trust-strip .lbl { font-family: var(--font-head); font-size: 0.85rem; color: #d9cbb6; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #cbbd a8; color: #cbbda8; padding: 60px 0 30px; font-size: 0.92rem; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1em; text-transform: uppercase; letter-spacing: 1px; }
.site-footer a { color: #cbbda8; }
.site-footer a:hover { color: var(--amber); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 34px; margin-bottom: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.82rem; color: #9a8a74; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1em; } .mt-2 { margin-top: 2em; } .mt-3 { margin-top: 3em; }
.cta-band { text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #d9cbb6; max-width: 640px; margin: 0 auto 1.4em; }
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
.notice { background: var(--cream-2); border-left: 4px solid var(--amber); padding: 14px 18px; border-radius: 6px; font-size: 0.92rem; margin: 1.2em 0; }
