/* My Body Cell — homepage plugin
   Palette from the supplied brand board: navy #102A43, teal #19A7A0,
   gold #D6B36A, off-white #F9F9F9. */
:root{
  --navy:#102A43;
  --navy-deep:#0A1B2D;
  --teal:#19A7A0;
  --teal-tint:#EDF7F6;
  --gold:#D6B36A;
  --paper:#FBFBFC;
  --white:#FFFFFF;
  --ink:#0F2438;
  --muted:#5C6874;
  --line:#E3E8ED;
  --ph:#EDF0F3;         /* placeholder tile */
  --ph-ink:#8A97A4;
  --ph-dark:#123043;    /* product card media bed — matches the dark placeholder shot */

  --sans:"Figtree","Segoe UI",system-ui,-apple-system,Helvetica,Arial,sans-serif;
  --serif:"Source Serif 4",Georgia,"Times New Roman",serif;
  --mono:"IBM Plex Mono",ui-monospace,SFMono-Regular,Menlo,monospace;

  --nav-h:64px;
  --wrap:1200px;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--sans);font-size:16px;line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--teal);outline-offset:3px;border-radius:4px}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 20px}
@media (min-width:768px){.wrap{padding:0 32px}}

/* ---------- shared type ---------- */
.eyebrow{
  font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--teal);margin:0 0 10px;font-weight:500;
}
.h2{
  font-family:var(--serif);font-weight:600;letter-spacing:-.01em;line-height:1.12;
  font-size:clamp(26px,4.4vw,38px);margin:0;color:var(--navy);
}
.lede{color:var(--muted);margin:10px 0 0;max-width:52ch}

/* signature: the notched gold rule lifted from the vial label */
.notch{display:block;width:100%;height:9px;color:var(--gold)}
.notch svg{width:100%;height:9px;display:block}

/* ---------- placeholder tiles ---------- */
.ph-logo{width:auto;flex:none;object-fit:contain;opacity:.6}
.ph{
  background:var(--ph);border:1px dashed #B4C0CC;border-radius:10px;
  display:flex;align-items:center;justify-content:center;text-align:center;
  color:#78868F;font-family:var(--mono);font-size:10px;letter-spacing:.08em;
  text-transform:uppercase;padding:8px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:9px;justify-content:center;
  padding:13px 24px;border-radius:999px;font-weight:600;font-size:15px;white-space:nowrap;
  border:1px solid transparent;cursor:pointer;transition:transform .15s ease,background .15s ease,color .15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--navy);color:#fff}
.btn-primary:hover{background:var(--navy-deep)}
.btn-ghost{background:transparent;color:var(--navy);border-color:#C9D3DC}
.btn-ghost:hover{border-color:var(--navy);background:rgba(16,42,67,.04)}
.btn-sm{padding:11px 20px;font-size:14px}

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-head{
  position:sticky;top:0;z-index:90;background:rgba(251,251,252,.92);
  backdrop-filter:saturate(1.4) blur(10px);border-bottom:1px solid var(--line);
}
.nav{height:var(--nav-h);display:flex;align-items:center;gap:16px}
.brand{display:flex;align-items:center;flex:none}
/* supplied wordmark carries the brand name — no type set next to it.
   Source files have ~29% transparent padding top/bottom; trimmed to the artwork
   so the height below is the height you actually see. */
.brand .wordmark{height:26px;width:auto;display:block}
@media (min-width:768px){.brand .wordmark{height:30px}}
.nav-links{display:none;gap:30px;margin:0 auto;list-style:none;padding:0}
.nav-links a{font-size:15px;font-weight:500;color:var(--navy);opacity:.85;position:relative;padding:6px 0}
.nav-links a:hover{opacity:1}
.nav-links a[aria-current="page"]{opacity:1}
.nav-links a[aria-current="page"]::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:2px;background:var(--teal);border-radius:2px;
}
.nav-icons{display:flex;gap:4px;margin-left:auto;align-items:center}
/* mobile: the cart is the only icon outside the drawer.
   Scoped selector — .icon-btn is declared later and would otherwise win. */
