/* ==========================================================================
   Jack Ranch Cafe & Market — About page
   Loaded after style.css; only page-specific blocks live here.
   ========================================================================== */

/* ============================================================== PROGRESS = */
/* Sits above the sticky header (z-index 50) so it stays visible once the
   header pins to the top. */
.progress{position:fixed;inset:0 0 auto;height:3px;z-index:60;pointer-events:none}
.progress span{
  display:block;height:100%;width:0;
  background:linear-gradient(90deg,var(--gold),var(--brick));
  box-shadow:0 0 12px -2px rgba(125,31,31,.9);
  transition:width .12s linear;
}

/* ============================================================= PAGE HERO = */
/* Unlike the home hero (which must show its photo whole) this is a banner:
   the storefront is cropped deliberately so the copy has a dark left half to
   sit on, which is what lets the ken-burns drift work at all. */
.phero{
  position:relative;overflow:hidden;isolation:isolate;
  background:var(--wood-3);color:var(--cream);
  min-height:var(--hero-h);display:flex;align-items:center;
}
.phero__bg{
  /* Inset vertically only, and zoomed from its right edge: the photograph is
     anchored right, so any horizontal overflow -- from the inset or from the
     ken-burns scale -- would slide the sign off the edge of the page. */
  position:absolute;inset:-5% 0;z-index:0;transform-origin:100% 58%;
  background-color:var(--wood-3);
  background-image:url("../img/hero-bg.png");
  background-image:image-set(url("../img/hero-bg.webp") type("image/webp"),
                             url("../img/hero-bg.png")  type("image/png"));
  /* Fitted to the height and anchored right, so the whole storefront is in
     shot rather than a magnified slice of it, then faded out towards the left
     with a mask -- that fade is what gives the copy a dark ground to sit on
     without a seam where the photograph starts. `cover` was the alternative
     and it blew the sign up past the edges of the band. */
  background-size:auto 100%;background-position:100% 50%;background-repeat:no-repeat;
  -webkit-mask-image:linear-gradient(90deg,transparent 2%,rgba(0,0,0,.45) 22%,#000 46%);
  mask-image:linear-gradient(90deg,transparent 2%,rgba(0,0,0,.45) 22%,#000 46%);
  /* --py is written by the scroll handler; the zoom keeps running underneath. */
  transform:translate3d(0,var(--py,0px),0);
  animation:kenBurns 26s ease-in-out infinite alternate;
  will-change:transform;
}
@keyframes kenBurns{
  from{scale:1}
  to{scale:1.12}
}
/* Warm dark wash, heavy on the left where the copy lives: over the darkest
   part of that side the cream heading still clears 12:1. It thins to the
   right so the lit sign and porch stay readable. */
.phero__wash{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(96deg,rgba(20,12,7,.88) 0%,rgba(24,14,8,.7) 32%,
                          rgba(28,17,11,.38) 58%,rgba(28,17,11,.2) 80%,
                          rgba(28,17,11,.3) 100%),
    radial-gradient(120% 90% at 50% 120%,rgba(12,7,4,.7),transparent 60%);
}
.phero__inner{position:relative;z-index:3;padding-block:clamp(2rem,4vw,3.2rem)}
.phero__crumbs{
  display:flex;align-items:center;gap:.6rem;
  font-family:var(--f-cond);font-size:.76rem;letter-spacing:.2em;
  text-transform:uppercase;color:#d9c2a0;margin-bottom:1.1rem;
}
.phero__crumbs a{transition:color .25s}
.phero__crumbs a:hover{color:var(--gold-lt)}
.phero__crumbs span{color:var(--brick-lt)}
.phero__crumbs b{color:var(--gold-lt);font-weight:400}

/* Size and tracking only -- the paint and the entrance come from `.hd`, the
   shared display-heading treatment in style.css, so this banner heading and
   every h2 on the site match. A text-shadow here would sit on top of that
   clipped fill and hide it, hence the drop-shadow filter over there. */
.phero__title{
  font-size:clamp(2.8rem,8.1vw,5.83rem);line-height:.98;
  letter-spacing:.02em;text-transform:uppercase;--hd-pitch:1.02em;
}

.phero__rule{display:flex;align-items:center;gap:.9rem;margin:1.4rem 0 1.6rem;max-width:26rem}
.phero__rule i{height:2px;flex:1;background:linear-gradient(90deg,var(--gold),rgba(211,164,92,0))}
.phero__rule i:first-child{background:linear-gradient(270deg,var(--gold),rgba(211,164,92,0))}
.phero__rule b{color:var(--gold);font-size:.9rem;animation:starPulse 3.4s ease-in-out infinite}
@keyframes starPulse{
  0%,100%{transform:scale(1);filter:none}
  50%{transform:scale(1.35) rotate(18deg);filter:drop-shadow(0 0 8px rgba(211,164,92,.9))}
}
.phero__text{max-width:31rem;font-size:clamp(1rem,1.3vw,1.16rem);color:#efe0c6}

/* The shared motes are a dark brown, tuned for the cream home hero -- over
   this dark banner they need to be warm light specks instead. */
.phero .mote{background:radial-gradient(circle,rgba(255,214,152,.6),rgba(255,214,152,0) 70%)}

/* Wrap-point compensation for the squeezed headings that sit in narrow
   columns -- see the note beside .split__storyText h2 in style.css. */
.story__title,.cta__copy h2{width:calc(100% / var(--hd-sx))}

/* ================================================================ STORY = */
.story{
  position:relative;
  background-color:#f4e8ce;
  background-image:url("../img/story-bg.png");
  background-image:image-set(url("../img/story-bg.webp") type("image/webp"),
                             url("../img/story-bg.png")  type("image/png"));
  background-size:cover;background-position:center;
  padding:clamp(3.2rem,6vw,5.5rem) 0;
  border-bottom:1px solid rgba(125,31,31,.14);
}
.story__grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,5vw,4.5rem);
  align-items:center;
}
.story__text .eyebrow{margin-bottom:.5rem}
.story__title{
  font-size:clamp(1.6rem,2.75vw,2.32rem);line-height:1.16;margin-bottom:1.2rem;
  /* Caps, like every other display heading on the site. */
  text-transform:uppercase;
}
.story__text>p:not(.eyebrow){color:var(--ink-soft);margin-bottom:1rem;max-width:34rem}
.story__text .btn{margin-top:.9rem}

/* ---- the photographs ---- */
/* Both artworks carry their own deckled border, so nothing is framed again
   here: they only get a resting tilt, a drop shadow and the hover lift. The
   reveal helper ends on `transform:none`, which would flatten that tilt, so
   both ends of the reveal are restated at matching specificity. */
.storyshot{
  margin:0;justify-self:center;width:min(100%,560px);
  --rot:-1.4deg;
  filter:drop-shadow(0 24px 40px rgba(43,26,18,.4));
  transition:transform .55s var(--ease),filter .55s var(--ease);
  will-change:transform;
}
.storyshot--wall{--rot:1.2deg;width:min(100%,600px)}
.storyshot{transform:translateY(28px) rotate(var(--rot))}
.storyshot.is-in{transform:rotate(var(--rot))}
.storyshot.is-in:hover{
  transform:rotate(0deg) translateY(-7px);
  filter:drop-shadow(0 32px 50px rgba(43,26,18,.46));
}
.storyshot picture{display:block}
.storyshot img{width:100%;height:auto;display:block}

/* ================================================================== WHY = */
/* Same wood photograph as the footer, at the same 1:1 tile scale, so the two
   dark bands read as one piece of timber. */
.why{
  position:relative;color:var(--cream);
  background-color:#17100a;
  background-image:url("../img/footer-bg.png");
  background-image:image-set(url("../img/footer-bg.webp") type("image/webp"),
                             url("../img/footer-bg.png")  type("image/png"));
  background-size:auto;background-position:center;background-repeat:repeat;
  padding:clamp(3rem,5.5vw,4.6rem) 0;
}
.why::before,.why::after{
  content:"";position:absolute;left:0;right:0;height:3px;
  background:linear-gradient(90deg,transparent,rgba(211,164,92,.55),transparent);
}
.why::before{top:0}
.why::after{bottom:0}
.why__title{
  /* Near-white on the timber: the shared light variant leans gold, which is
     right beside a photograph but too dim for a heading this wide. */
  --hd-1:#fffdf8;--hd-2:#f7efe0;--hd-3:#eadfc7;--hd-4:#dccdae;--hd-5:#f3ead8;
  display:flex;align-items:center;justify-content:center;gap:.8rem;
  font-family:var(--f-west);font-weight:400;color:var(--gold-lt);
  font-size:clamp(1.13rem,2.27vw,1.73rem);text-transform:uppercase;
  letter-spacing:.02em;text-align:center;margin-bottom:2.6rem;
}
.why__title b{color:var(--brick-lt);font-size:.78em}
.why__title i{height:1px;flex:1;max-width:5.5rem;background:linear-gradient(90deg,transparent,var(--gold))}
.why__title i:last-child{background:linear-gradient(270deg,transparent,var(--gold))}

.why__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.why__item{
  position:relative;text-align:center;padding:.5rem clamp(.8rem,2vw,1.8rem);
  transition:transform .45s var(--ease);
}
/* Dotted dividers, like the mock-up: a repeating gradient rather than four
   extra elements. */
.why__item+.why__item::before{
  content:"";position:absolute;left:0;top:6%;bottom:6%;width:1px;
  background:repeating-linear-gradient(180deg,rgba(211,164,92,.55) 0 4px,transparent 4px 10px);
}
.why__item:hover{transform:translateY(-9px)}
.why__icon{
  width:62px;height:62px;margin:0 auto 1.05rem;border-radius:50%;
  display:grid;place-items:center;color:var(--cream);
  background:radial-gradient(circle at 34% 28%,var(--brick-lt),var(--brick) 60%,var(--brick-dk));
  box-shadow:0 12px 24px -12px rgba(0,0,0,.9),inset 0 0 0 1px rgba(246,236,216,.14);
  transition:transform .5s var(--ease),box-shadow .5s var(--ease);
}
.why__icon svg{width:28px;height:28px;fill:currentColor;transition:transform .5s var(--ease)}
/* Wahi cream artwork jo home page ke bays me hai. Height auto, taaki har
   icon apna anupaat rakhe. */
.why__icon img{width:30px;height:auto;max-height:30px;object-fit:contain;transition:transform .5s var(--ease)}
.why__item:hover .why__icon{
  transform:rotate(-9deg) scale(1.1);
  box-shadow:0 18px 30px -12px rgba(0,0,0,.9),0 0 0 6px rgba(211,164,92,.16);
}
.why__item:hover .why__icon svg,
.why__item:hover .why__icon img{transform:scale(1.12) rotate(9deg)}
.why__item h3{
  font-family:var(--f-cond);font-weight:600;font-size:.95rem;
  letter-spacing:.13em;text-transform:uppercase;color:var(--cream);
  margin-bottom:.55rem;
}
.why__item p{font-size:.9rem;color:#cbb494;max-width:17rem;margin-inline:auto}

/* =============================================================== VALUES = */
.values{
  position:relative;overflow:hidden;
  background:linear-gradient(180deg,#f7efdd,#f1e5cb);
  padding:clamp(3.2rem,6vw,5.2rem) 0;
}
.values__grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);
  align-items:center;
}


.values__title{
  font-family:var(--f-west);font-weight:400;
  font-size:clamp(1.62rem,3.02vw,2.32rem);text-transform:uppercase;
  margin-bottom:1.6rem;
}
.values__title b{color:var(--brick);font-size:.7em;vertical-align:.15em}
.values__list{list-style:none;margin:0;padding:0;display:grid;gap:1.15rem}
.values__list li{
  display:flex;gap:1rem;align-items:flex-start;
  padding:.35rem .6rem .35rem .1rem;border-radius:4px;
  transition:transform .35s var(--ease),background .35s;
}
.values__list li:hover{transform:translateX(8px);background:rgba(125,31,31,.055)}
.values__list h3{
  font-family:var(--f-cond);font-weight:600;font-size:.92rem;
  letter-spacing:.13em;text-transform:uppercase;margin-bottom:.2rem;
}
.values__list p{font-size:.93rem;color:var(--ink-soft)}
.tick{flex:none;width:26px;height:26px;color:var(--brick);margin-top:.15rem}
.tick svg{width:100%;height:100%;fill:none}
.tick circle{fill:var(--brick)}
/* The check draws itself in once the row reveals. */
.tick__mark{
  stroke:var(--cream);stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:18;stroke-dashoffset:18;
}
.values__list li.is-in .tick__mark{animation:drawTick .55s var(--ease) .25s forwards}
@keyframes drawTick{to{stroke-dashoffset:0}}
.values__list li:hover .tick{animation:tickPop .5s var(--ease)}
@keyframes tickPop{50%{transform:scale(1.22) rotate(-8deg)}}

/* ---- windmill watermark ---- */
.windmill{
  position:absolute;right:clamp(-2rem,1vw,2rem);bottom:0;z-index:0;
  width:clamp(150px,17vw,240px);opacity:.13;pointer-events:none;
  transform:translate3d(0,var(--py,0px),0);
}
.windmill svg{width:100%;height:auto;fill:var(--wood);stroke:var(--wood)}
.windmill__tower{fill:none;stroke-width:4;stroke-linecap:round}
.windmill__tower path:last-child{stroke-width:2.5;opacity:.8}
.windmill__tail{stroke:none}
.windmill__rim{fill:none;stroke-width:2.5}
.windmill__hub,.windmill__spin path{stroke:none}
/* The hub offset stays on the outer group as an SVG attribute -- a CSS
   transform on the same element would replace it, not add to it -- so the
   spin gets its own inner group. */
.windmill__spin{transform-box:fill-box;transform-origin:center;animation:spin 14s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* ================================================================== CTA = */
.cta{
  position:relative;overflow:hidden;color:var(--cream);
  background:linear-gradient(180deg,var(--brick),var(--brick-dk));
  border-block:3px solid rgba(211,164,92,.35);
}
/* A slow highlight sweeps across the band, like sun moving over paint. */
.cta::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(105deg,transparent 35%,rgba(255,226,178,.16) 50%,transparent 65%);
  transform:translateX(-100%);animation:sweep 7s ease-in-out 1.5s infinite;
}
@keyframes sweep{0%{transform:translateX(-100%)}55%,100%{transform:translateX(100%)}}
.cta__inner{
  position:relative;z-index:1;
  display:flex;align-items:center;gap:clamp(1.2rem,3vw,2.4rem);
  padding:clamp(1.6rem,3vw,2.4rem) 0;
}
.cta__hat{width:170px;flex:none;color:var(--gold-lt);animation:hatTip 6s ease-in-out infinite}
.cta__hat svg{width:100%;height:auto;fill:none;stroke:currentColor;stroke-width:3;stroke-linecap:round}
.cta__copy{flex:1}
.cta__copy h2{
  font-family:var(--f-west);font-weight:400;text-transform:uppercase;
  font-size:clamp(1.24rem,2.7vw,2rem);letter-spacing:.01em;
}
.cta__copy p{font-family:var(--f-cond);letter-spacing:.08em;color:#f3ddbe;margin-top:.35rem;max-width:62ch}
/* Practical details ke liye: chhota naap, gold rang, aur bullet se alag-alag
   tukde. Narrow par ye apne aap wrap ho jaate hain.
   `.cta__copy p` class + element hai, isliye yahan bhi wahi jodi chahiye --
   warna colour aur width dobara set hi nahi hote. */
.cta__copy p.cta__meta{
  display:flex;flex-wrap:wrap;gap:.3rem 1.1rem;
  margin-top:.7rem;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold-lt);max-width:none;
}
.cta__meta span+span::before{content:"\00b7";margin-right:1.1rem;opacity:.65}
.cta__meta a:hover{color:var(--cream)}
.cta__btn{flex:none;background:transparent;border-color:var(--cream)}
.cta__btn::before{background:var(--cream)}
.cta__btn:hover{color:var(--brick-dk)}


/* =============================================================== LEDGER = */
/* Chaar sookhe facts, ledger ke panne ki tarah: ruled columns, numerals wood
   type me. Story (photo texture) aur Why (dark timber) ke beech ek halki,
   chhoti saans -- isliye yahan koi card ya box nahi, sirf lakeerein. */
.ledger{
  background:linear-gradient(180deg,#f9f2e2,#f3e8d1);
  border-block:1px solid rgba(125,31,31,.14);
  padding:clamp(2.6rem,4.6vw,3.8rem) 0;
}
.ledger__head{text-align:center;margin-bottom:2.2rem}
.ledger__head .script{color:var(--brick);opacity:.9}
.ledger__head .phero__rule{margin-inline:auto;max-width:18rem}
.ledger__grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin:0;
}
.ledger__cell{position:relative;text-align:center;padding:.2rem clamp(.8rem,1.6vw,1.4rem)}
/* Wahi dotted rule jo baaki paper sections par hai. */
.ledger__cell+.ledger__cell::before{
  content:"";position:absolute;left:0;top:.1rem;bottom:.1rem;width:1px;
  background:repeating-linear-gradient(180deg,rgba(125,31,31,.34) 0 4px,transparent 4px 10px);
}
.ledger__cell dt{
  font-family:var(--f-cond);font-weight:600;font-size:.72rem;
  letter-spacing:.2em;text-transform:uppercase;color:var(--ink-soft);
}
.ledger__fig{
  margin:.5rem 0 .55rem;
  font-family:var(--f-west);font-weight:400;line-height:1;
  font-size:clamp(2.1rem,4.4vw,3.1rem);color:var(--brick);
  display:flex;align-items:baseline;justify-content:center;gap:.18em;
}
/* Suffix ("+", "AM", "& 41") numeral se chhota aur gold -- taaki ankh pehle
   number par jaye. */
.ledger__fig span{
  font-family:var(--f-cond);font-weight:600;font-size:.32em;
  letter-spacing:.14em;color:var(--gold);text-transform:uppercase;
}
.ledger__cell p{font-size:.86rem;color:var(--ink-soft);max-width:15rem;margin-inline:auto}


/* ================================================================= CREW = */
/* Wahi timber jo Why band par hai, taaki dono dark sections ek hi lakdi
   lagein -- par yahan photos hain, text nahi. */
.crew{
  position:relative;overflow:hidden;color:var(--cream);
  background-color:#17100a;
  background-image:url("../img/footer-bg.png");
  background-image:image-set(url("../img/footer-bg.webp") type("image/webp"),
                             url("../img/footer-bg.png")  type("image/png"));
  background-size:auto;background-position:center;background-repeat:repeat;
  padding:clamp(3rem,5.5vw,4.6rem) 0;
}
.crew::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(72% 60% at 78% 40%,rgba(211,164,92,.14),transparent 68%);
}
.crew__grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);
  align-items:center;
}
.crew__copy h2{font-size:clamp(1.6rem,3vw,2.4rem);margin-bottom:1.1rem}
.crew__copy>p{color:#e2d0b2;margin-bottom:.9rem;max-width:34rem}
.crew__notes{list-style:none;margin:1.4rem 0 0;padding:0;display:grid;gap:.7rem}
.crew__notes li{
  display:flex;gap:.7rem;align-items:flex-start;
  font-size:.9rem;color:#d9c5a4;
}
.crew__notes span{color:var(--gold);flex:none;font-size:.8rem;line-height:1.7}

/* ---- do photos, thodi si tirchhi ---- */
/* Reveal helper `transform:none` par khatam hota hai, jo tilt ko sapaat kar
   deta -- isliye dono siron par tilt dobara likha gaya hai, matching
   specificity par. Wahi tarkeeb jo .storyshot me hai. */
.crew__art{position:relative;padding:1.4rem 0}
.crew__shot{
  margin:0;overflow:hidden;border-radius:4px;
  border:6px solid #fffdf6;
  box-shadow:0 26px 44px -22px rgba(0,0,0,.95);
  transition:transform .55s var(--ease),box-shadow .55s var(--ease);
}
.crew__shot img{width:100%;height:100%;object-fit:cover;display:block}
.crew__shot--a{--rot:-2.2deg;width:74%;aspect-ratio:4/3}
.crew__shot--b{
  --rot:2.6deg;width:56%;aspect-ratio:1/1;
  position:absolute;right:0;bottom:0;z-index:2;
}
.crew__shot{transform:translateY(28px) rotate(var(--rot))}
.crew__shot.is-in{transform:rotate(var(--rot))}
.crew__shot.is-in:hover{
  transform:rotate(0) translateY(-6px);
  box-shadow:0 34px 54px -22px rgba(0,0,0,1);
}
/* Wahi medallion jo contact page ke panel par hai. */
.crew__stamp{
  position:absolute;left:-.6rem;top:.2rem;z-index:3;
  width:82px;height:82px;border-radius:50%;
  display:grid;place-items:center;text-align:center;line-height:1.1;
  color:var(--cream);
  background:radial-gradient(circle at 34% 26%,var(--brick-lt),var(--brick) 58%,var(--brick-dk));
  border:5px solid #fffdf6;
  box-shadow:0 14px 22px -10px rgba(0,0,0,.9);
  transform:rotate(-9deg);
}
.crew__stamp b{
  display:block;font-family:var(--f-cond);font-weight:600;font-size:.6rem;
  letter-spacing:.2em;text-transform:uppercase;
}
.crew__stamp i{display:block;font-family:var(--f-west);font-style:normal;font-size:.94rem}


/* ================================================================ STOPS = */
/* Ek seedhi sadak, chaar pin. Poori kahani history page par hai -- yahan sirf
   uska naksha. */
.stops{
  position:relative;
  background-color:#eddfc0;
  background-image:url("../img/story-bg.png");
  background-image:image-set(url("../img/story-bg.webp") type("image/webp"),
                             url("../img/story-bg.png")  type("image/png"));
  background-size:cover;background-position:center;
  padding:clamp(3rem,5.5vw,4.6rem) 0;
  border-top:1px solid rgba(125,31,31,.14);
}
.stops__head{text-align:center;margin-bottom:2.6rem}
.stops__head .script{color:var(--brick);opacity:.9}
.stops__head .phero__rule{margin-inline:auto;max-width:18rem}

.stops__road{
  position:relative;list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1rem,2.4vw,2rem);
}
/* Sadak: pins ke beech se guzarti dashed lakeer. Pin ka centre 27px par hai
   (54px ka pin), isliye line wahin. */
