/* =================================================================
   BOS — Big & Tall Menswear · Homepage
   Light editorial theme · hero carousel
   ================================================================= */

/* ----- Tokens ----- */
:root{
  --green:#3DAE2B;
  --green-dk:#2C8520;
  --green-deep:#1E5A15;
  --green-br:#5ABF46;
  --green-wash:#EBF4E7;
  --sale:#C0392B;
  --ink:#10201A;
  --ink-soft:#2A332E;
  --text:#1B2620;
  --muted:#697066;
  --bg:#FFFFFF;
  --bg-soft:#F3F4F1;
  --bg-soft2:#E9EBE5;
  --line:#E3E4DE;
  --line-soft:#EDEEE9;
  --white:#FFFFFF;

  --display:'Fraunces',Georgia,'Times New Roman',serif;
  --body:'Hanken Grotesk',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;

  --wrap:1320px;
  --pad:clamp(1.15rem,4vw,3.5rem);
  --radius:3px;
  --ease:cubic-bezier(.22,.68,.16,1);
}

/* ----- Reset ----- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;overflow-x:clip}
body{
  font-family:var(--body);
  font-size:17px;
  line-height:1.65;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  font-optical-sizing:auto;
  overflow-x:clip;
  min-height:100vh;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button,input{font:inherit;color:inherit}
button{border:0;background:none;cursor:pointer}
ul,ol{list-style:none}
h1,h2,h3,h4{font-weight:400;line-height:1.05}
em{font-style:italic}
address{font-style:normal}
[id]{scroll-margin-top:120px}

:focus-visible{outline:2px solid var(--green-dk);outline-offset:3px;border-radius:2px}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

/* ----- Decorative icon strokes ----- */
.iconbtn svg,.btn svg,.totop svg,.burger svg,.hero__nav svg{
  fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round;
}

/* ----- Grain ----- */
.grain{
  position:fixed;inset:0;z-index:9999;pointer-events:none;
  opacity:.04;mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----- Layout ----- */
.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--pad);width:100%}
.section{padding-block:clamp(3.8rem,8.5vw,8rem)}

/* ----- Type helpers ----- */
.eyebrow{
  display:inline-flex;align-items:center;
  font-size:.72rem;font-weight:700;letter-spacing:.22em;
  text-transform:uppercase;color:var(--green-dk);
}
.eyebrow--mark::before{
  content:"";width:30px;height:2px;margin-right:.85rem;
  background:var(--green);flex:none;
}
.eyebrow--light{color:var(--green-br)}
.eyebrow--light.eyebrow--mark::before{background:var(--green-br)}

.sec-title{
  font-family:var(--display);
  font-size:clamp(2.15rem,4.7vw,4rem);
  font-weight:430;letter-spacing:-.022em;line-height:1.03;
  color:var(--text);
}
.sec-title em{color:var(--green-dk)}

.link-arrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.82rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--text);
  padding-bottom:3px;border-bottom:1.5px solid var(--text);
  transition:color .3s var(--ease),border-color .3s var(--ease),gap .3s var(--ease);
}
.link-arrow span{transition:transform .3s var(--ease)}
.link-arrow:hover{color:var(--green-dk);border-color:var(--green)}
.link-arrow:hover span{transform:translateX(4px)}

/* ----- Buttons ----- */
.btn{
  display:inline-flex;align-items:center;gap:.7rem;
  padding:1.05rem 1.7rem;
  font-size:.82rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;
  border-radius:var(--radius);
  border:1.6px solid transparent;
  transition:background-color .35s var(--ease),color .35s var(--ease),
    border-color .35s var(--ease),transform .35s var(--ease);
}
.btn svg{width:1.15em;height:1.15em;transition:transform .35s var(--ease)}
.btn:hover svg{transform:translateX(5px)}
.btn--dark{background:var(--ink);color:var(--white);border-color:var(--ink)}
.btn--dark:hover{background:var(--green);border-color:var(--green);color:var(--ink)}
.btn--green{background:var(--green);color:var(--ink);border-color:var(--green)}
.btn--green:hover{background:var(--ink);border-color:var(--ink);color:var(--white)}
.btn--line{background:transparent;color:var(--text);border-color:var(--text)}
.btn--line:hover{background:var(--ink);border-color:var(--ink);color:var(--white)}
.btn--line-light{background:transparent;color:var(--white);border-color:rgba(255,255,255,.55)}
.btn--line-light:hover{background:var(--white);border-color:var(--white);color:var(--ink)}

