:root{
  --header-offset: 84px;
  --heading-accent: #4E6F5C;
  --band-deep: #1F2D28;
  --band-warm: #F8F6F2;

  --section: #F2F5F3;
  --section-alt: #E7ECE9;
  --sage-band: #EEF2EE;
  --warm-band: #F8F6F2;

  --bg: #F2F5F3;
  --card: #FFFFFF;
  --text: #27302B;
  --deep:#1f3d2b;
  --sage:#2f6b4f;
  --accent:#4E6F5C;
  --mint:#e6f2ef;
  --line: #D6DDD9;
  --wa:#25D366;
  --waHover:#1EBE5A;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color:var(--text);
  line-height: 1.65;
}
.media-fill{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #eef1ef;
}

.media-fill img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;  /* adjust if needed */
  transform: none !important;   /* kills any leftover translate */
}







/* Layout helpers */
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.section{padding:70px 0}
.section h1,.section h2{
  font-family:"Playfair Display", serif;
  color:var(--deep);
  margin:0 0 16px;
}
.section p{line-height:1.8;margin:0 0 14px}
.muted{opacity:.8}
.small{font-size:13px;opacity:.8}

/* Comfortable reading width */
.prose{max-width:62ch}

/* Secondary CTA links (use instead of extra buttons) */
.cta-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  text-decoration:none;
  color:var(--accent);
  padding:10px 4px;
  border-radius:10px;
}
.cta-link:hover{background:rgba(230,242,239,.7)}

/* Products: gentle grouping so the page doesn't feel like one long grid */
.product-group{
  margin-top: 22px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(214,221,217,.85);
  background: rgba(255,255,255,.55);
}
.product-group--alt{ background: rgba(231,236,233,.65); }


