/* DAISYKNIT — Stage-2 static responsive MVP
   Tokens from design/design-tokens.md; structure from desktop-1440.svg /
   tablet-768.svg / mobile-390.svg masters. No external resources. */

/* ============ Fonts (self-hosted, OFL) ============ */
@font-face {
  font-family: "Manrope Local";
  src: url("fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope Local";
  src: url("fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Local";
  src: url("fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Local";
  src: url("fonts/cormorant-garamond-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ============ Tokens ============ */
:root {
  --ink: #141412;
  --dark-surface: #20201D;
  --paper: #F4F1EA;
  --surface: #FFFFFF;
  --line: #CFCAC0;
  --muted: #59564F;
  --green: #405949;
  --tomato: #B53B2C;
  --focus-light: #B53B2C;
  --focus-dark: #FFFFFF;
  --on-dark: #FFFFFF;
  --on-dark-soft: #E5E1D8;
  --on-dark-label: #CFCAC0;
  --font-display: "Cormorant Local", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope Local", Arial, "Helvetica Neue", sans-serif;
  --outer: 56px;
  --gutter: 24px;
  --header-h: 96px;
  --radius-card: 0;
  --ease: cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* ============ Reset and base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-width: 320px;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--focus-light);
  outline-offset: 3px;
}
.hero :focus-visible, .mobile-menu :focus-visible, .service-band :focus-visible,
.newsletter :focus-visible, .footer :focus-visible {
  outline-color: var(--focus-dark);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--outer);
  padding-right: var(--outer);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  background: var(--ink);
  color: var(--surface);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 16px; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid transparent;
}
.header--scrolled { border-bottom-color: var(--line); }
.header__row {
  display: flex;
  align-items: center;
  gap: var(--gutter);
  height: var(--header-h);
}
.header__wordmark {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
  padding: 10px 0;
}
.header__nav { margin-inline: auto; }
.header__nav-list { display: flex; gap: 40px; }
.header__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 2px;
}
.header__link:hover { text-decoration: underline; text-underline-offset: 6px; }
.header__actions { display: flex; align-items: center; gap: 4px; }
.header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
}
.header__icon:hover { color: var(--tomato); }
.header__burger { display: none; }
.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 160ms var(--ease), opacity 160ms var(--ease);
}
.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__search { background: var(--surface); border-bottom: 1px solid var(--line); }
.header__search-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__search-label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.header__search-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
}
.header__search-input::placeholder { color: var(--muted); }

/* ============ Mobile menu ============ */
.mobile-menu { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.mobile-menu[aria-hidden="false"] { visibility: visible; }
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 18, 0.5);
  opacity: 0;
  transition: opacity 200ms var(--ease);
}
.mobile-menu[aria-hidden="false"] .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: var(--surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 220ms var(--ease);
}
.mobile-menu[aria-hidden="false"] .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__wordmark { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }
.mobile-menu__close { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 600;
}
.mobile-menu__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.mobile-menu__action {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mobile-menu__action:hover { border-color: var(--ink); }

/* ============ Hero ============ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark-surface);
  color: var(--on-dark);
  min-height: 700px;
}
.hero__copy {
  padding: 88px 40px 88px var(--outer);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-label);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
  max-width: 640px;
}
.hero__lead {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 460px;
}
.hero__actions { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__media { position: relative; min-height: 700px; }
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__banner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(620px, 86%);
  background: var(--ink);
  color: var(--on-dark);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__banner-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__banner-link { font-size: 15px; font-weight: 500; }
.hero__banner-link:hover { text-decoration: underline; text-underline-offset: 5px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  min-width: 44px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease), color 160ms var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }
.btn--light { background: var(--surface); color: var(--ink); }
.btn--light:hover { background: var(--paper); }
.btn--ghost-light { background: transparent; color: var(--on-dark); border: 1px solid var(--on-dark); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn--dark { background: var(--ink); color: var(--on-dark); }
.btn--dark:hover { background: var(--dark-surface); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ============ Sections ============ */
.section { padding: 96px 0; }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}
.section__more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.section__more:hover { text-decoration: underline; text-underline-offset: 5px; }