/* ----- Reveal ----- */
.js [data-reveal]{
  opacity:0;transform:translateY(22px);
  transition:opacity .8s var(--ease),transform .8s var(--ease);
}
.js [data-reveal].is-visible{opacity:1;transform:none}

/* =================================================================
   ANNOUNCEMENT
   ================================================================= */
.announce{background:var(--bg-soft2);color:var(--text);border-bottom:1px solid var(--line)}
.announce__track{
  display:flex;align-items:center;justify-content:center;gap:1.1rem;
  max-width:var(--wrap);margin-inline:auto;
  padding:.62rem var(--pad);
  font-size:.71rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
}
.announce__dot{width:4px;height:4px;border-radius:50%;background:var(--green);flex:none}

/* =================================================================
   HEADER
   ================================================================= */
.header{
  position:sticky;top:0;z-index:200;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s var(--ease);
}
.header.is-scrolled{box-shadow:0 12px 36px -28px rgba(16,32,26,.5)}
.header__inner{
  max-width:var(--wrap);margin-inline:auto;
  padding-inline:var(--pad);
  display:flex;align-items:center;justify-content:space-between;gap:1.4rem;
  height:88px;transition:height .3s var(--ease);
}
.header.is-scrolled .header__inner{height:72px}
.header__logo img{height:54px;width:auto;transition:height .3s var(--ease)}
.header.is-scrolled .header__logo img{height:44px}

.header__nav{display:flex;gap:1.9rem}
.header__nav a{
  position:relative;font-size:.96rem;font-weight:500;
  padding-block:.4rem;color:var(--text);
}
.header__nav a::after{
  content:"";position:absolute;left:0;bottom:0;
  width:100%;height:1.5px;background:var(--green);
  transform:scaleX(0);transform-origin:left;
  transition:transform .32s var(--ease);
}
.header__nav a:hover{color:var(--green-dk)}
.header__nav a:hover::after{transform:scaleX(1)}

.header__actions{display:flex;align-items:center;gap:.35rem}
.iconbtn{
  width:42px;height:42px;display:grid;place-items:center;
  border-radius:50%;color:var(--text);position:relative;
  transition:background-color .3s var(--ease),color .3s var(--ease);
}
.iconbtn svg{width:21px;height:21px}
.iconbtn:hover{background:var(--ink);color:var(--white)}
.iconbtn__count{
  position:absolute;top:1px;right:0;
  width:18px;height:18px;border-radius:50%;
  background:var(--green);color:var(--ink);
  font-size:.62rem;font-weight:800;
  display:grid;place-items:center;
  border:2px solid var(--bg);
}

.burger{
  display:none;width:44px;height:44px;
  flex-direction:column;justify-content:center;gap:5px;
  padding:0 9px;
}
.burger span{height:2px;width:100%;background:var(--text);transition:.3s var(--ease)}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ----- Drawer ----- */
.drawer{
  position:fixed;top:0;left:0;z-index:300;
  width:min(86vw,380px);height:100dvh;
  background:var(--bg);color:var(--text);
  border-right:1px solid var(--line);
  padding:6.5rem var(--pad) 2.5rem;
  transform:translateX(-102%);
  transition:transform .45s var(--ease);
  display:flex;flex-direction:column;justify-content:space-between;
}
.drawer.is-open{transform:translateX(0)}
.drawer__nav{display:flex;flex-direction:column}
.drawer__nav a{
  font-family:var(--display);font-size:1.65rem;font-weight:420;
  padding:.72rem 0;border-bottom:1px solid var(--line);
  transition:color .25s var(--ease),padding-left .25s var(--ease);
}
.drawer__nav a:hover{color:var(--green-dk);padding-left:.5rem}
.drawer__foot p{font-size:.92rem;color:var(--muted);margin-bottom:.8rem}
.drawer__foot .link-arrow{color:var(--green-dk);border-color:var(--green)}

.scrim{
  position:fixed;inset:0;z-index:250;
  background:rgba(16,32,26,.5);backdrop-filter:blur(2px);
  opacity:0;transition:opacity .4s var(--ease);
}
.scrim.is-on{opacity:1}

/* =================================================================
   HERO CAROUSEL
   ================================================================= */