.stops__road::before{
  content:"";position:absolute;left:0;right:0;top:27px;height:2px;
  background:repeating-linear-gradient(90deg,rgba(125,31,31,.4) 0 9px,transparent 9px 18px);
}
.stop{position:relative;text-align:center;padding-top:0}
.stop__pin{
  position:relative;z-index:1;
  width:54px;height:54px;margin:0 auto 1rem;border-radius:50%;
  display:grid;place-items:center;
  font-family:var(--f-west);font-size:1.15rem;color:var(--cream);
  background:radial-gradient(circle at 34% 26%,var(--brick-lt),var(--brick) 58%,var(--brick-dk));
  border:5px solid #faf3e4;
  box-shadow:0 12px 20px -10px rgba(43,26,18,.9);
  transition:transform .5s var(--ease),box-shadow .5s var(--ease);
}
.stop:hover .stop__pin{
  transform:translateY(-5px) scale(1.06);
  box-shadow:0 18px 28px -10px rgba(43,26,18,.9),0 0 0 6px rgba(211,164,92,.18);
}
.stop h3{
  font-family:var(--f-cond);font-weight:600;font-size:.96rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--wood);
}
.stop h3::after{
  content:"";display:block;width:24px;height:2px;margin:.55rem auto .6rem;
  background:var(--brick);border-radius:2px;
  transition:width .45s var(--ease),background .45s;
}
.stop:hover h3::after{width:48px;background:var(--gold)}
.stop p{font-size:.88rem;color:var(--ink-soft);max-width:17rem;margin-inline:auto}
.stops__more{text-align:center;margin-top:2.4rem}