.nav-icons .nav-account{display:none}
.icon-btn{
  width:38px;height:38px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:transparent;border:1px solid transparent;cursor:pointer;color:var(--navy);position:relative;
}
.icon-btn:hover{background:rgba(16,42,67,.06)}
.icon-btn svg{width:19px;height:19px}
.cart-count{
  position:absolute;top:4px;right:3px;min-width:15px;height:15px;border-radius:999px;background:var(--teal);
  color:#fff;font-size:9.5px;font-weight:700;display:flex;align-items:center;justify-content:center;padding:0 4px;
  font-family:var(--mono);
}
.burger{display:inline-flex;margin-left:-6px}
@media (min-width:1024px){
  .nav-links{display:flex}
  .nav-icons .nav-account{display:inline-flex}
  .nav-icons{gap:6px}
  .burger{display:none}
}

/* mobile drawer */
.drawer{
  position:fixed;inset:0;z-index:95;visibility:hidden;pointer-events:none;
}
.drawer.open{visibility:visible;pointer-events:auto}
.drawer-scrim{position:absolute;inset:0;background:rgba(10,27,45,.45);opacity:0;transition:opacity .25s ease}
.drawer.open .drawer-scrim{opacity:1}
.drawer-panel{
  position:absolute;top:0;right:0;height:100%;width:min(88vw,340px);background:#fff;
  transform:translateX(100%);transition:transform .28s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;padding:18px 20px 26px;
}
.drawer.open .drawer-panel{transform:none}
.drawer-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.drawer-icon{height:30px;width:auto;display:block}
.drawer nav{display:flex;flex-direction:column;margin-top:6px}
.drawer nav a{padding:15px 0;border-bottom:1px solid var(--line);font-size:17px;font-weight:500;color:var(--navy)}
.drawer .btn{margin-top:22px;width:100%}

/* =================================================================
   HERO  — short on mobile by design
   ================================================================= */
.hero{padding:16px 0 14px}
.hero-grid{display:grid;gap:14px;align-items:center}
.hero h1{
  font-family:var(--serif);font-weight:600;color:var(--navy);
  font-size:clamp(29px,7.6vw,52px);line-height:1.07;letter-spacing:-.02em;margin:8px 0 0;
}
.hero h1 .dot{color:var(--gold)}
.hero-sub{color:var(--muted);margin:10px 0 0;font-size:clamp(14.5px,1.6vw,17px);max-width:40ch}
.hero-cta{display:flex;gap:10px;margin-top:16px;flex-wrap:wrap}
.hero-ruo{
  display:flex;align-items:center;gap:10px;margin-top:16px;padding-top:14px;border-top:1px solid var(--line);
  max-width:340px;
}
.hero-ruo svg{width:22px;height:22px;color:var(--navy);flex:none}
.hero-ruo b{display:block;font-size:13px;font-weight:600;color:var(--navy);line-height:1.3}
.hero-ruo span{display:block;font-size:12.5px;color:var(--muted)}
/* Transparent foreground image — no fill, no tile, no frame, no crop.
   Production: wp_get_original_image_url(), no srcset, height auto, object-fit contain. */
.hero-art{width:100%;height:auto;object-fit:contain;background:none;border:0}
.hero-art-ph{width:100%;aspect-ratio:16/10;max-height:150px;margin:0 auto}
.hero-art-ph .ph-logo{height:52%}
/* Mobile hero is copy-only: the image is hidden, and the RUO line is carried
   by the trust strip immediately below. */
@media (max-width:767px){
  .hero-media{display:none}
  .hero-ruo{display:none}
  .hero-cta .btn{flex:1 1 auto}
}
@media (min-width:768px){
  .hero{padding:40px 0 30px}
  .hero-grid{grid-template-columns:1fr 1fr;gap:30px}
  .hero-art-ph{max-height:none;aspect-ratio:4/3}
  .hero-ruo{margin-top:24px}
}
@media (min-width:1024px){
  .hero{padding:52px 0 44px}
  .hero-grid{grid-template-columns:1.02fr 1fr;gap:44px}
}

/* =================================================================
   TRUST STRIP — compact scroller on mobile so it doesn't eat the fold
   ================================================================= */
