@import "tailwindcss";

:root {
  --cream: #f7f1e6;
  --paper: #fffaf1;
  --blue: #123bc7;
  --blue-dark: #082699;
  --orange: #ff4a16;
  --ink: #111111;
  --muted: #665f56;
  --line: #c9c0b2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 24, 16, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  padding: 0 4.4vw;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  background: rgba(247, 241, 230, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(14px);
}
.brand {
  color: var(--blue);
  font-weight: 900;
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  letter-spacing: 0.025em;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.9rem;
  font-weight: 700;
}
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  border: 2px solid var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}
.header-cta:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: clamp(64px, 7vw, 108px) 4.4vw 112px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(44px, 5vw, 88px);
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image: radial-gradient(rgba(18, 59, 199, 0.24) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  mask-image: linear-gradient(to right, black, transparent 54%);
}
.route-line {
  position: absolute;
  height: 2px;
  background: var(--orange);
}
.route-line-top { top: 36px; left: 3.2vw; width: 47vw; }
.route-line::before, .route-line::after, .route-line span {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--cream);
  transform: translateY(-50%);
}
.route-line::before { left: 0; }
.route-line span { left: 50%; }
.route-line::after { right: 0; }
.hero-copy, .ticket-photo, .location-route { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.8rem, 7.15vw, 8.9rem);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 900;
  font-stretch: condensed;
}
.hero h1 span { display: block; }
.hero h1 > span:first-child { color: var(--blue); }
.hero h1 .ink { color: var(--ink); }
.hero h1 .orange { color: var(--orange); white-space: nowrap; font-size: 0.92em; }
.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55;
}
.hero-lead strong { font-weight: 850; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border: 2px solid;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 5px 5px 0 var(--ink); }
.button-primary { color: var(--white); background: var(--blue); border-color: var(--blue); }
.button-outline { color: var(--orange); background: transparent; border-color: var(--orange); }
.button-outline:hover { color: var(--white); background: var(--orange); }
.trust-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.trust-item { display: flex; align-items: center; gap: 12px; padding-right: 14px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: 18px; }
.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}
.orange-icon { color: var(--orange); border-color: var(--orange); }
.trust-item p { margin: 0; display: flex; flex-direction: column; font-size: 0.78rem; line-height: 1.3; }
.trust-item strong { font-size: 0.92rem; }

.ticket-photo {
  padding: 48px 56px 0 0;
  background: var(--paper);
  border: 1px solid #89837a;
  clip-path: polygon(4% 0, 100% 0, 100% 5%, 97% 8%, 97% 91%, 100% 94%, 100% 100%, 4% 100%, 0 95%, 3% 91%, 3% 8%, 0 5%);
  box-shadow: var(--shadow);
}
.ticket-top {
  position: absolute;
  left: 6%;
  right: 5%;
  top: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
.ticket-top span { color: #aaa197; overflow: hidden; white-space: nowrap; }
.photo-frame {
  position: relative;
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
  background: #d8cfbf;
  clip-path: polygon(5% 0, 95% 0, 100% 7%, 100% 93%, 94% 100%, 6% 100%, 0 93%, 0 7%);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ticket-side {
  position: absolute;
  right: 12px;
  top: 72px;
  bottom: 25px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--blue);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticket-side strong { writing-mode: vertical-rl; transform: rotate(180deg); }
.barcode { writing-mode: vertical-rl; color: var(--ink); letter-spacing: 0; font-size: 1rem; }
.location-route {
  position: absolute;
  left: 4.4vw;
  right: 4.4vw;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5%;
}
.location-route::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(to right, var(--blue) 0 50%, var(--orange) 50% 100%);
}
.location-stop {
  position: relative;
  z-index: 1;
  min-height: 46px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--blue);
  border: 2px solid var(--orange);
  font-size: clamp(0.69rem, 1vw, 0.9rem);
  font-weight: 850;
  text-align: center;
}

.section { padding: clamp(82px, 9vw, 142px) 5vw; }
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-kicker span {
  min-width: 40px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
}
.intro-section { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: start;
}
.intro-grid h2, .process-heading h2, .province-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.15rem, 5.4vw, 6.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.intro-copy { font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.7; }
.intro-copy p { margin: 0 0 22px; }
.audience-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card {
  position: relative;
  min-height: 355px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.audience-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--orange); }