.hero{position:relative;background:var(--green-wash);overflow:hidden;border-bottom:1px solid var(--line)}
.hero__viewport{position:relative;height:clamp(500px,70vh,652px)}
.hero__slide{
  position:absolute;inset:0;
  display:grid;grid-template-columns:1.06fr 1fr;
  opacity:0;visibility:hidden;
  transition:opacity .9s var(--ease),visibility .9s var(--ease);
}
.hero__slide.is-active{opacity:1;visibility:visible}
.hero__panel{
  display:flex;align-items:center;
  background:var(--green-wash);
  padding:clamp(2rem,5vw,4rem) clamp(1.4rem,5vw,5.5rem);
}
.hero__copy{max-width:540px}
.hero__copy>*{
  opacity:0;transform:translateY(26px);
  transition:opacity .85s var(--ease),transform .85s var(--ease);
}
.hero__slide.is-active .hero__copy>*{opacity:1;transform:none}
.hero__slide.is-active .hero__copy>*:nth-child(1){transition-delay:.16s}
.hero__slide.is-active .hero__copy>*:nth-child(2){transition-delay:.28s}
.hero__slide.is-active .hero__copy>*:nth-child(3){transition-delay:.4s}
.hero__slide.is-active .hero__copy>*:nth-child(4){transition-delay:.52s}
.hero__kicker{
  display:flex;align-items:center;
  font-size:.74rem;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--green-dk);
  margin-bottom:1.3rem;
}
.hero__kicker::before{
  content:"";width:32px;height:2px;background:var(--green);
  margin-right:.85rem;flex:none;
}
.hero__headline{
  font-family:var(--display);
  font-size:clamp(2.5rem,4.7vw,4.5rem);
  font-weight:430;letter-spacing:-.026em;line-height:1.0;
  color:var(--text);
}
.hero__headline em{color:var(--green-dk)}
.hero__sub{
  margin:1.4rem 0 2rem;
  font-size:clamp(1.02rem,1.3vw,1.16rem);
  color:var(--muted);max-width:42ch;
}
.hero__actions{display:flex;flex-wrap:wrap;gap:.85rem}
.hero__photo{position:relative;overflow:hidden;background:var(--bg-soft2)}
.hero__photo img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero__slide:nth-child(1) .hero__photo img{object-position:27% center}
.hero__slide:nth-child(3) .hero__photo img{
  object-position:center top;transform:scale(1.52);transform-origin:center top;
}

.hero__nav{
  position:absolute;top:50%;transform:translateY(-50%);z-index:6;
  width:52px;height:52px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--ink);color:var(--white);
  box-shadow:0 12px 26px -12px rgba(16,32,26,.5);
  transition:background-color .3s var(--ease),color .3s var(--ease);
}
.hero__nav svg{width:21px;height:21px}
.hero__nav:hover{background:var(--green);color:var(--ink)}
.hero__nav--prev{left:clamp(.9rem,1.8vw,1.5rem)}
.hero__nav--next{right:clamp(.9rem,1.8vw,1.5rem)}

.hero__dots{
  position:absolute;z-index:6;display:flex;gap:.5rem;
  bottom:clamp(1.3rem,3.5vh,2rem);
  left:clamp(1.4rem,5vw,5.5rem);
}
.hero__dot{
  width:34px;height:4px;border-radius:2px;
  background:rgba(16,32,26,.18);
  transition:background-color .3s var(--ease);
}
.hero__dot:hover{background:rgba(16,32,26,.4)}
.hero__dot.is-active{background:var(--green)}

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee{
  background:var(--bg-soft);color:var(--text);
  border-block:1px solid var(--line);
  padding-block:1.15rem;overflow:hidden;
}
.marquee__track{
  display:flex;align-items:center;gap:2.4rem;
  width:max-content;white-space:nowrap;
  animation:slide 42s linear infinite;
}
.marquee span{
  font-family:var(--display);font-style:italic;
  font-size:1.55rem;font-weight:400;letter-spacing:.005em;
}
.marquee i{color:var(--green);font-style:normal;font-size:.9rem}
@keyframes slide{to{transform:translateX(-50%)}}

/* =================================================================
   SECTION HEADER
   ================================================================= */