/* Header */
header{
  position:sticky;top:0;z-index:100;
  background: rgba(242,245,243,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:14px;
}
/* Header brand logo */
.logo-badge img{
  width:50%;          /* 👈 force scale up */
  height:auto;
  max-width:none;
  object-fit:contain;
  display:block;
}


.logo-badge img{
  width:32%;               /* 👈 use more space */
  height:32%;
  object-fit:contain;
  display:block;
}
@media (max-width:600px){
  .logo-badge{
    width:72px;
    height:72px;
  }
}


.brand-name{
  font-family:"Playfair Display", serif;
  font-size:22px;color:var(--deep);line-height:1.1;
}
nav{display:flex;gap:18px;align-items:center}
nav a{
  text-decoration:none;font-weight:600;color:var(--text);
  padding:10px 10px;border-radius:10px;
}
nav a:hover{background:rgba(230,242,239,.7)}

/* Mobile nav */
.menu-btn{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
}
@media (max-width: 860px){
  nav{display:none;flex-direction:column;align-items:flex-start;gap:0}
  nav a{width:100%}
  .menu-btn{display:inline-flex;align-items:center;gap:8px}
  .nav-open nav{display:flex; padding:10px 0 16px}
}

/* Hero */
.hero{
  background:linear-gradient(180deg,#fff,#eef6f3);
  padding:60px 0 30px;
}
.hero-grid{
  display:grid;gap:22px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items:center;
}
.hero h1{
  font-size:42px;margin:0 0 12px;
}
.subline{
  font-size: 18px;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 10px;
  max-width: 60ch;
}
.hero p{font-size:17px;max-width:650px}
.hero-cta{
  display:flex;gap:12px;flex-wrap:wrap;margin-top:18px
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;
  padding:13px 18px;
  font-weight:800;
  text-decoration:none;
  border:1px solid var(--line);
  background:#fff;color:var(--deep);
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}
.btn:hover{filter:brightness(.99)}
.btn-primary{
  background:var(--wa);
  border:none;color:#fff;
  box-shadow:0 10px 22px rgba(37,211,102,.35);
}
.btn-primary:hover{background:var(--waHover)}
.hero-img{
  width:100%;border-radius:22px;overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 16px 30px rgba(0,0,0,.08);
  background:#fff;
}
.hero-img img{width:100%;height:320px;object-fit:cover;display:block}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-img img{height:240px}
}

/* Trust strip */
.trust-strip{
  background:#fff;border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.trust-inner{
  display:grid;gap:16px;
  grid-template-columns:1fr 1fr;
  padding:18px 0;
}
.trust-badge{
  display:flex;gap:12px;align-items:center;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 14px;
}
.badge-icon{
  width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;
  font-weight:900;color:var(--deep);
  background:var(--mint);
  border:1px solid #d7e7e1;
}
@media (max-width: 700px){
  .trust-inner{grid-template-columns:1fr}
}

/* Cards & grids */
.grid{
  display:grid;gap:24px;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.card{
  background:var(--card);
  border-radius:18px;
  padding:26px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border:1px solid rgba(226,232,228,.6);
}
.card h3{margin:0 0 10px;color:var(--sage)}
.hr{height:1px;background:var(--line);margin:14px 0}

.wa{
  display:inline-flex;align-items:center;justify-content:center;
  width:100%;
  padding:14px 16px;margin-top:12px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;font-size:15px;
  background:var(--wa);color:#fff;border:none;
  box-shadow:0 10px 22px rgba(37,211,102,.35);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.wa:hover{
  background:var(--waHover);
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(37,211,102,.45);
}
.wa::before{
  content:"";
  width:18px;height:18px;margin-right:10px;display:inline-block;
  background-repeat:no-repeat;background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23ffffff' d='M16.02 3C9.39 3 4 8.33 4 14.9c0 2.6.87 5.02 2.35 6.98L5 29l7.33-1.28c1.85.99 3.97 1.56 6.2 1.56 6.63 0 12.02-5.33 12.02-11.9C30.55 8.33 22.65 3 16.02 3Zm6.98 16.95c-.29.8-1.68 1.52-2.31 1.62-.59.1-1.35.14-2.18-.13-.5-.16-1.14-.37-1.97-.73-3.47-1.5-5.74-5.02-5.91-5.25-.17-.23-1.41-1.86-1.41-3.55 0-1.69.9-2.52 1.22-2.86.32-.34.69-.43.92-.43.23 0 .46 0 .66.01.21.01.49-.08.76.58.29.7.98 2.41 1.07 2.58.09.17.15.38.03.61-.12.23-.18.38-.35.58-.17.2-.37.45-.53.6-.17.15-.34.32-.15.63.2.31.86 1.41 1.85 2.29 1.27 1.13 2.34 1.48 2.67 1.64.33.16.52.13.71-.08.2-.21.82-.95 1.04-1.28.22-.33.44-.27.74-.16.3.11 1.9.9 2.23 1.06.33.17.55.25.63.39.08.14.08.81-.21 1.61Z'/%3E%3C/svg%3E");
}
.wa-note{margin:10px 0 0;font-size:13px;opacity:.78;text-align:center}

/* Image blocks */
.media{
  border-radius:22px; overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 16px 30px rgba(0,0,0,.08);
  background:#fff;
}
.media img{width:100%;height:280px;object-fit:cover;display:block}
@media (max-width:900px){.media img{height:220px}}

/* Footer */
footer{
  background:var(--deep);color:#fff;
  padding:46px 0;margin-top:10px;
}
.footer-grid{
  display:grid;gap:18px;
  grid-template-columns:1.2fr 0.8fr;
  align-items:start;
}
.footer-grid a{color:#fff}
@media (max-width: 860px){
  .footer-grid{grid-template-columns:1fr}
}
/* FAQ accordion (simple, no JS) */
.faq{
  display:grid;
  gap:14px;
}
.faq details{
  background: var(--card);
  border: 1px solid rgba(226,232,228,.8);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.faq summary{
  cursor:pointer;
  font-weight: 800;
  color: var(--deep);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";
  font-weight: 900;
  opacity:.8;
}
.faq details[open] summary::after{
  content:"–";
}
.faq details p{
  margin:12px 0 0;
  line-height:1.7;
  opacity:.92;
}

/* Wholesale block */
.wholesale{
  background: linear-gradient(180deg, #ffffff, #eef6f3);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 30px rgba(0,0,0,.07);
}
.wholesale .row{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items:center;
}
@media (max-width: 860px){
  .wholesale .row{grid-template-columns:1fr}
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: var(--mint);
  color: var(--deep);
  font-weight: 800;
  border: 1px solid rgba(215,231,225,.9);
}
.kv{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.kv div{
  background:#fff;
  border:1px solid rgba(226,232,228,.75);
  border-radius:14px;
  padding:12px 14px;
}
/* FAQ teaser */
.faq-teaser{
  display:grid;
  gap:14px;
}
.faq-teaser .card p{margin:0; opacity:.9}
.faq-teaser a.link{
  display:inline-block;
  margin-top:10px;
  font-weight:800;
  color: var(--sage);
  text-decoration:none;
}
.faq-teaser a.link:hover{ text-decoration:underline; }
/* Gallery strip */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.gallery .shot{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
  background:#fff;
}
.gallery img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
@media (max-width: 860px){
  .gallery{grid-template-columns:1fr}
  .gallery img{height:220px}
}
/* Testimonials */
.testimonials{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Home: What Customers Value — light, confident blocks (not a wall of cards) */
.value-cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

/* Home: Pillars list layout (used in What Customers Value) */
.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.pillar{
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(214,221,217,.75);
}
.pillar h3{
  margin:0 0 10px;
  color: var(--deep);
  font-size: 18px;
}
.pillar ul{
  margin:0;
  padding-left: 18px;
}
.pillar li{ margin: 8px 0; opacity: .92; }
@media (max-width: 860px){
  .pillars{grid-template-columns:1fr}
}
.value-item{
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(214,221,217,.75);
}
.value-item h3{
  margin:0 0 8px;
  font-size: 18px;
  color: var(--deep);
}
.value-item p{ margin:0; opacity:.92; }
@media (max-width: 860px){
  .value-cols{grid-template-columns:1fr}
}
.quote{
  position:relative;
}
.quote::before{
  content:"“";
  position:absolute;
  top:-6px;
  left:-2px;
  font-family:"Playfair Display", serif;
  font-size:54px;
  color: var(--mint);
  line-height:1;
}
.quote p{
  margin:0 0 12px;
  line-height:1.75;
  opacity:.92;
}
.quote .who{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  color: var(--deep);
}
.quote .tag{
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  background: var(--mint);
  border:1px solid rgba(215,231,225,.9);
  color: var(--deep);
  opacity:.95;
}
/* Gallery page */
.gallery-hero{
  background: linear-gradient(180deg,#ffffff,#eef6f3);
  padding: 40px 0 10px;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top: 18px;
}
.g-item{
  grid-column: span 4;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 28px rgba(0,0,0,.08);
}
.g-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.g-item .cap{
  padding:12px 14px;
  font-size:13px;
  opacity:.85;
  line-height:1.5;
}
@media (max-width: 980px){
  .g-item{grid-column: span 6;}
}
@media (max-width: 640px){
  .g-item{grid-column: span 12;}
  .g-item img{height:240px;}
}

/* Filter chips (no JS needed) */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:800;
  color:var(--deep);
  text-decoration:none;
}
.chip:hover{background:rgba(230,242,239,.7)}
/* ================================
   Consistent Image Footer Overlay
   ================================ */

.media{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.media img{
  display: block;
  width: 100%;
  height: auto;
}

/* Same footer style for ALL images */
.media .img-footer{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 22px 24px;
  text-align: center;

  /* MATCH the “Hygienic handling” darker footer */
  background: rgba(27, 73, 60, 0.88);

  color: #fff;
  line-height: 1.15;
}

/* top line (white) */
.media .img-footer .line1{
  font-size: clamp(22px, 2.6vw, 40px);
  font-weight: 700;
}

/* highlight line (gold) */
.media .img-footer .line2{
  margin-top: 10px;
  font-size: clamp(22px, 2.6vw, 40px);
  font-weight: 700;
  color: #f3d28b;
}

.media .img-footer .wa{
  margin-top: 10px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  color: #eaf6f0;
  opacity: 0.95;
}


/* Background system (Hybrid B) */
.section, section.section { background: transparent; }
.section--default{ background: var(--section); }
.section--alt{ background: var(--section-alt); }
.section--sage{ background: var(--sage-band); }
.section--warm{ background: var(--warm-band); }

/* Image-led band (1 per page is enough) */
.image-band{
  position: relative;
  padding: 78px 0;
  background:
    linear-gradient(180deg, rgba(31,45,40,.72), rgba(31,45,40,.52)),
    var(--band-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.image-band.band-center .container{ max-width: 900px; text-align:center; }
.image-band h2{ margin-bottom: 12px; }
.image-band p{ margin: 0 auto; max-width: 760px; color: rgba(255,255,255,.92); }
.image-band h2{ color:#fff; margin:0 0 10px; }
.image-band p{ color: rgba(255,255,255,.92); margin:0; max-width: 68ch; }

/* Nav CTA (Order Online) */
.nav a.nav-cta{
  background:var(--sage);
  color:#fff !important;
  border:1px solid rgba(255,255,255,.15);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
}
.nav a.nav-cta:hover{filter:brightness(1.05)}

/* Footer social */
.footer-social{ text-align:right; }
.ig-follow{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900; text-decoration:none;
  color:#ff3b30 !important;
}
.ig-icon{ fill:#ff3b30; }
.footer-bottom{ padding-top:18px; opacity:.9 }
@media (max-width: 860px){
  .footer-social{ text-align:left; }
}


/* Anchor offset for sticky header */
[id]{ scroll-margin-top: calc(var(--header-offset) + 14px); }

/* Footer */
.site-footer{ background: rgba(231,236,233,.55); border-top:1px solid var(--line); }
.footer-wrap{
  display:grid; gap:18px; align-items:start;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  padding:28px 0;
  position:relative;
}
.footer-col{ color: var(--muted); }
.footer-links{ list-style:none; padding:8px 0 0; margin:0; display:grid; gap:6px; }
.footer-links a{ color: var(--text); text-decoration:none; }
.footer-links a:hover{ text-decoration:underline; }
.ig-follow{
  margin-top:14px; display:inline-flex; align-items:center; gap:8px;
  color:#C1121F; text-decoration:none; font-weight:600;
}
.ig-follow:hover{ text-decoration:underline; }
.ig-icon{ fill: currentColor; }
.to-top{
  align-self:start;
  border:1px solid var(--line);
  background: rgba(244,246,245,.9);
  border-radius: 999px;
  width:40px;height:40px;
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.to-top svg{ fill: var(--text); }
.to-top:hover{ transform: translateY(-1px); }
.footer-bottom{ border-top:1px solid var(--line); background: rgba(244,246,245,.75); }
.footer-bottom-inner{ display:flex; gap:14px; justify-content:space-between; padding:12px 0; flex-wrap:wrap; }
@media (max-width: 880px){
  .footer-wrap{ grid-template-columns: 1fr; padding:22px 0; }
  .to-top{ justify-self:end; }
}

/* Products spacing */
.products-page section{ padding: 34px 0; }
.products-page .section-header{ margin-bottom: 14px; }
.products-page .grid{ gap: 14px; }
@media (max-width: 700px){
  .products-page section{ padding: 26px 0; }
}

/* --- Overrides (Jan 2026 batch) --- */
/* Header logo: use transparent logo (no white badge) */
.logo-badge{background:transparent;border:none;padding:0;box-shadow:none;border-radius:0;}
.logo-badge img{width:auto !important;height:48px !important;max-width:190px !important;}
@media (max-width: 700px){ .logo-badge img{height:42px !important;} }

/* Footer: restore dark deep tone like original */
.site-footer, footer{
  background: var(--deep) !important;
  color:#fff !important;
}
.site-footer a, footer a{color:#fff !important;}
.footer-bottom, .footer-bottom-inner{background: transparent !important; border-top: 1px solid rgba(255,255,255,.14) !important;}
.footer-links a{color:#fff !important;}
.to-top{background: rgba(255,255,255,.12) !important; border: 1px solid rgba(255,255,255,.18) !important;}
.to-top svg{fill:#fff !important;}

/* Image band color: less gray, more deep sage */
.image-band{
  background:
    linear-gradient(180deg, rgba(31,61,43,.78), rgba(31,61,43,.58)),
    var(--band-image) !important;
}

/* Gallery anchor precision: prevent mid-grid landing from image layout shift */
.gallery-grid img{aspect-ratio: 4 / 3; object-fit: cover;}
/* Home hero: avoid big bold business-name headline */
.hero h1{ font-size: 44px; letter-spacing:-0.02em; }
@media (max-width:700px){ .hero h1{ font-size: 34px; } }

/* Trust strip badge circles: keep text inside circle */
.badge-icon{
  width: 96px; height: 96px;
  font-size: 14px;
  letter-spacing: 0.08em;
}
@media (max-width:700px){ .badge-icon{ width: 84px; height: 84px; font-size: 13px; } }
/* Clean surroundings band: align to container (not full-bleed) */
.image-band{
  max-width: 1100px;
  margin: 28px auto;
  border-radius: 26px;
  overflow: hidden;
  padding: 0;
}
.image-band .container{ padding: 64px 20px; }
@media (max-width:1140px){ .image-band{ margin: 18px 20px; } }



/* === Minimal requested tweaks (no layout rewrites) === */
header .header-inner{ padding-top: 14px; padding-bottom: 14px; }
.brand-logo{ height: 52px; width:auto; display:block; }
@media (max-width:700px){ .brand-logo{ height: 44px; } }

/* Trust cards: make circle feel less empty */
.badge-icon{ width: 86px; height: 86px; font-size: 13px; }
@media (max-width:700px){ .badge-icon{ width: 78px; height: 78px; font-size: 12px; } }

/* Footer: quick links two columns */
.footer-links-2col{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width:880px){ .footer-links-2col{ grid-template-columns: 1fr; } }

/* Remove extra heavy line appearance */
.site-footer .footer-bottom{ border-top: 1px solid rgba(255,255,255,.14); }

/* Center copyright */
.footer-bottom-inner{ justify-content:center; text-align:center; }

/* Instagram link red */
.ig-follow{ color:#C1121F !important; font-weight:600; text-decoration:none; }
.ig-follow:hover{ text-decoration:underline; }


/* === Patch2: header/logo visibility (v5-compatible selectors) === */
header .header-inner{ padding: 14px 0 !important; }
header .logo-badge{ background: transparent !important; padding: 0 !important; border: 0 !important; box-shadow: none !important; }
header .brand-logo{ height: 52px !important; width: auto !important; display:block !important; }
@media (max-width:700px){ header .brand-logo{ height: 44px !important; } }

/* === Patch2: footer (single divider + centered copyright) === */
.site-footer .footer-bottom{ border-top: 1px solid rgba(255,255,255,.14) !important; background: transparent !important; }
.site-footer .footer-bottom-inner{ justify-content: center !important; text-align:center !important; }
.site-footer a.ig-follow{ color:#C1121F !important; font-weight:700 !important; text-decoration:none !important; }
.site-footer a.ig-follow:hover{ text-decoration: underline !important; }
.site-footer a.ig-follow .ig-icon, .site-footer a.ig-follow svg{ fill:#C1121F !important; }

/* === Patch2: contact reserve spacing + wholesale card sizing === */
#reserve{ padding-top: 28px !important; }
#reserve .container{ max-width: 1100px; }



/* === Header brand lockup (v5 patch3) === */
header .brand{ display:flex; align-items:center; gap:12px; }
header .logo-badge{ display:flex; align-items:center; justify-content:center; }
header .brand-logo{ height:58px; width:auto; display:block; }
header .brand-text{ display:flex; flex-direction:column; line-height:1.05; }
header .brand-name{ font-weight:800; letter-spacing:0.2px; font-size:18px; }
header .brand-tagline{ font-weight:600; font-size:12px; opacity:.82; }
header .header-inner{ padding-top:16px; padding-bottom:16px; }
@media (max-width: 820px){
  header .brand-logo{ height:48px; }
  header .brand-name{ font-size:16px; }
  header .brand-tagline{ font-size:11px; }
}
@media (max-width: 520px){
  header .brand-text{ display:none; } /* keep header clean on very small screens */
}

/* === Home band alignment fix === */
.image-band.band-center .container{ text-align:center; }
.image-band.band-center h2,
.image-band.band-center p{ margin-left:auto; margin-right:auto; max-width: 860px; }


/* === Patch4: bigger header + logo === */
.site-header .header-inner,
header .header-inner{
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}
.site-header .brand-logo,
header .brand-logo{
  height: 62px !important;
  width: auto !important;
  display: block !important;
}
@media (max-width:700px){
  .site-header .brand-logo,
  header .brand-logo{ height: 50px !important; }
}
/* Brand lockup sizing */
.brand-text .brand-name{ font-size: 18px !important; }
.brand-text .brand-tagline{ font-size: 12px !important; opacity: .9; }

/* Trust circle: better proportion (text closer to circle size) */
.badge-icon{
  width: 78px !important;
  height: 78px !important;
  font-size: 14px !important;
  letter-spacing: .09em;
}
@media (max-width:700px){
  .badge-icon{ width: 72px !important; height: 72px !important; font-size: 13px !important; }
}



/* === Patch5: Masthead-style header (bigger logo + brand presence) === */
.site-header, header{
  min-height: 96px !important;
}
.site-header .header-inner,
header .header-inner{
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  align-items: center !important;
}
.site-header .brand, header .brand{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.site-header .brand-logo,
header .brand-logo{
  height: 78px !important;
  width: auto !important;
  display: block !important;
}
.brand-text{
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}
.brand-text .brand-name{
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
}
.brand-text .brand-tagline{
  font-size: 13px !important;
  font-weight: 600 !important;
  opacity: .85 !important;
  margin-top: 3px !important;
}

/* Keep nav compact so header feels balanced */
.nav a{ padding-top: 10px !important; padding-bottom: 10px !important; }
.nav .nav-cta{ padding: 10px 16px !important; }

/* Mobile */
@media (max-width: 700px){
  .site-header, header{ min-height: 78px !important; }
  .site-header .header-inner,
  header .header-inner{ padding-top: 14px !important; padding-bottom: 14px !important; }
  .site-header .brand-logo,
  header .brand-logo{ height: 58px !important; }
  .brand-text .brand-name{ font-size: 18px !important; }
  .brand-text .brand-tagline{ font-size: 12px !important; }
}



/* === Final pass: brand lockup link + responsive tagline === */
.brand-link{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}
.brand-link:focus{ outline:2px solid rgba(216,178,110,.6); outline-offset:4px; border-radius:12px; }
.tagline-short{ display:none; }
@media (max-width:700px){
  .tagline-full{ display:none; }
  .tagline-short{ display:inline; }
}
/* === Final pass: Home "What Customers Value" collapse === */
.cv-extra{ display:none; }
.cv-toggle{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(0,0,0,.12);
  background:transparent;
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
}
.cv-toggle:hover{ transform: translateY(-1px); }
body.cv-open .cv-extra{ display:list-item; }