.card-route { display: flex; justify-content: space-between; align-items: center; color: var(--blue); }
.card-route span { font-size: 0.7rem; letter-spacing: 0.18em; font-weight: 900; }
.card-route strong { font-size: 2rem; }
.audience-card h3 { margin: 58px 0 15px; font-size: clamp(1.55rem, 2.4vw, 2.4rem); line-height: 1.04; }
.audience-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.tag-row { margin-top: auto; padding-top: 32px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { padding: 7px 9px; color: var(--blue); border: 1px solid var(--blue); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; }

.process-section { color: var(--white); background: var(--blue); }
.section-kicker.light { color: var(--white); }
.process-heading { display: grid; grid-template-columns: 1.15fr 0.65fr; gap: 10vw; align-items: end; }
.process-heading p { margin: 0; font-size: 1.08rem; line-height: 1.65; }
.steps-grid { margin-top: 68px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.5); }
.step-card { position: relative; min-height: 285px; padding: 28px 24px 24px; border-right: 1px solid rgba(255,255,255,0.5); }
.step-card:first-child { border-left: 1px solid rgba(255,255,255,0.5); }
.step-card > span { color: var(--orange); font-size: 1.1rem; font-weight: 900; }
.step-card h3 { margin: 70px 0 16px; font-size: 1.45rem; }
.step-card p { margin: 0; color: rgba(255,255,255,0.78); font-size: 0.92rem; line-height: 1.6; }
.process-note {
  margin-top: 36px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 0.6fr 1.6fr auto;
  gap: 28px;
  align-items: center;
  color: var(--ink);
  background: var(--orange);
}
.process-note strong { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; }
.process-note p { margin: 0; line-height: 1.45; }
.process-note a { white-space: nowrap; padding: 12px 14px; border: 2px solid var(--ink); font-weight: 900; }