.sec-head{
  display:grid;grid-template-columns:1fr auto;
  gap:.1rem 2rem;
  margin-bottom:clamp(2.2rem,4vw,3.6rem);
}
.sec-head .eyebrow{grid-column:1;grid-row:1}
.sec-head .sec-title{grid-column:1;grid-row:2;margin-top:1.05rem}
.sec-head__link{grid-column:2;grid-row:2;justify-self:end;align-self:end;margin-bottom:.45rem}
.sec-head--center{
  grid-template-columns:1fr;justify-items:center;text-align:center;
}
.sec-head--center .eyebrow{justify-content:center}
.sec-head__sub{
  margin-top:1.15rem;max-width:46ch;color:var(--muted);
  font-size:1.04rem;
}

/* =================================================================
   CATEGORIES
   ================================================================= */
.categories{background:var(--bg-soft)}
.cat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(1rem,1.8vw,1.7rem);
}
.cat{
  display:flex;flex-direction:column;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease);
}
.cat:hover{transform:translateY(-6px);box-shadow:0 32px 50px -34px rgba(16,32,26,.34)}
.cat__media{aspect-ratio:4/4.7;overflow:hidden;background:var(--bg-soft2)}
.cat__media img{
  width:100%;height:100%;object-fit:cover;
  transform:scale(var(--cz,1));
  transition:transform .8s var(--ease);
}
.cat:hover .cat__media img{--cz:1.06}
.cat__media--chino img{object-position:13% 50%}
.cat__media--active img{object-position:0% 42%;transform-origin:left center;--cz:1.17}
.cat:hover .cat__media--active img{--cz:1.24}
.cat__body{padding:1.7rem 1.6rem 1.85rem;position:relative}
.cat__no{
  position:absolute;top:1.5rem;right:1.6rem;
  font-family:var(--display);font-size:1rem;color:var(--green-dk);
}
.cat__name{
  font-family:var(--display);font-size:1.62rem;
  font-weight:480;letter-spacing:-.015em;
}
.cat__desc{
  margin:.55rem 0 1.15rem;color:var(--muted);
  font-size:.96rem;line-height:1.55;
}
.cat__cta{
  font-size:.76rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--text);
  display:inline-flex;align-items:center;gap:.45rem;
}
.cat__cta span{transition:transform .3s var(--ease)}
.cat:hover .cat__cta{color:var(--green-dk)}
.cat:hover .cat__cta span{transform:translateX(5px)}

/* =================================================================
   THE BOS DIFFERENCE
   ================================================================= */
.difference{background:var(--bg)}
.difference__grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(2.4rem,5vw,5rem);align-items:start;
}
.difference__lead{
  margin-top:1.5rem;max-width:44ch;
  color:var(--muted);font-size:1.06rem;
}
.difference__detail{
  display:flex;align-items:center;gap:1.5rem;
  margin-top:2.6rem;padding-top:2.3rem;
  border-top:1px solid var(--line);
  width:min(100%,470px);
}
.difference__logo{
  width:clamp(94px,11vw,114px);height:auto;flex:none;
  animation:spin 24s linear infinite;
}
.difference__sig{
  font-family:var(--display);font-size:1.42rem;font-weight:440;
  line-height:1.22;color:var(--text);
}
.difference__sig span{
  display:block;margin-top:.55rem;
  font-family:var(--body);font-size:.93rem;font-weight:400;
  line-height:1.55;color:var(--muted);
}

.pillars{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:var(--line);
  border:1px solid var(--line);border-radius:var(--radius);
}
.pillar{
  background:var(--bg);
  padding:2rem 1.7rem 2.1rem;
  transition:background-color .35s var(--ease);
}
.pillar:hover{background:var(--bg-soft)}
.pillar__no{
  font-family:var(--display);font-size:2.5rem;font-weight:500;
  color:transparent;-webkit-text-stroke:1.3px var(--green);
  display:block;margin-bottom:.7rem;
  transition:color .35s var(--ease);
}
.pillar:hover .pillar__no{color:var(--green)}
.pillar h3{
  font-family:var(--display);font-size:1.34rem;font-weight:480;
  color:var(--text);margin-bottom:.5rem;
}
.pillar p{font-size:.95rem;color:var(--muted);line-height:1.58}

/* ----- Rotating badge ----- */
@keyframes spin{to{transform:rotate(360deg)}}

/* =================================================================
   CATALOG / NEW ARRIVALS
   ================================================================= */