/* ============================================================ RESPONSIVE = */
@media (max-width:1080px){
  .why__grid{grid-template-columns:repeat(2,1fr);row-gap:2.4rem}
  .why__item:nth-child(3)::before{display:none}
  .ledger__grid{grid-template-columns:repeat(2,1fr);row-gap:2rem}
  /* Do columns par teesri cell nayi row shuru karti hai -- uske baayein wali
     lakeer hata do, warna row ke shuru me latki rehti hai. */
  .ledger__cell:nth-child(3)::before{display:none}
  .stops__road{grid-template-columns:repeat(2,1fr);row-gap:2.4rem}
  /* Sadak sirf ek row ke liye khinchi thi; do rows par ab wo galat baithti. */
  .stops__road::before{display:none}
}
@media (max-width:960px){
  .story__title,.cta__copy h2{width:auto}
  /* Too narrow to keep the copy clear of the photograph, so the banner becomes
     a conventional full-bleed image behind a strong scrim: the mask fade and
     the height-fitted photo both stop here. */
  .phero__bg{
    background-size:cover;background-position:72% 50%;
    -webkit-mask-image:none;mask-image:none;
  }
  .phero__wash{
    background:linear-gradient(180deg,rgba(18,11,6,.88) 0%,rgba(18,11,6,.72) 52%,
                                      rgba(18,11,6,.88) 100%);
  }
  .story__grid,.values__grid,.crew__grid{grid-template-columns:1fr}
  /* Photos pehle, phir baat -- baaki stacked sections jaisa hi. */
  .crew__art{order:-1;max-width:520px;margin-inline:auto;width:100%}
  .crew__copy>p{max-width:none}
  .storyshot{width:min(100%,460px);margin-top:1rem}
  .values__grid .storyshot{order:-1}
  .windmill{opacity:.08}
  .cta__inner{flex-wrap:wrap;text-align:center;justify-content:center}
  .cta__copy{flex-basis:100%}
  /* Band centre-align ho gaya, to copy aur details bhi centre me aa jaayein. */
  .cta__copy p{margin-inline:auto}
  .cta__meta{justify-content:center}
  /* Yahan details ek line me nahi aatin, aur wrap hone par bullet agli line ke
     shuru me latak jata hai -- stacked par sirf gap se alag karo. */
  .cta__meta span+span::before{content:none}
}
@media (max-width:680px){
  /* --hero-h holds at every width -- see base.css. */
  .phero__inner{padding-block:3.6rem 3rem}
  .why__grid{grid-template-columns:1fr;row-gap:2rem}
  .why__item::before{display:none!important}
  .ledger__grid{grid-template-columns:1fr;row-gap:1.8rem}
  .ledger__cell+.ledger__cell::before{display:none}
  .stops__road{grid-template-columns:1fr;row-gap:2rem}
  .crew__stamp{width:66px;height:66px;left:-.2rem}
}

/* ============================================================ MOTION PREF = */
@media (prefers-reduced-motion:reduce){
  .phero__bg,.cta::before,.cta__hat,
  .phero__rule b,.windmill__spin{animation:none}
  .tick__mark{stroke-dashoffset:0}
}