.province-preview { background: var(--cream); }
.province-heading { display: grid; grid-template-columns: 1.2fr 0.75fr; gap: 9vw; align-items: end; }
.province-heading p { margin: 0; font-size: 1.1rem; line-height: 1.7; }
.all-locations { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.all-locations span { min-height: 82px; padding: 20px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-weight: 800; }
.all-locations small { color: var(--orange); font-size: 0.7rem; }

.area-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area-grid article {
  min-height: 126px;
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
}
.area-grid article > span { color: var(--orange); font-size: 0.72rem; font-weight: 900; }
.area-grid h3 { margin: 0 0 8px; font-size: 1.05rem; }
.area-grid p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.product-section { color: var(--white); background: var(--ink); }
.product-heading { display: grid; grid-template-columns: 1.15fr 0.7fr; gap: 9vw; align-items: end; }
.product-heading h2, .order-copy h2, .faq-heading h2, .final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.product-heading p { margin: 0; color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; }
.model-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.model-card { padding: 22px 22px 28px; background: #191919; border: 1px solid #555; }
.garment-mark {
  position: relative;
  aspect-ratio: 4 / 3;
  color: var(--orange);
  background: #242424;
  border: 1px solid #3f3f3f;
  overflow: hidden;
}
.garment-mark > span {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 12px;
  padding: 5px 7px;
  color: var(--orange);
  background: rgba(14, 14, 14, 0.78);
  border: 1px solid rgba(255, 69, 25, 0.5);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.garment-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}
.model-card:hover .garment-mark img { transform: scale(1.025); }
.model-card h3 { margin: 26px 0 12px; font-size: 1.5rem; }
.model-card p { margin: 0; color: #bdbdbd; font-size: 0.92rem; line-height: 1.65; }
.technique-board { margin-top: 70px; display: grid; grid-template-columns: 0.85fr 1.15fr; border: 1px solid #555; }
.technique-intro { padding: 42px; background: var(--orange); color: var(--ink); }
.technique-intro > span { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; }
.technique-intro h3 { margin: 64px 0 20px; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.02; }
.technique-intro p { margin: 0; line-height: 1.65; }
.technique-list article { min-height: 128px; padding: 25px 28px; display: grid; grid-template-columns: 70px 1fr; gap: 20px; border-bottom: 1px solid #555; }
.technique-list article:last-child { border-bottom: 0; }
.technique-list strong { color: var(--blue); }
.technique-list h4 { margin: 0 0 8px; font-size: 1.15rem; }
.technique-list p { margin: 0; color: #bdbdbd; font-size: 0.9rem; line-height: 1.55; }

.order-section { background: var(--paper); }
.order-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 9vw; }
.order-copy p { max-width: 550px; margin: 28px 0 30px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.order-checklist { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.order-checklist li { padding: 26px 10px; display: grid; grid-template-columns: 65px 1fr; gap: 20px; border-bottom: 1px solid var(--ink); }
.order-checklist li > span { color: var(--orange); font-size: 0.78rem; font-weight: 900; }
.order-checklist strong { font-size: 1.1rem; }
.order-checklist p { margin: 7px 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.delivery-strip { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--blue); }
.delivery-strip > div { min-height: 145px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.delivery-strip > div + div { border-left: 1px solid var(--blue); }
.delivery-strip strong { color: var(--blue); font-size: clamp(1.7rem, 2.7vw, 3rem); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; }
.delivery-strip span { max-width: 290px; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

.faq-section { color: var(--white); background: var(--blue); }
.faq-heading { display: grid; grid-template-columns: 1.15fr 0.65fr; gap: 9vw; align-items: end; }
.faq-heading > p { margin: 0; color: rgba(255,255,255,0.74); font-size: 1.05rem; line-height: 1.65; }
.faq-list { margin-top: 70px; border-top: 1px solid rgba(255,255,255,0.5); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,0.5); }
.faq-list summary { min-height: 88px; padding: 20px 8px; display: grid; grid-template-columns: 60px 1fr 30px; align-items: center; gap: 20px; cursor: pointer; list-style: none; font-size: 1.08rem; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--orange); font-size: 0.72rem; }
.faq-list summary i { font-style: normal; color: var(--orange); font-size: 1.8rem; transition: transform 180ms ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 820px; margin: -4px 0 0 80px; padding: 0 20px 28px 0; color: rgba(255,255,255,0.76); line-height: 1.7; }

.final-cta { position: relative; padding: clamp(90px, 10vw, 150px) 5vw; color: var(--white); background: var(--orange); overflow: hidden; }
.final-cta > p { margin: 0 0 26px; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.18em; }
.final-cta h2 { max-width: 1000px; color: var(--ink); font-size: clamp(3.8rem, 7.2vw, 9rem); }
.final-actions { position: relative; z-index: 2; }
.button-light { color: var(--blue); background: var(--cream); border-color: var(--cream); }
.button-orange { color: var(--ink); background: transparent; border-color: var(--ink); }
.final-route { position: absolute; right: -4vw; top: 10%; width: 32vw; height: 80%; border: 2px solid var(--blue); transform: skewX(-18deg); opacity: 0.45; }
.final-route span { position: absolute; width: 18px; height: 18px; border: 3px solid var(--blue); border-radius: 50%; background: var(--orange); }
.final-route span:nth-child(1) { left: 8%; top: 12%; }
.final-route span:nth-child(2) { left: 50%; top: 50%; }
.final-route span:nth-child(3) { right: 8%; bottom: 12%; }

.site-footer { padding: 60px 5vw 28px; display: grid; grid-template-columns: 1.35fr 0.8fr 0.65fr 0.8fr; gap: 40px; color: var(--white); background: var(--ink); }
.footer-brand { display: inline-block; margin-bottom: 14px; }
.site-footer p { margin: 8px 0 0; color: #aaa; font-size: 0.86rem; line-height: 1.65; }
.site-footer strong { color: var(--orange); font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid #555; font-weight: 800; font-size: 0.86rem; }
.site-footer small { grid-column: 1 / -1; padding-top: 30px; color: #777; border-top: 1px solid #333; }

a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(4rem, 8vw, 6.4rem); }
  .trust-row { grid-template-columns: 1fr; gap: 12px; }
  .trust-item + .trust-item { border-left: 0; padding-left: 0; }
  .ticket-photo { padding-right: 46px; }
  .audience-grid { gap: 12px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.5); }
  .all-locations { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { gap: 10px; }
  .garment-mark { min-height: 0; }
  .technique-board { grid-template-columns: 1fr; }
  .order-grid { gap: 5vw; }
  .site-footer { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-links { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .site-header { min-height: 66px; padding: 0 20px; }
  .brand { font-size: 1.7rem; }
  .header-cta { padding: 10px 12px; font-size: 0.72rem; }
  .header-cta span { display: none; }
  .hero { min-height: auto; padding: 66px 20px 132px; grid-template-columns: 1fr; gap: 44px; }
  .route-line-top { top: 28px; width: 70vw; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); line-height: 0.88; }
  .hero h1 .orange { font-size: 0.86em; }
  .hero-lead { font-size: 1rem; }
  .button { width: 100%; }
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .trust-item { flex-direction: column; align-items: flex-start; }
  .trust-item + .trust-item { border-left: 1px solid var(--line); padding-left: 10px; }
  .trust-icon { width: 36px; height: 36px; font-size: 0.58rem; }
  .trust-item p { font-size: 0.65rem; }
  .trust-item strong { font-size: 0.74rem; }
  .ticket-photo { padding: 48px 43px 0 12px; }
  .photo-frame { aspect-ratio: 0.95 / 1; }
  .location-route { left: 20px; right: 20px; bottom: 30px; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .location-route::before { display: none; }
  .location-stop { min-height: 34px; border-width: 1px; font-size: 0.65rem; }
  .section { padding: 82px 20px; }
  .section-kicker { margin-bottom: 28px; font-size: 0.68rem; }
  .intro-grid, .process-heading, .province-heading { grid-template-columns: 1fr; gap: 28px; }
  .intro-grid h2, .process-heading h2, .province-heading h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .audience-grid { margin-top: 48px; grid-template-columns: 1fr; }
  .audience-card { min-height: 300px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card, .step-card:first-child, .step-card:nth-child(3) { min-height: auto; border-left: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); }
  .step-card h3 { margin-top: 32px; }
  .process-note { grid-template-columns: 1fr; }
  .process-note a { text-align: center; }
  .all-locations { grid-template-columns: 1fr 1fr; }
  .all-locations span { min-height: 68px; padding: 15px 12px; font-size: 0.82rem; }
  .area-grid { margin-top: 45px; grid-template-columns: 1fr; }
  .product-heading, .order-grid, .faq-heading { grid-template-columns: 1fr; gap: 28px; }
  .product-heading h2, .order-copy h2, .faq-heading h2, .final-cta h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .model-grid { grid-template-columns: 1fr; }
  .model-card { display: grid; grid-template-columns: 0.78fr 1.22fr; column-gap: 20px; }
  .model-card .garment-mark { grid-row: span 2; min-height: 210px; aspect-ratio: auto; }
  .model-card h3 { margin-top: 20px; align-self: end; }
  .technique-intro { padding: 28px 22px; }
  .technique-intro h3 { margin-top: 42px; }
  .technique-list article { grid-template-columns: 48px 1fr; padding: 22px 18px; }
  .delivery-strip { grid-template-columns: 1fr; }
  .delivery-strip > div + div { border-left: 0; border-top: 1px solid var(--blue); }
  .delivery-strip > div { min-height: 125px; }
  .faq-list { margin-top: 45px; }
  .faq-list summary { min-height: 78px; grid-template-columns: 32px 1fr 22px; gap: 10px; font-size: 0.92rem; }
  .faq-list details > p { margin-left: 42px; font-size: 0.9rem; }
  .final-cta { padding-left: 20px; padding-right: 20px; }
  .final-route { width: 55vw; }
  .site-footer { padding-left: 20px; padding-right: 20px; grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-links { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