.catalog{background:var(--bg-soft)}
.products{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:clamp(.9rem,1.7vw,1.7rem) clamp(.9rem,1.4vw,1.4rem);
}
.product{display:flex;flex-direction:column;min-width:0}
.product__media{
  position:relative;display:block;flex:none;min-width:0;
  background:var(--white);
  border:1px solid var(--line);
  aspect-ratio:4/4.6;overflow:hidden;
  padding:7%;
}
.product__media img{
  width:100%;height:100%;object-fit:contain;
  transition:transform .6s var(--ease);
  mix-blend-mode:multiply;
}
.product:hover .product__media img{transform:scale(1.05)}
.product__tag{
  position:absolute;z-index:2;top:.7rem;left:.7rem;
  padding:.34rem .6rem;
  font-size:.62rem;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;border-radius:2px;
  background:var(--ink);color:var(--white);
}
.product__tag--hot{background:var(--green);color:var(--ink)}
.product__tag--low{background:var(--white);color:var(--text);border:1px solid var(--line)}
.product__add{
  position:absolute;z-index:2;left:.7rem;right:.7rem;bottom:.7rem;
  padding:.78rem;text-align:center;
  background:var(--ink);color:var(--white);
  font-size:.72rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;border-radius:2px;
  transform:translateY(calc(100% + .9rem));opacity:0;
  transition:transform .4s var(--ease),opacity .4s var(--ease),background-color .3s var(--ease);
}
.product__media:hover .product__add{transform:translateY(0);opacity:1}
.product__add:hover{background:var(--green);color:var(--ink)}
.product__info{padding-top:1rem;display:flex;flex-direction:column;gap:.28rem}
.product__brand{
  font-size:.68rem;font-weight:800;letter-spacing:.13em;
  text-transform:uppercase;color:var(--green-dk);
}
.product__name{font-size:1rem;font-weight:600;line-height:1.32;min-height:2.64em}
.product__name a:hover{color:var(--green-dk)}
.product__meta{display:flex;align-items:baseline;gap:.7rem;margin-top:.2rem}
.product__price{font-family:var(--display);font-size:1.16rem;font-weight:500}
.product__sizes{
  font-size:.68rem;font-weight:700;letter-spacing:.07em;
  text-transform:uppercase;color:var(--muted);
  padding:.16rem .42rem;border:1px solid var(--line);border-radius:2px;
}
/* more tile */
.product--more{
  background:var(--green);color:var(--ink);
  border-radius:var(--radius);
  aspect-ratio:4/4.6;
  display:flex;flex-direction:column;justify-content:center;
  align-items:flex-start;gap:.5rem;
  padding:1.9rem 1.7rem;
  transition:background-color .35s var(--ease);
}
.product--more:hover{background:var(--green-dk)}
.product__more-no{
  font-family:var(--display);font-size:2.7rem;font-weight:500;
  color:var(--ink);line-height:1;
}
.product__more-txt{
  font-family:var(--display);font-size:1.35rem;font-weight:430;
  line-height:1.18;
}
.product__more-cta{
  margin-top:.7rem;
  font-size:.74rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--ink);
  display:inline-flex;gap:.45rem;
}
.product__more-cta span{transition:transform .3s var(--ease)}

/* ----- Hot sales ----- */
.sale{background:var(--bg-soft)}
.product__tag--sale{background:var(--sale);color:var(--white)}
.product__price--sale{color:var(--sale)}
.product__was{
  font-size:.92rem;color:var(--muted);
  text-decoration:line-through;
}
.product--more:hover .product__more-cta span{transform:translateX(5px)}

/* =================================================================
   BRAND STATEMENT
   ================================================================= */
.statement{background:var(--bg);text-align:center}
.statement__inner{
  max-width:920px;margin-inline:auto;
  padding-block:clamp(3.6rem,7vw,7rem);
  display:flex;flex-direction:column;align-items:center;
}
.statement__logo{
  width:clamp(74px,8vw,94px);height:auto;
  animation:spin 26s linear infinite;
}
.statement__eyebrow{
  margin-top:1.7rem;
  font-size:.72rem;font-weight:700;letter-spacing:.22em;
  text-transform:uppercase;color:var(--green-dk);
}
.statement__quote{
  margin-top:1.3rem;
  font-family:var(--display);
  font-size:clamp(1.95rem,4vw,3.5rem);
  font-weight:420;letter-spacing:-.022em;line-height:1.13;
  color:var(--text);
}
.statement__quote em{color:var(--green-dk)}
.statement__by{
  margin:1.5rem auto 1.7rem;max-width:54ch;
  color:var(--muted);font-size:1.06rem;
}