/* Catalog routes */
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.route-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  height: 100%;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.route-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20, 20, 18, 0.12); }
.route-card__media {
  position: relative;
  display: block;
  aspect-ratio: 424 / 500;
  overflow: hidden;
  background: var(--dark-surface);
}
.route-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.route-card__media--street img { object-position: 50% 30%; }
.route-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px;
  min-height: 90px;
}
.route-card__title { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.route-card__arrow { font-size: 16px; color: var(--muted); transition: transform 160ms var(--ease), color 160ms var(--ease); }
.route-card:hover .route-card__arrow { transform: translateX(3px); color: var(--ink); }

/* Seasonal stories */
.stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}
.story { position: relative; }
.story__media {
  position: relative;
  display: block;
  aspect-ratio: 648 / 720;
  border-radius: 324px;
  overflow: hidden;
  background: var(--dark-surface);
}
.story__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story__band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 32px 30px;
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.story__band--green { background: var(--dark-surface); }
.story__band--tomato { background: var(--tomato); }
.story__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}
.story__note { font-size: 14px; color: var(--on-dark-soft); }
.story__link { margin-top: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.story__link:hover { text-decoration: underline; text-underline-offset: 5px; }
.story__band--tomato .story__note { color: rgba(255, 255, 255, 0.9); }

/* Outfit routes */
.outfit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}
.outfit-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  border-top: 1px solid var(--line);
  padding: 24px 4px;
}
.outfit-link__name { font-size: 15px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.outfit-link__arrow { color: var(--muted); transition: transform 160ms var(--ease), color 160ms var(--ease); }
.outfit-link:hover .outfit-link__arrow { transform: translateX(3px); color: var(--ink); }
.outfit-link:hover .outfit-link__name { text-decoration: underline; text-underline-offset: 5px; }

/* Service band (green campaign, desktop + tablet masters) */
.service-band {
  background: var(--green);
  color: var(--on-dark);
  padding: 80px 0;
}
.service-band__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 48px;
  align-items: start;
}
.service-band__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8ECE7;
  margin-bottom: 18px;
}
.service-band__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  max-width: 480px;
}
.service-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  align-content: start;
}
.service-band__hours {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-top: 6px;
}
.service-band__time { font-size: 20px; font-weight: 700; }
.service-band__note { font-size: 14px; color: #E8ECE7; }
.service-item {
  border-top: 1px solid rgba(244, 241, 234, 0.28);
  padding-top: 20px;
}
.service-item__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-item__text { margin-top: 10px; font-size: 15px; color: #E8ECE7; }

/* Newsletter */
.newsletter { padding: 96px 0; }
.newsletter__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--surface);
  padding: 56px;
  align-items: center;
}
.newsletter__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tomato);
}
.newsletter__title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
}
.newsletter__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.newsletter__row { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter__input {
  flex: 1;
  min-width: 200px;
  min-height: 54px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
}
.newsletter__input[aria-invalid="true"] { border-color: var(--tomato); }
.newsletter__consent { margin-top: 14px; font-size: 13px; color: var(--muted); }
.newsletter__status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 1.4em; }
.newsletter__status--error { color: var(--tomato); }
.newsletter__status--success { color: var(--green); }
.newsletter__status--loading { color: var(--muted); }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 64px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__wordmark { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; }
.footer__phone, .footer__mail {
  display: inline-block;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
}
.footer__phone:hover, .footer__mail:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer__hours { margin-top: 14px; font-size: 14px; color: var(--on-dark-soft); }
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-label);
  margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-size: 14px;
  color: var(--on-dark-soft);
}
.footer__link:hover { color: var(--on-dark); text-decoration: underline; text-underline-offset: 5px; }
.footer__legal { border-top: 1px solid rgba(255, 255, 255, 0.16); margin-top: 48px; padding-top: 24px; }
.footer__copy { font-size: 13px; color: var(--on-dark-label); }

