:root {
  --bg: #f5f6f1;
  --surface: #ffffff;
  --surface-alt: #e8ebe2;
  --text: #16211b;
  --text-muted: #4e5b52;
  --border: rgba(22, 33, 27, 0.12);
  --accent: #2f5d3f;
  --accent-2: #a68a4e;
  --secondary: #24382c;
  --on-accent: #ffffff;
  --dark: #131f18;
  --radius: 2px;
  --radius-btn: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max: 1180px;
  --section-pad: 108px;
  --header-h: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.78;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.75em 1.4em;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--light {
  background: var(--surface);
  color: var(--text);
  border-color: var(--surface);
}

.btn--light:hover {
  background: var(--surface-alt);
  border-color: var(--surface-alt);
  color: var(--text);
}

.notice-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}

.notice-strip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-brand-row {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.header-brand-row .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.header-nav-row {
  padding: 0.55rem 0;
}

.header-nav-row .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-primary {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.35rem;
  flex-wrap: wrap;
}

.nav-contact {
  grid-column: 3;
  justify-self: end;
}

.nav-primary a,
.nav-contact a {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35em 0;
  border-bottom: 2px solid transparent;
}

.nav-primary a:hover,
.nav-contact a:hover,
.nav-primary a[aria-current="page"],
.nav-contact a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent-2);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-spacer {
  grid-column: 1;
}

main {
  min-height: 50vh;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: var(--on-accent);
}

.section--dark .kicker {
  color: var(--accent-2);
}

.section--dark a {
  color: #d4c08a;
}

.section--dark a:hover {
  color: var(--on-accent);
}

.section--surface {
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-offset {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--bg);
}

.hero-offset__media {
  grid-column: 2;
  grid-row: 1;
  min-height: 420px;
}