/* =================================================================
   FIND YOUR FIT
   ================================================================= */
.fit{background:var(--bg)}
.fit__grid{
  display:grid;grid-template-columns:1.04fr .96fr;
  gap:clamp(2.2rem,4.5vw,4.8rem);align-items:center;
}
.fit__lead{margin:1.4rem 0 1.6rem;color:var(--muted);font-size:1.06rem;max-width:42ch}
.fit__points{display:flex;flex-direction:column;gap:.62rem;margin-bottom:2rem}
.fit__points li{
  display:flex;align-items:center;gap:.7rem;
  font-size:1rem;font-weight:500;
}
.fit__points span{
  width:24px;height:24px;flex:none;border-radius:50%;
  background:var(--green);color:var(--ink);
  display:grid;place-items:center;font-size:.78rem;font-weight:800;
}
.fit__sizes{
  background:var(--green-wash);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:clamp(2rem,3.5vw,3rem);
}
.fit__sizes-label{
  font-size:.72rem;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--green-dk);
  margin-bottom:1.6rem;
}
.size-badges{display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:1.7rem}
.size-badge{
  width:clamp(58px,8vw,74px);aspect-ratio:1;
  border-radius:50%;border:1.6px solid var(--green);
  display:grid;place-items:center;
  font-family:var(--display);font-size:1.18rem;font-weight:500;
  color:var(--text);background:var(--bg);
}
.size-badge--star{
  background:var(--green);border-color:var(--green);
  color:var(--ink);font-weight:560;
}
.fit__sizes-note{
  font-size:.96rem;color:var(--muted);line-height:1.6;
  padding-top:1.5rem;border-top:1px solid var(--line);
}

/* =================================================================
   HOUSES
   ================================================================= */
.houses{background:var(--bg-soft)}
.house-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:clamp(1rem,1.6vw,1.5rem);
}
.house{
  display:flex;flex-direction:column;
  border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;background:var(--bg);
  transition:transform .4s var(--ease),box-shadow .4s var(--ease);
}
.house:hover{transform:translateY(-6px);box-shadow:0 30px 46px -32px rgba(16,32,26,.32)}
.house__media{aspect-ratio:1;overflow:hidden;background:var(--ink)}
.house__media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .8s var(--ease);
}
.house:hover .house__media img{transform:scale(1.07)}
.house__body{padding:1.3rem 1.35rem 1.5rem}
.house__body h3{
  font-family:var(--display);font-size:1.3rem;font-weight:490;
  letter-spacing:-.012em;
}
.house__body p{
  font-size:.84rem;color:var(--muted);margin-top:.15rem;
  font-weight:500;
}
.house__cta{
  display:inline-flex;align-items:center;gap:.4rem;
  margin-top:1rem;
  font-size:.71rem;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:var(--green-dk);
}
.house__cta span{transition:transform .3s var(--ease)}
.house:hover .house__cta span{transform:translateX(5px)}

/* =================================================================
   STORES
   ================================================================= */
.stores{background:var(--bg)}
.stores__grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(2.2rem,5vw,5rem);align-items:center;
}
.stores__media{
  border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 38px 60px -42px rgba(16,32,26,.42);
}
.stores__media img{width:100%;aspect-ratio:5/4;object-fit:cover}
.stores__lead{margin:1.4rem 0 1.8rem;color:var(--muted);font-size:1.06rem;max-width:42ch}
.store-list{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:var(--line);
  border:1px solid var(--line);border-radius:var(--radius);
}
.store-list li{
  background:var(--bg-soft);
  padding:.95rem 1.1rem;
  display:flex;align-items:center;justify-content:space-between;gap:.6rem;
  transition:background-color .3s var(--ease);
}
.store-list li:hover{background:var(--green-wash)}
.store-list li:last-child{grid-column:1/-1}
.store-list__city{font-weight:600;font-size:1rem}
.store-list__tag{
  font-size:.6rem;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;
  background:var(--green);color:var(--ink);
  padding:.2rem .42rem;border-radius:2px;
}
.stores__addr{
  margin-top:1.6rem;padding-top:1.4rem;
  border-top:1px solid var(--line);
  font-size:.92rem;color:var(--muted);line-height:1.7;
}

/* =================================================================
   VOICES
   ================================================================= */