.trust{padding:0 0 4px}
.trust-inner{
  display:grid;grid-auto-flow:column;grid-auto-columns:minmax(148px,1fr);
  gap:0;overflow-x:auto;background:#fff;border:1px solid var(--line);border-radius:14px;
  scrollbar-width:none;-webkit-overflow-scrolling:touch;
}
.trust-inner::-webkit-scrollbar{display:none}
.trust-item{padding:14px 16px;display:flex;align-items:center;gap:10px;border-right:1px solid var(--line)}
.trust-item:last-child{border-right:0}
.trust-item svg{width:22px;height:22px;color:var(--teal);flex:none}
.trust-item b{display:block;font-size:13px;font-weight:600;color:var(--navy);line-height:1.25}
.trust-item .sub{display:none;font-size:12.5px;color:var(--muted);line-height:1.4}
@media (min-width:768px){
  .trust{padding:14px 0}
  .trust-inner{grid-auto-flow:row;grid-template-columns:repeat(4,1fr);overflow:visible}
  .trust-item{flex-direction:column;align-items:flex-start;padding:24px 22px;gap:12px}
  .trust-item svg{width:28px;height:28px}
  .trust-item b{font-size:15px}
  .trust-item .sub{display:block}
}

/* =================================================================
   PRODUCTS
   ================================================================= */
.section{padding:24px 0}
.section-bento,.section-news{padding-top:6px}
@media (min-width:768px){.section{padding:56px 0}}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:14px}
@media (min-width:768px){.sec-head{margin-bottom:18px}}
.sec-head .link{
  display:none;font-weight:600;font-size:14.5px;color:var(--teal);align-items:center;gap:7px;white-space:nowrap;padding-bottom:4px;
}
.sec-head .link svg{width:15px;height:15px}
@media (min-width:768px){.sec-head .link{display:inline-flex}}
.sec-rule{margin:0 0 16px}
@media (min-width:768px){.sec-rule{margin:0 0 22px}}

.grid-products{
  display:grid;gap:14px;grid-template-columns:repeat(2,minmax(0,1fr));
}
@media (min-width:640px){.grid-products{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}}
@media (min-width:1024px){.grid-products{grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}}