.hero-offset__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.hero-offset__panel {
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 2;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: -12%;
  background: var(--surface);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.brand-hero {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--accent);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.hero-offset__panel p {
  color: var(--text-muted);
  max-width: 36em;
}

.page-title {
  padding: clamp(4rem, 8vw, 6.5rem) 0 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-title p {
  max-width: 42em;
  color: var(--text-muted);
}

.cat-rows {
  display: flex;
  flex-direction: column;
}

.cat-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) 1.6fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.cat-row:first-child {
  border-top: 1px solid var(--border);
}

.cat-row h3 {
  margin: 0;
}

.cat-row p {
  margin: 0;
  color: var(--text-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0.25rem;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.closing-cta {
  text-align: center;
  max-width: 40em;
  margin-inline: auto;
}

.closing-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mission-quote {
  max-width: 48rem;
}

.mission-quote__pull {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.25;
  color: var(--accent);
  margin: 0 0 1.75rem;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.mission-quote p {
  color: var(--text-muted);
}

.arrival-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.arrival-note {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.arrival-note h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.arrival-note p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.grid-tall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card-tall {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-tall img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.15rem;
}

.card-tall .meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-tall .stars {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.card-tall h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.card-tall .desc {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.card-tall .card-actions {
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.band-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.band-card {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.band-card img {
  width: 100%;
  height: clamp(260px, 42vw, 460px);
  object-fit: cover;
}

.band-card__body {
  text-align: center;
  padding: 2.75rem clamp(1.25rem, 4vw, 3.5rem);
  max-width: 46rem;
  margin-inline: auto;
}

.band-card__body .meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.band-card__body .stars {
  color: var(--accent-2);
  margin-bottom: 0.85rem;
}

.band-card__body h2 {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: inline-block;
}

.band-card__body .desc {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
}

.band-card__body .card-actions {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: inline-block;
}

.row-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.row-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.row-card--flip {
  grid-template-columns: 1fr 40%;
}

.row-card--flip .row-card__media {
  order: 2;
}

.row-card--flip .row-card__body {
  order: 1;
}

.row-card__media {
  padding: 1rem;
}

.row-card__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.row-card__body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.row-card__body .meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.row-card__body .stars {
  color: var(--accent-2);
  margin: 0.35rem 0 0.75rem;
}

.row-card__body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.row-card__body .desc {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.row-card__body .card-actions {
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.catalog-close {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 42em;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: var(--section-pad) 0;
}

.editorial-band:nth-child(even) {
  direction: rtl;
}

.editorial-band:nth-child(even) > * {
  direction: ltr;
}

.editorial-band__rule {
  height: 100%;
  min-height: 180px;
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}

.editorial-band__rule .kicker {
  margin-bottom: 0.5rem;
}

.editorial-band__copy p {
  color: var(--text-muted);
}

.editorial-band:nth-child(3n) {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  margin-inline: calc(50% - 50vw);
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  width: 100vw;
  max-width: 100vw;
}

.editorial-band:nth-child(3n) h2,
.editorial-band:nth-child(3n) .kicker {
  color: var(--on-accent);
}

.editorial-band:nth-child(3n) .kicker {
  color: var(--accent-2);
}

.editorial-band:nth-child(3n) p {
  color: rgba(255, 255, 255, 0.78);
}

.editorial-band:nth-child(3n) .editorial-band__rule {
  border-left-color: rgba(255, 255, 255, 0.18);
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  display: block;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.agree-row input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.field-error {
  display: none;
  color: #8b2e2e;
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

.field-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 1rem;
  color: #8b2e2e;
  font-size: 0.95rem;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

.confirm-panel p {
  color: var(--text-muted);
}

.legal-body {
  padding: var(--section-pad) 0;
  max-width: 46rem;
}

.legal-body h2 {
  margin-top: 2.25rem;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-body h3 {
  margin-top: 1.5rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list li:first-child {
  border-top: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1.15rem 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 4.5rem 0 0;
  text-align: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--on-accent);
}

.site-footer .brand {
  color: var(--on-accent);
  justify-content: center;
  margin-bottom: 1.25rem;
}

.site-footer .brand-name {
  color: var(--on-accent);
}

.footer-blurb {
  max-width: 36em;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.footer-kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0;
  max-width: 52rem;
  margin: 0 auto 1.5rem;
  position: relative;
  padding-right: 5rem;
}

.footer-links a {
  font-size: 0.92rem;
  padding: 0.2rem 0.35rem;
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.35);
  padding: 0 0.15rem;
  user-select: none;
}

.footer-top {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  white-space: nowrap;
}

.footer-email {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--on-accent) !important;
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.02em;
}

.footer-notice {
  max-width: 40em;
  margin: 0 auto 2rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0 2rem;
  text-align: left;
}

.footer-bottom .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-consent {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-consent button {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-consent button:hover {
  color: var(--on-accent);
}

.footer-requisites {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

.consent {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: min(400px, calc(100vw - 2rem));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1.35rem;
  border-bottom: 3px solid var(--accent);
}

.consent[hidden] {
  display: none !important;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.consent__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.consent__cat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text);
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent__actions .btn {
  flex: 1 1 auto;
  font-size: 13px;
  padding: 0.65em 0.9em;
}

.consent__actions .consent__accept {
  order: -1;
  flex: 1 1 100%;
}

.consent__policy {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }

  .arrival-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-offset__panel {
    margin-right: -6%;
  }
}

@media (max-width: 900px) {
  .header-nav-row .wrap {
    display: flex;
    justify-content: flex-end;
  }

  .nav-spacer {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-primary,
  .nav-contact {
    display: none;
  }

  .site-header.is-open .nav-drawer {
    display: flex;
  }

  .nav-drawer {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid var(--border);
  }

  .nav-drawer a {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-decoration: none;
    color: var(--text-muted);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer a[aria-current="page"] {
    color: var(--accent);
  }

  .hero-offset {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-offset__media {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-offset__media img {
    min-height: 280px;
    height: 48vw;
    max-height: 380px;
  }

  .hero-offset__panel {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .editorial-band {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .editorial-band:nth-child(even) {
    direction: ltr;
  }

  .editorial-band__rule {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1.25rem;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .cat-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .steps::before {
    display: none;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .photo-strip img {
    height: 200px;
  }

  .grid-tall {
    grid-template-columns: 1fr;
  }

  .row-card,
  .row-card--flip {
    grid-template-columns: 1fr;
  }

  .row-card--flip .row-card__media,
  .row-card--flip .row-card__body {
    order: initial;
  }

  .row-card__media img {
    min-height: 220px;
    height: 240px;
  }

  .footer-links {
    padding-right: 0;
  }

  .footer-top {
    position: static;
    transform: none;
    display: block;
    width: 100%;
    margin-top: 0.75rem;
  }
}

@media (max-width: 600px) {
  .consent__actions {
    flex-direction: column;
  }

  .consent__actions .consent__accept {
    order: 0;
  }

  .consent__actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .arrival-notes {
    grid-template-columns: 1fr;
  }

  .card-tall img {
    height: 220px;
  }

  .band-card__body {
    padding: 2rem 1.25rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }
}