.voices{background:var(--bg-soft)}
.voice-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:clamp(1rem,1.8vw,1.6rem);
}
.voice{
  position:relative;
  background:var(--bg);
  border:1px solid var(--line);border-radius:var(--radius);
  padding:2.1rem 1.85rem 1.9rem;
  display:flex;flex-direction:column;gap:1rem;
  overflow:hidden;
}
.voice::before{
  content:"\201C";
  position:absolute;top:-2.6rem;right:.6rem;
  font-family:var(--display);font-size:9rem;
  color:var(--bg-soft2);line-height:1;z-index:0;
}
.voice__stars{color:var(--green);letter-spacing:.12em;font-size:.95rem;position:relative}
.voice blockquote{
  font-family:var(--display);font-size:1.16rem;font-weight:380;
  line-height:1.45;letter-spacing:-.008em;position:relative;
}
.voice figcaption{
  display:flex;flex-direction:column;gap:.05rem;
  padding-top:1rem;border-top:1px solid var(--line);
  margin-top:auto;position:relative;
}
.voice figcaption strong{font-size:.98rem;font-weight:700}
.voice figcaption span{font-size:.82rem;color:var(--muted)}

/* =================================================================
   NEWSLETTER
   ================================================================= */
.newsletter{background:var(--green-deep);color:var(--white)}
.newsletter .eyebrow{color:rgba(255,255,255,.78)}
.newsletter .eyebrow.eyebrow--mark::before{background:rgba(255,255,255,.55)}
.newsletter__inner{
  padding-block:clamp(3.4rem,6vw,5.5rem);
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem);align-items:center;
}
.newsletter__title{
  font-family:var(--display);
  font-size:clamp(2.3rem,3.8vw,3.4rem);
  font-weight:430;letter-spacing:-.025em;line-height:1.02;
  margin:1rem 0 1rem;
}
.newsletter__title em{color:var(--green-br)}
.newsletter__text{color:rgba(255,255,255,.82);max-width:40ch}
.newsletter__text strong{color:var(--white);font-weight:700}
.field{
  display:flex;gap:.6rem;
  background:var(--white);border-radius:var(--radius);
  padding:.5rem;
}
.field input{
  flex:1;border:0;background:transparent;
  padding:.6rem .9rem;font-size:1rem;color:var(--ink);
}
.field input::placeholder{color:#9aa097}
.field input:focus{outline:none}
.field .btn{padding:.95rem 1.4rem;white-space:nowrap}
.newsletter__msg{
  min-height:1.3rem;margin-top:.7rem;
  font-size:.88rem;font-weight:600;color:var(--green-br);
}
.newsletter__tag{
  margin-top:.6rem;
  font-size:.74rem;font-weight:700;letter-spacing:.16em;
  text-transform:uppercase;color:rgba(255,255,255,.45);
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer{background:var(--bg-soft2);color:var(--text);border-top:1px solid var(--line)}
.footer__grid{
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1.1fr;
  gap:2.4rem;
  padding-block:clamp(3rem,5vw,4.6rem);
}
.footer__logo{height:62px;width:auto;margin-bottom:1.2rem}
.footer__brand p{
  color:var(--muted);font-size:.95rem;
  max-width:30ch;margin-bottom:1.5rem;
}
.footer__social{display:flex;gap:.6rem}
.footer__social a{
  width:40px;height:40px;border-radius:50%;
  border:1px solid var(--line);background:var(--bg);
  display:grid;place-items:center;color:var(--text);
  transition:background-color .3s var(--ease),color .3s var(--ease),border-color .3s var(--ease);
}
.footer__social svg{width:18px;height:18px;fill:currentColor}
.footer__social a:hover{background:var(--green);border-color:var(--green);color:var(--white)}

.footer__col h3{
  font-size:.74rem;font-weight:800;letter-spacing:.16em;
  text-transform:uppercase;color:var(--green-dk);
  margin-bottom:1.1rem;
}
.footer__col a,.footer__col p{
  display:block;
  font-size:.93rem;color:var(--muted);
  padding-block:.3rem;
}
.footer__col a{transition:color .25s var(--ease),padding-left .25s var(--ease)}
.footer__col a:hover{color:var(--green-dk);padding-left:.3rem}
.footer__col--visit p{padding-block:.15rem;line-height:1.6}
.footer__col--visit p+p{margin-top:.7rem}

.footer__bar{border-top:1px solid var(--line)}
.footer__bar-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:1.2rem;flex-wrap:wrap;
  padding-block:1.4rem;
}
.footer__bar-inner p{font-size:.82rem;color:var(--muted)}
.footer__pay{display:flex;gap:.5rem;flex-wrap:wrap}
.footer__pay span{
  font-size:.66rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;
  padding:.32rem .55rem;border-radius:2px;
  background:var(--bg);border:1px solid var(--line);color:var(--muted);
}
.footer__legal{display:flex;gap:1.2rem}
.footer__legal a{font-size:.82rem;color:var(--muted)}
.footer__legal a:hover{color:var(--green-dk)}

/* ----- Back to top ----- */
.totop{
  position:fixed;right:1.4rem;bottom:1.4rem;z-index:150;
  width:50px;height:50px;border-radius:50%;
  background:var(--ink);color:var(--white);
  display:grid;place-items:center;
  box-shadow:0 14px 30px -12px rgba(16,32,26,.55);
  opacity:0;transform:translateY(14px) scale(.9);
  transition:opacity .35s var(--ease),transform .35s var(--ease),background-color .3s var(--ease);
}
.totop svg{width:20px;height:20px}
.totop.is-on{opacity:1;transform:translateY(0) scale(1)}
.totop:hover{background:var(--green);color:var(--ink)}

/* ----- Toast ----- */
.toast{
  position:fixed;left:50%;bottom:2rem;z-index:9000;
  transform:translate(-50%,150%);
  background:var(--ink);color:var(--white);
  padding:.95rem 1.5rem;border-radius:var(--radius);
  font-size:.9rem;font-weight:600;
  box-shadow:0 20px 40px -16px rgba(16,32,26,.5);
  display:flex;align-items:center;gap:.6rem;
  transition:transform .5s var(--ease);
  max-width:90vw;
}
.toast::before{
  content:"";width:8px;height:8px;border-radius:50%;
  background:var(--green-br);flex:none;
}
.toast.is-on{transform:translate(-50%,0)}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width:1080px){
  .header__nav{gap:1.3rem}
  .header__nav a{font-size:.9rem}
  .footer__grid{grid-template-columns:1.4fr 1fr 1fr;gap:2rem 1.5rem}
  .footer__brand{grid-column:1/-1}
}