/* ============ Motion ============ */
.hero__copy > * {
  animation: hero-enter 400ms var(--ease) both;
}
.hero__copy > *:nth-child(2) { animation-delay: 60ms; }
.hero__copy > *:nth-child(3) { animation-delay: 120ms; }
.hero__copy > *:nth-child(4) { animation-delay: 180ms; }
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-reveal] { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
  [data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ Breakpoint: tablet (<=1120) ============ */
@media (max-width: 1120px) {
  :root { --outer: 24px; --header-h: 72px; }
  .header__wordmark { font-size: 22px; }
  .header__nav-list { gap: 24px; }
  .hero { min-height: 0; }
  .hero__copy { padding: 48px 0 24px; }
  .hero__title { font-size: 58px; }
  .hero__lead { font-size: 17px; }
  .hero__media { min-height: 0; aspect-ratio: 720 / 650; border-radius: 320px; overflow: hidden; }
  .hero__image { position: relative; inset: auto; }
  .hero__banner { width: auto; margin: 0 24px 0; position: relative; right: auto; bottom: auto; }
  .section { padding: 72px 0; }
  .section__title { font-size: 46px; }
  .routes { grid-template-columns: repeat(2, 1fr); }
  .routes__item:last-child { grid-column: 1; }
  .stories { grid-template-columns: repeat(2, 1fr); }
  .story__media { aspect-ratio: 342 / 500; border-radius: 0; }
  .story__band { padding: 20px 24px 22px; }
  .story__title { font-size: 12px; font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .story__note { display: none; }
  .story__link { margin-top: 8px; font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .outfit-list { grid-template-columns: repeat(2, 1fr); }
  .outfit-link { border: 1px solid var(--line); min-height: 70px; padding: 18px 24px; }
  .outfit-link__name { font-size: 12px; }
  .service-band { padding: 64px 0; }
  .service-band__inner { grid-template-columns: 1fr; gap: 36px; }
  .service-band__title { max-width: none; font-size: 40px; }
  .service-band__hours { align-items: flex-start; padding-top: 0; }
  .newsletter__card { padding: 40px; gap: 32px; }
  .newsletter__title { font-size: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}

/* ============ Breakpoint: mobile (<=840) ============
   Header collapses to burger and the hero stacks (tablet master shows
   wordmark + МЕНЮ only). The 768 catalog/stories grids stay at the
   tablet 2-column composition; single-column grids apply at <=560. */
@media (max-width: 840px) {
  body { font-size: 15px; }
  :root { --outer: 20px; }
  .header__nav { display: none; }
  .header__row { height: var(--header-h); }
  .header__burger { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .header__icon--hidden-mobile { display: none; }
  .hero { display: flex; flex-direction: column; }
  .hero__copy { padding: 40px 0 28px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.12em; }
  .hero__title { font-size: 40px; }
  .hero__lead { font-size: 15px; }
  .hero__actions { margin-top: 32px; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__media { aspect-ratio: 350 / 510; margin: 0 0 20px; }
  .hero__image { position: relative; inset: auto; }
  .hero__banner {
    position: relative;
    width: auto;
    margin: 0 20px 40px;
    background: var(--ink);
    border-radius: 0;
    padding: 18px 22px;
    gap: 6px;
  }
  .section { padding: 56px 0; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
  .section__title { font-size: 34px; }
  .service-band { padding: 56px 0; }
  .service-band__inner { grid-template-columns: 1fr; gap: 28px; }
  .service-band__title { font-size: 34px; }
  .service-band__grid { grid-template-columns: 1fr; row-gap: 28px; }
  .service-band__hours { align-items: flex-start; padding-top: 8px; border-top: 1px solid rgba(244, 241, 234, 0.28); }
  .service-band__time { font-size: 18px; }
  .newsletter { padding: 56px 0; }
  .newsletter__card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .newsletter__title { font-size: 28px; }
  .newsletter__row { flex-direction: column; }
  .newsletter__row .btn { width: 100%; }
  .footer { padding: 48px 0 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Small (<=560) ============ */
@media (max-width: 560px) {
  .header__icon { width: 40px; }
  .section__title { font-size: 30px; }
  .hero__title { font-size: 34px; }
  .routes { grid-template-columns: 1fr; }
  .routes__item:last-child { grid-column: auto; }
  .stories { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 350 / 500; }
  .story__band { padding: 18px 20px 20px; }
  .outfit-list { grid-template-columns: 1fr; }
  .outfit-link { border: 0; border-top: 1px solid var(--line); min-height: 84px; padding: 24px 4px; }
  .service-band { padding: 48px 0; }
  .service-band__title { font-size: 30px; }
}
