:root{
  --ivory:#FAF5E9;
  --ivory-deep:#F1E9D8;
  --ink:#211C16;
  --emerald:#0E4C43;
  --emerald-deep:#0A3733;
  --gold:#C79A44;
  --gold-soft:#E4C983;
  --clay:#A9552E;
  --line: rgba(33,28,22,0.12);
  --max: 1140px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--ivory);
  color:var(--ink);
  font-family:'Rubik', sans-serif;
  font-weight:400;
  line-height:1.5;
  overflow-x:hidden;
}
h1,h2,h3,.display{
  font-family:'Rubik', sans-serif;
  font-weight:500;
  letter-spacing:-0.01em;
  color:var(--ink);
}
.label{
  font-family:'Space Mono', monospace;
  font-size:0.72rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--emerald);
}
a{color:inherit;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ---------- Ornament (signature element): the collar-embroidery trace ---------- */
.braid{
  width:100%;
  height:28px;
  display:block;
}
.braid path{
  fill:none;
  stroke:var(--gold);
  stroke-width:2;
  stroke-linecap:round;
}
.braid.on-emerald path{ stroke:var(--gold-soft); }
.braid-draw path{
  stroke-dasharray:2200;
  stroke-dashoffset:2200;
  animation:draw 2.6s ease-out forwards;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(250,245,233,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; padding-bottom:18px;
  position:relative;
}
.logo{
  font-family:'Rubik', sans-serif;
  font-size:1.35rem;
  font-weight:600;
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo-img{
  height:48px; width:auto; display:block;
}
@media (max-width:520px){
  .logo-img{ height:38px; }
}
.nav-links{
  display:flex; gap:32px; list-style:none;
  font-size:0.92rem;
}
.nav-links a{
  text-decoration:none;
  position:relative;
  padding-bottom:3px;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--gold); transition:width .25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ width:100%; }
.nav-links a[aria-current="page"]{ color:var(--emerald); }
.nav-actions{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--emerald); color:var(--ivory);
  padding:10px 20px; border-radius:2px;
  font-size:0.85rem; letter-spacing:0.02em;
  text-decoration:none;
  border:1px solid var(--emerald);
  transition:background .2s ease, color .2s ease;
  white-space:nowrap;
}
.nav-cta:hover{ background:transparent; color:var(--emerald); }
.nav-cta img{ width:16px; height:16px; flex-shrink:0; }
.nav-cta .short{ display:none; }
@media (max-width:520px){
  .nav-cta{ padding:9px 14px; font-size:0.8rem; }
  .nav-cta .full{ display:none; }
  .nav-cta .short{ display:inline; }
}

/* ---------- Mobile nav toggle ---------- */
.menu-toggle{
  display:none;
  width:36px; height:36px;
  border:1px solid var(--line);
  background:transparent;
  border-radius:2px;
  align-items:center; justify-content:center;
  cursor:pointer;
  flex-shrink:0;
}
.menu-toggle svg{ width:18px; height:18px; stroke:var(--ink); fill:none; stroke-width:1.8; }
.menu-toggle .icon-close{ display:none; }
.menu-toggle[aria-expanded="true"] .icon-open{ display:none; }
.menu-toggle[aria-expanded="true"] .icon-close{ display:block; }

/* ---------- Hero ---------- */
.hero{
  padding:88px 0 40px;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
.eyebrow{
  display:flex; align-items:center; gap:10px;
  margin-bottom:18px;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--clay); }
.hero h1{
  font-size:clamp(2.6rem, 5vw, 3.9rem);
  line-height:1.03;
  margin-bottom:22px;
}
.hero h1 em{
  font-style:italic;
  color:var(--emerald);
}
.hero p.lede{
  font-size:1.08rem;
  max-width:46ch;
  color:#463F35;
  margin-bottom:32px;
}
.hero-actions{
  display:flex; gap:16px; flex-wrap:wrap;
  margin-bottom:36px;
}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 26px;
  border-radius:2px;
  font-size:0.92rem;
  text-decoration:none;
  font-weight:500;
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:pointer;
  border:none;
  font-family:'Rubik', sans-serif;
}
.btn:hover{ transform:translateY(-2px); }
.btn img{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{
  background:var(--emerald); color:var(--ivory);
  box-shadow:0 6px 18px rgba(14,76,67,0.25);
}
.btn-ghost{
  background:transparent; color:var(--ink);
  border:1px solid var(--line);
}
.hero-stats{
  display:flex; gap:36px;
  padding-top:24px;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.stat b{
  display:block;
  font-family:'Rubik', sans-serif;
  font-size:1.5rem;
}
.stat span{
  font-size:0.8rem; color:#6b6255;
}

/* hero slider */
.hero-art{
  position:relative;
  width:100%;
  aspect-ratio:4/5;
}
.hero-slider{
  position:absolute; inset:0;
  overflow:hidden;
  border-radius:2px;
  border:1px solid var(--line);
  background:var(--ivory-deep);
  box-shadow:0 4px 10px rgba(33,28,22,.14), 0 30px 60px rgba(33,28,22,.26);
}
.hero-slider .slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;
  opacity:0;
  transition:opacity .7s ease;
}
.hero-slider .slide.active{ opacity:1; }
.hero-slider::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:90px;
  background:linear-gradient(to top, rgba(10,10,8,0.5), rgba(10,10,8,0));
  pointer-events:none;
}
.hero-slider-dots{
  position:absolute; left:0; right:0; bottom:18px; z-index:2;
  display:flex; justify-content:center; gap:8px;
}
.hero-slider-dots .dot{
  width:8px; height:8px; padding:0;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  border:1px solid rgba(255,255,255,0.8);
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.hero-slider-dots .dot.active{ background:var(--gold); border-color:var(--gold); transform:scale(1.2); }

/* Quick social dial */
.quick-social{
  position:absolute;
  top:50%; right:-20px;
  width:56px; height:56px;
  transform:translateY(-50%);
  z-index:25;
}
.qs-item{
  position:absolute;
  top:3px; left:3px;
  width:48px; height:48px;
  border-radius:50%;
  background:var(--ivory);
  border:1px solid var(--line);
  box-shadow:0 6px 16px rgba(33,28,22,0.18);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  pointer-events:none;
  z-index:calc(5 - var(--i));
  transform:translate(calc(var(--i) * -8px), calc(var(--i) * 8px)) scale(0.92);
  transition:transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.qs-item img{ width:24px; height:24px; }
.quick-social.open .qs-item{
  transform:translate(var(--ox), var(--oy));
  pointer-events:auto;
  box-shadow:0 10px 24px rgba(33,28,22,0.26);
}
.quick-social.open .qs-item:hover{ transform:translate(var(--ox), var(--oy)) scale(1.1); }
.quick-social.open .qs-item:nth-of-type(1){ transition-delay:.02s; }
.quick-social.open .qs-item:nth-of-type(2){ transition-delay:.05s; }
.quick-social.open .qs-item:nth-of-type(3){ transition-delay:.08s; }
.quick-social.open .qs-item:nth-of-type(4){ transition-delay:.11s; }
.quick-social.open .qs-item:nth-of-type(5){ transition-delay:.14s; }
.qs-toggle{
  position:absolute;
  top:2px; left:2px;
  width:52px; height:52px;
  border-radius:50%;
  background:var(--emerald);
  border:1px solid var(--emerald-deep);
  box-shadow:0 8px 20px rgba(14,76,67,0.35);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index:30;
  transition:transform .3s ease;
}
.qs-toggle:hover{ transform:scale(1.06); }
.qs-toggle svg{ width:22px; height:22px; stroke:var(--ivory); fill:none; stroke-width:2; stroke-linecap:round; transition:transform .35s ease; }
.quick-social.open .qs-toggle svg{ transform:rotate(45deg); }
@media (max-width:900px){
  .quick-social{ transform:translateY(-50%) scale(0.8); right:-12px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding:64px 0 48px;
  border-bottom:1px solid var(--line);
}
.page-hero h1{
  font-size:clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom:16px;
}
.page-hero p{
  font-size:1.02rem;
  max-width:56ch;
  color:#463F35;
}
/* ---------- Section shell ---------- */
section{ padding:88px 0; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; margin-bottom:48px;
  flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(1.9rem, 3vw, 2.6rem); }
.section-head p{ max-width:40ch; color:#5a5346; font-size:0.98rem; }
.section-head .btn{ flex-shrink:0; }

/* ---------- Categories ---------- */
.cat-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.cat-card{
  position:relative;
  background:var(--ivory);
  padding:0 0 30px;
  transition:background .25s ease, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  text-decoration:none;
  display:block;
}
.cat-card:hover{
  background:var(--ivory-deep);
  transform:scale(1.045);
  box-shadow:0 10px 20px rgba(33,28,22,.14), 0 28px 48px rgba(33,28,22,.3);
  z-index:5;
}
.cat-card .photo{
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--emerald-deep);
  display:flex; align-items:center; justify-content:center;
}
.cat-card .photo img{
  width:100%; height:100%; object-fit:contain;
  transition:transform .6s ease;
}
.cat-card:hover .photo img{ transform:scale(1.08); }
.cat-card .body{ padding:26px 30px 0; }
.cat-card .icon{
  width:30px; height:30px;
  margin-bottom:16px;
  stroke:var(--emerald);
  fill:none;
  stroke-width:1.4;
}
.cat-card h3{ font-size:1.15rem; margin-bottom:8px; }
.cat-card p{ font-size:0.88rem; color:#6b6255; }

/* ---------- Looks / featured ---------- */
.looks{
  background:var(--emerald);
  color:var(--ivory);
  position:relative;
}
.looks .section-head h2, .looks .section-head p{ color:var(--ivory); }
.looks .section-head p{ color:#BFD8D2; }
.looks .label{ color:var(--gold-soft); }
.look-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}
.look-card{
  background:var(--emerald-deep);
  border:1px solid rgba(255,255,255,0.08);
  padding:22px 20px 24px;
  display:flex; flex-direction:column; gap:16px;
  transform:perspective(1000px) rotateX(2deg) rotateY(-1.5deg);
  box-shadow:0 3px 6px rgba(0,0,0,.2), 0 18px 34px rgba(0,0,0,.35);
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.look-card:nth-child(even){ transform:perspective(1000px) rotateX(-1.5deg) rotateY(1.5deg); }
.look-card:hover{
  transform:perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px);
  box-shadow:0 8px 16px rgba(0,0,0,.26), 0 34px 56px rgba(0,0,0,.45);
}
.look-card .swatch{
  aspect-ratio:3/4;
  border-radius:1px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.look-card .swatch svg{ width:70%; height:70%; }
.look-card h4{ font-family:'Rubik', sans-serif; font-weight:500; font-size:1.05rem; }
.look-card .price{ font-family:'Space Mono', monospace; font-size:0.82rem; color:var(--gold-soft); }
.look-card .desc{ font-size:0.82rem; color:#BFD8D2; }

/* ---------- Bespoke steps ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
  counter-reset:step;
}
.step{
  position:relative;
  padding-top:20px;
  border-top:2px solid var(--ink);
}
.step .num{
  font-family:'Space Mono', monospace;
  font-size:0.85rem;
  color:var(--clay);
  display:block;
  margin-bottom:14px;
}
.step h3{ font-size:1.05rem; margin-bottom:8px; }
.step p{ font-size:0.88rem; color:#5a5346; }

.bespoke-photos{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:64px;
}
.bespoke-photos img{
  width:100%; height:100%;
  aspect-ratio:4/5;
  object-fit:contain;
  background:var(--ivory-deep);
  border:1px solid var(--line);
  transform:perspective(1000px) rotateX(2deg) rotateY(-2deg);
  box-shadow:0 3px 6px rgba(33,28,22,.1), 0 20px 36px rgba(33,28,22,.22);
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.bespoke-photos img:nth-child(2){ transform:perspective(1000px) rotateX(-1.5deg) rotateY(1.5deg); }
.bespoke-photos img:nth-child(3){ transform:perspective(1000px) rotateX(2deg) rotateY(2deg); }
.bespoke-photos img:hover{
  transform:perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-8px) scale(1.02);
  box-shadow:0 8px 16px rgba(33,28,22,.16), 0 32px 52px rgba(33,28,22,.34);
}
.bespoke-photos .tall{ aspect-ratio:4/5; }

/* ---------- Social proof ---------- */
.social{
  background:var(--ivory-deep);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.social .wrap{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:24px;
  padding:44px 28px;
}
.social-item{ display:flex; align-items:center; gap:14px; }
a.social-item{ text-decoration:none; transition:opacity .2s ease; }
a.social-item:hover{ opacity:0.72; }
.social-item .platform-icon{ width:30px; height:30px; flex-shrink:0; }
.social-item svg.platform-icon{ stroke:var(--ink); fill:none; stroke-width:1.5; }
.social-item b{ font-family:'Rubik', sans-serif; font-size:1.3rem; display:block; }
.social-item span{ font-size:0.82rem; color:#6b6255; }

/* ---------- Contact ---------- */
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.contact-info .row{
  display:flex; gap:16px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.contact-info .row svg{ width:20px; height:20px; stroke:var(--emerald); fill:none; stroke-width:1.6; flex-shrink:0; margin-top:2px; }
.contact-info .row h4{ font-size:0.95rem; margin-bottom:4px; font-family:'Rubik'; font-weight:600; }
.contact-info .row p{ font-size:0.9rem; color:#5a5346; }
.social-links{ display:flex; gap:10px; margin-top:12px; }
.social-links a{
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line); border-radius:50%;
  transition:border-color .2s ease, background .2s ease;
}
.social-links a:hover{ border-color:var(--emerald); background:var(--ivory-deep); }
.social-links img{ width:19px; height:19px; }
.contact-cta{
  background:var(--ink);
  color:var(--ivory);
  padding:44px 40px;
  display:flex; flex-direction:column; justify-content:center;
  gap:18px;
}
.contact-cta h3{ color:var(--ivory); font-size:1.6rem; }
.contact-cta p{ color:#C9C2B4; font-size:0.95rem; max-width:38ch; }
.contact-cta .btn-primary{ align-self:flex-start; }
.contact-map{
  position:relative;
  min-height:320px;
  border:1px solid var(--line);
  overflow:hidden;
  background:var(--ivory-deep);
}
.contact-map iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0; display:block;
}
.contact-map .map-link{
  position:absolute; right:12px; bottom:34px; z-index:2;
  background:var(--ivory); color:var(--ink);
  font-size:0.78rem; font-weight:500;
  padding:8px 14px;
  border:1px solid var(--line); border-radius:2px;
  text-decoration:none;
  transition:background .2s ease;
}
.contact-map .map-link:hover{ background:var(--ivory-deep); }

/* ---------- Gallery ---------- */
.gallery-filters{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-bottom:40px;
}
.gallery-filters button{
  font-family:'Space Mono', monospace;
  font-size:0.76rem; letter-spacing:0.06em; text-transform:uppercase;
  padding:9px 16px;
  border:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  border-radius:2px;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.gallery-filters button:hover{ border-color:var(--emerald); }
.gallery-filters button.active{
  background:var(--emerald); color:var(--ivory); border-color:var(--emerald);
}
.gallery-grid{
  columns:4 260px;
  column-gap:18px;
}
.gallery-item{
  break-inside:avoid;
  margin-bottom:18px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  cursor:zoom-in;
  background:var(--ivory-deep);
  display:block;
  width:100%;
  padding:0;
  text-align:left;
  font:inherit;
  color:inherit;
  transform:perspective(1000px) rotateX(2deg) rotateY(-1.5deg);
  box-shadow:0 3px 6px rgba(33,28,22,.1), 0 18px 32px rgba(33,28,22,.2);
  transition:transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.gallery-item:nth-child(3n+2){ transform:perspective(1000px) rotateX(-1.5deg) rotateY(1.5deg); }
.gallery-item:nth-child(3n+3){ transform:perspective(1000px) rotateX(1.5deg) rotateY(1.5deg); }
.gallery-item:hover{
  transform:perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-6px);
  box-shadow:0 8px 16px rgba(33,28,22,.16), 0 32px 50px rgba(33,28,22,.3);
  z-index:2;
}
.gallery-item img{
  width:100%; height:auto; display:block;
  transition:transform .5s ease;
}
.gallery-item:hover img{ transform:scale(1.045); }
.gallery-item .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:14px 16px 12px;
  background:linear-gradient(to top, rgba(10,10,8,0.75), rgba(10,10,8,0));
  opacity:0; transition:opacity .25s ease;
  text-align:left;
}
.gallery-item:hover .cap{ opacity:1; }
.gallery-item .cap b{ color:var(--ivory); font-family:'Rubik', sans-serif; font-size:0.98rem; display:block; }
.gallery-item .cap span{ color:var(--gold-soft); font-size:0.74rem; font-family:'Space Mono', monospace; letter-spacing:0.06em; text-transform:uppercase; }
.gallery-item[hidden]{ display:none; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:100;
  background:rgba(15,12,9,0.94);
  display:none;
  align-items:center; justify-content:center;
  padding:40px 20px;
}
.lightbox.open{ display:flex; }
.lightbox figure{
  max-width:min(900px, 92vw);
  max-height:88vh;
  display:flex; flex-direction:column; gap:14px;
  align-items:center;
}
.lightbox img{
  max-height:76vh; width:auto; max-width:100%;
  border:1px solid rgba(255,255,255,0.12);
}
.lightbox figcaption{
  color:var(--ivory-deep);
  font-size:0.86rem;
  text-align:center;
}
.lightbox figcaption span{ color:var(--gold-soft); font-family:'Space Mono', monospace; font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase; display:block; margin-top:4px; }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute;
  background:transparent; border:1px solid rgba(255,255,255,0.25);
  color:var(--ivory);
  width:44px; height:44px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lightbox-close{ top:20px; right:20px; }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg{ width:18px; height:18px; stroke:var(--ivory); fill:none; stroke-width:1.8; }
.lightbox-prev{ left:20px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:20px; top:50%; transform:translateY(-50%); }
@media (max-width:640px){
  .lightbox-prev{ left:8px; } .lightbox-next{ right:8px; } .lightbox-close{ top:10px; right:10px; }
}

/* ---------- Footer ---------- */
footer{
  padding:44px 0 32px;
}
.foot-row{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:16px;
  padding-top:24px;
  font-size:0.82rem;
  color:#7a7264;
}
.foot-links{ display:flex; gap:22px; list-style:none; flex-wrap:wrap; }
.foot-links a{ text-decoration:none; }
.foot-links a:hover{ color:var(--emerald); }

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:320px; margin:0 auto 20px; }
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .look-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .bespoke-photos{ grid-template-columns:repeat(2,1fr); }
  .contact{ grid-template-columns:1fr; }
  .gallery-grid{ columns:3 220px; }

  .nav-links{
    display:flex; flex-direction:column; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background:var(--ivory);
    border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden;
    transition:max-height .3s ease;
  }
  .nav-links.open{ max-height:400px; }
  .nav-links a{
    padding:16px 28px; border-bottom:1px solid var(--line);
    display:block;
  }
  .nav-links a::after{ display:none; }
  .menu-toggle{ display:flex; }
}
@media (max-width:520px){
  .cat-grid{ grid-template-columns:1fr; }
  .look-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .bespoke-photos{ grid-template-columns:1fr; }
  .hero-stats{ flex-wrap:wrap; row-gap:16px; }
  .social .wrap{ flex-direction:column; align-items:flex-start; }
  .gallery-grid{ columns:1; }
}