@media (max-width:980px){
  .header__nav{display:none}
  .burger{display:flex}
  .header__hide-sm{display:none}
  .difference__grid{grid-template-columns:1fr}
  .difference__detail{margin-inline:auto}
  .fit__grid{grid-template-columns:1fr}
  .stores__grid{grid-template-columns:1fr}
}

@media (max-width:860px){
  .products{grid-template-columns:repeat(3,1fr)}
  .house-grid{grid-template-columns:repeat(2,1fr)}
  .voice-grid{grid-template-columns:1fr}
  .voice::before{font-size:7rem}
  .newsletter__inner{grid-template-columns:1fr;gap:2rem}
  .sec-head{grid-template-columns:1fr}
  .sec-head__link{grid-column:1;grid-row:3;justify-self:start;margin:1.25rem 0 0}
}

@media (max-width:768px){
  .hero__viewport{height:clamp(620px,94vh,800px)}
  .hero__slide{grid-template-columns:1fr;grid-template-rows:40% 60%}
  .hero__photo{order:-1}
  .hero__nav{display:none}
  .hero__dots{left:50%;transform:translateX(-50%);bottom:1.3rem}
}

@media (max-width:680px){
  body{font-size:16px}
  .announce__track{gap:.7rem}
  .announce__track span:nth-child(n+3),.announce__dot{display:none}
  .cat-grid{grid-template-columns:1fr}
  .pillars{grid-template-columns:1fr}
  .products{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:1fr 1fr}
  .footer__brand{grid-column:1/-1}
  .footer__bar-inner{justify-content:flex-start}
  .store-list{grid-template-columns:1fr}
}

@media (max-width:430px){
  .hero__actions .btn{width:100%;justify-content:center}
  .products{grid-template-columns:1fr 1fr;gap:.8rem}
  .house-grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .field{flex-direction:column}
  .field .btn{justify-content:center}
  .btn{padding:.95rem 1.3rem}
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms!important;animation-iteration-count:1!important;
    transition-duration:.001ms!important;scroll-behavior:auto!important;
  }
  .js [data-reveal]{opacity:1;transform:none}
  .hero__media{transform:none!important}
  .hero__copy>*{opacity:1;transform:none}
}