.card{
  background:#fff;border:1px solid var(--line);border-radius:14px;overflow:hidden;
  display:flex;flex-direction:column;transition:box-shadow .18s ease,transform .18s ease,border-color .18s ease;
}
.card:hover{box-shadow:0 12px 30px rgba(16,42,67,.09);transform:translateY(-2px);border-color:#D3DCE4}
.card-media{position:relative;aspect-ratio:1/1;background:var(--ph-dark)}
/* photography ships with backgrounds baked in — full bleed, no padding/gradient/shadow */
.card-media img{width:100%;height:100%;object-fit:cover;display:block}
.card-media .ph{position:absolute;inset:0;border-radius:0;border:0;border-bottom:1px dashed #C7D0D9}
.badge{
  position:absolute;top:9px;left:9px;z-index:2;background:var(--teal);color:#fff;
  font-family:var(--mono);font-size:9.5px;letter-spacing:.09em;text-transform:uppercase;
  padding:4px 9px;border-radius:999px;font-weight:500;
}
.card-body{padding:13px 13px 15px;display:flex;flex-direction:column;flex:1}
/* exactly two lines: short names reserve line 2, long names clip with ellipsis */
.card-title{
  font-size:15px;font-weight:600;color:var(--navy);margin:0;line-height:1.3;
  height:calc(2 * 1.3em);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.card-meta{font-family:var(--mono);font-size:11px;color:var(--muted);margin:6px 0 0;letter-spacing:.05em}
.card-price{font-size:16px;font-weight:700;color:var(--navy);margin:10px 0 0}
.card-link{
  margin-top:auto;padding-top:11px;font-size:13px;font-weight:600;color:var(--teal);
  display:inline-flex;align-items:center;gap:6px;
}
.card-link svg{width:13px;height:13px;transition:transform .16s ease}
.card:hover .card-link svg{transform:translateX(3px)}
@media (min-width:640px){
  .card-body{padding:16px 16px 18px}
  .card-title{font-size:16px}
  .card-price{font-size:18px}
}
.grid-foot{display:flex;justify-content:center;margin-top:26px}
@media (min-width:768px){.grid-foot{display:none}}

/* =================================================================
   BENTO — 1:1 at every breakpoint, sticky-stack on mobile
   ================================================================= */
.bento{display:grid;gap:16px}
.bento-card{
  position:relative;aspect-ratio:1/1;border-radius:16px;overflow:hidden;background:var(--navy);
  display:flex;flex-direction:column;justify-content:flex-end;isolation:isolate;
}
.bento-card .ph{position:absolute;inset:0;border-radius:0;border:0;z-index:0;align-items:center;padding-bottom:34%}
.bento-card .ph-logo{height:42%}
.bento-card > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.bento-veil{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(to top,rgba(10,27,45,.88) 0%,rgba(10,27,45,.45) 42%,rgba(10,27,45,.06) 78%);
}
.bento-txt{position:relative;z-index:2;padding:18px}
.bento-txt .k{
  font-family:var(--mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin:0 0 6px;
}
.bento-txt h3{font-family:var(--serif);font-size:20px;line-height:1.18;margin:0;color:#fff;font-weight:600}
.bento-txt p{margin:7px 0 0;font-size:13.5px;color:rgba(255,255,255,.82);line-height:1.45}
@media (max-width:767px){
  .bento{display:block}
  .bento-card{
    position:sticky;top:calc(var(--nav-h) + 14px + (var(--i) * 10px));
    margin-bottom:18px;box-shadow:0 -8px 26px rgba(16,42,67,.12);
  }
  .bento-card:last-child{margin-bottom:0}
}
@media (min-width:768px){.bento{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.bento{grid-template-columns:repeat(4,1fr);gap:20px}}

/* =================================================================
   NEWSLETTER
   ================================================================= */
.news{
  background:var(--teal-tint);border:1px solid #D6EAE8;border-radius:16px;padding:24px 20px;
  display:grid;gap:16px;align-items:center;
}
.news h3{font-family:var(--serif);font-size:22px;margin:0;color:var(--navy);font-weight:600;line-height:1.2}
.news p{margin:7px 0 0;color:var(--muted);font-size:14.5px;max-width:46ch}
.news-form{display:flex;gap:8px;flex-wrap:wrap}
.news-form input{
  flex:1 1 200px;min-width:0;padding:13px 15px;border-radius:999px;border:1px solid #CFE0DE;background:#fff;
  font-family:var(--sans);font-size:15px;color:var(--ink);
}
.news-form input::placeholder{color:#9AA6B2}
@media (min-width:900px){
  .news{grid-template-columns:1.15fr .85fr;padding:30px 34px;gap:30px}
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-foot{background:var(--navy);color:#fff;margin-top:40px;padding:40px 0 0}
.foot-grid{display:grid;gap:28px}
.foot-brand .wordmark{height:30px}
.foot-brand p{color:rgba(255,255,255,.62);font-size:13.5px;margin:14px 0 0;max-width:32ch;line-height:1.5}
.foot-col h4{
  font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);margin:0 0 13px;font-weight:500;
}
.foot-col ul{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.foot-col a,.foot-col span{color:rgba(255,255,255,.78);font-size:14px}
.foot-col a:hover{color:#fff}
.contact-grid{display:grid;gap:9px}
.contact-grid .addr{color:rgba(255,255,255,.78);font-size:14px;line-height:1.5}
.pending{
  display:inline-block;font-family:var(--mono);font-size:10px;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.55);border:1px dashed rgba(255,255,255,.28);border-radius:5px;padding:3px 7px;justify-self:start;
}
.socials{display:flex;gap:9px;margin-top:18px}
.socials a{
  width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.1);
  display:inline-flex;align-items:center;justify-content:center;color:#fff;
}
.socials a:hover{background:rgba(255,255,255,.2)}
.socials svg{width:16px;height:16px}
.foot-bar{
  margin-top:34px;border-top:1px solid rgba(255,255,255,.14);padding:16px 0 22px;
  display:flex;flex-wrap:wrap;gap:8px 20px;align-items:center;justify-content:space-between;
}
.foot-bar p{margin:0;font-size:12.5px;color:rgba(255,255,255,.55)}
.foot-legal{display:flex;gap:18px;flex-wrap:wrap}
.foot-legal a{font-size:12.5px;color:rgba(255,255,255,.7)}
.foot-legal a:hover{color:#fff}

/* mobile footer: Explore | Information side by side, Contact its own row below */
@media (max-width:767px){
  .foot-grid{grid-template-columns:1fr 1fr}
  .foot-brand{grid-column:1 / -1}
  .foot-contact{grid-column:1 / -1}
  /* same tracks and gutter as the Explore / Information columns above */
  .contact-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr);column-gap:28px;row-gap:12px}
  .contact-grid a{overflow-wrap:anywhere;font-size:14px}
  .contact-grid .addr{grid-column:1 / -1}
}
@media (min-width:768px){
  .foot-grid{grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:32px}
}
@media (min-width:1024px){.foot-grid{gap:44px}}
