:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-alt: #e9eee5;
  --text: #1a221a;
  --text-muted: #525d51;
  --border: rgba(26, 34, 26, 0.12);
  --accent: #5c7350;
  --accent-2: #9c6f3c;
  --secondary: #2c3a2a;
  --on-accent: #ffffff;
  --deep: #161f16;
  --radius: 0px;
  --radius-btn: 2px;
  --radius-card: 6px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --max: 1200px;
  --section-pad: 104px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  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(--accent-2);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  flex-shrink: 0;
}

.brand img {
  width: 36px;
  height: 39px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

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

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

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

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence-notice p {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

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

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

.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.section-tight {
  padding: 4rem 0;
}

.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-corner {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-corner .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 3rem;
  align-items: start;
  padding-bottom: 5rem;
}

.hero-corner h1 {
  grid-column: 1 / -1;
  max-width: 18ch;
}

.hero-corner .hero-lead {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36ch;
  margin-top: -1rem;
}

.hero-corner .hero-photo {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: -48px;
  width: min(320px, 38vw);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  z-index: 2;
}

.hero-corner .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.category-card .panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem;
}

.category-card h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.category-card a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.category-card a:hover {
  color: var(--accent-2);
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.look-item {
  padding: 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.look-item:nth-child(2n) {
  border-right: none;
}

.look-item:nth-child(n + 3) {
  border-bottom: none;
}

.look-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 0.6rem;
}

.look-item h3 {
  margin-bottom: 0.65rem;
}

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

.mission {
  max-width: 68ch;
  margin-inline: auto;
  text-align: left;
}

.mission::before {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.mission h2 {
  margin-bottom: 1.25rem;
}

.mission p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.photo-strip-intro {
  max-width: 52ch;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.1fr;
  grid-template-rows: 220px 280px;
  gap: 0.85rem;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.mosaic .m1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

.mosaic .m2 {
  grid-column: 2;
  grid-row: 1;
}

.mosaic .m3 {
  grid-column: 3 / 5;
  grid-row: 1;
}

.mosaic .m4 {
  grid-column: 2 / 4;
  grid-row: 2;
}

.mosaic .m5 {
  grid-column: 4;
  grid-row: 2;
}

.closing-cta {
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.closing-cta .container {
  max-width: 48ch;
}

.closing-cta h2 {
  margin-bottom: 0.85rem;
}

.closing-cta p {
  color: var(--text-muted);
}

.page-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  max-width: 58ch;
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.catalog-close {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

.catalog-close p {
  max-width: 56ch;
  color: var(--text-muted);
}

.landmark-list {
  display: flex;
  flex-direction: column;
}

.landmark-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  align-items: stretch;
}

.landmark-row.reverse {
  grid-template-columns: 1fr 40%;
}

.landmark-row.reverse .landmark-photo {
  order: 2;
}

.landmark-row.reverse .landmark-body {
  order: 1;
}

.landmark-photo {
  position: relative;
  min-height: 280px;
}

.landmark-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.landmark-photo .name-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  background: rgba(22, 31, 22, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin: 0;
}

.landmark-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: var(--surface);
  border-left: 1px solid var(--border);
}

.landmark-row.reverse .landmark-body {
  border-left: none;
  border-right: 1px solid var(--border);
}

.landmark-body .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.landmark-body .stars {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.landmark-body p {
  color: var(--text-muted);
}

.elite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  padding: 3.5rem 0;
}

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

.elite-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 1.25rem;
}

.elite-card h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 0.4rem;
}

.elite-card .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  flex-grow: 0;
}

.elite-card .stars {
  color: var(--accent-2);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
  flex-grow: 0;
}

.elite-card p:not(.meta):not(.stars) {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.15rem;
}

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

.region-band {
  border-bottom: 1px solid var(--border);
  padding: 0 0 3.5rem;
  margin-bottom: 3.5rem;
}

.region-band:last-of-type {
  margin-bottom: 0;
}

.region-band img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 1.75rem;
}

.region-band .band-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.region-band .city-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.65rem;
}

.region-band h2 {
  margin-bottom: 0.5rem;
}

.region-band .stars {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.region-band p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.method-stack {
  padding: 4rem 0 5rem;
}

.method-block {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  max-width: 72ch;
}

.method-block:last-child {
  border-bottom: none;
}

.method-block .num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.method-block h2 {
  margin-bottom: 1.25rem;
}

.method-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.method-block p:last-child {
  margin-bottom: 0;
}

.adults-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 3.5rem 0 5rem;
  align-items: start;
}

.adults-index {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  list-style: none;
  border-left: 1px solid var(--border);
  padding-left: 1rem;
}

.adults-index a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0;
  line-height: 1.4;
}

.adults-index a:hover,
.adults-index a:focus {
  color: var(--accent);
}

.adults-prose .adults-section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.adults-prose .adults-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.adults-prose h2 {
  margin-bottom: 1.15rem;
}

.adults-prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

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

.contact-email {
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--secondary);
}

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

.form-group textarea {
  min-height: 140px;
  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;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: auto;
}

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

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

.form-status[aria-live] {
  margin-top: 0.75rem;
  color: #8b2e2e;
  font-size: 0.9rem;
}

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

.confirm-panel h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 1.15rem;
}

.legal-body {
  padding: 3.5rem 0 5rem;
  max-width: 72ch;
}

.legal-body h1 {
  margin-bottom: 0.5rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

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

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.sitemap-body {
  padding: 3.5rem 0 5rem;
}

.sitemap-body > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 52ch;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  align-items: center;
  line-height: 2;
}

.sitemap-links a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 0 0.35rem;
}

.sitemap-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.sitemap-links .sep {
  color: var(--text-muted);
  user-select: none;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer-top {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .brand {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  list-style: none;
  max-width: 640px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-rule {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
}

.footer-pills {
  width: min(100% - 2.5rem, var(--max));
  margin: 1.25rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-pills span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-btn);
}

.footer-adults-note {
  width: min(100% - 2.5rem, var(--max));
  margin: 0.85rem auto 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  margin-top: 1.5rem;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom .ind-copy {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 0.85rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  list-style: none;
  margin-bottom: 0.75rem;
}

.footer-legal a,
.footer-legal button {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-email {
  display: block;
  margin: 0.5rem 0;
  font-size: 0.85rem;
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.consent-backdrop[hidden] {
  display: none;
}

.consent-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  max-width: 520px;
  width: 100%;
  padding: 1.75rem 1.5rem;
}

.consent-modal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.consent-actions .btn {
  border: none;
}

.consent-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-link:hover {
  color: var(--accent);
}

.consent-policy {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.consent-manage {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.consent-manage[hidden] {
  display: none;
}

.consent-manage-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  max-width: 420px;
  width: 100%;
  padding: 1.5rem;
}

.consent-manage-panel h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.consent-cat {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
}

.consent-cat label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

.consent-cat input:disabled {
  cursor: not-allowed;
}

.consent-cat small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  margin-left: 1.65rem;
}

.consent-manage-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

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

  .category-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .category-card {
    min-height: 0;
  }

  .category-card img {
    min-height: 360px;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 220px;
  }

  .mosaic .m1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .mosaic .m2 {
    grid-column: 2;
    grid-row: 1;
  }

  .mosaic .m3 {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic .m4 {
    grid-column: 1;
    grid-row: 3;
  }

  .mosaic .m5 {
    grid-column: 2;
    grid-row: 3;
  }

  .elite-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-variant: normal;
    letter-spacing: 0.12em;
  }

  .adults-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .adults-index {
    position: static;
    border-left: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

  .adults-index a {
    padding: 0.25rem 0;
  }
}

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

  .hero-corner .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 12rem;
  }

  .hero-corner h1 {
    max-width: none;
  }

  .hero-corner .hero-lead {
    grid-column: 1;
    margin-top: 0;
    max-width: none;
  }

  .hero-corner .hero-photo {
    width: min(240px, 70vw);
    bottom: -32px;
    right: 1.25rem;
  }

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

  .look-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .look-item:last-child {
    border-bottom: none;
  }

  .look-item:nth-child(n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .landmark-row,
  .landmark-row.reverse {
    grid-template-columns: 1fr;
  }

  .landmark-row.reverse .landmark-photo,
  .landmark-row.reverse .landmark-body {
    order: unset;
  }

  .landmark-body,
  .landmark-row.reverse .landmark-body {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
  }

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

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-inner,
  .independence-notice p,
  .footer-top,
  .footer-rule,
  .footer-pills,
  .footer-adults-note {
    width: min(100% - 1.5rem, var(--max));
  }

  .consent-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }

  .mosaic .m1,
  .mosaic .m2,
  .mosaic .m3,
  .mosaic .m4,
  .mosaic .m5 {
    grid-column: 1;
    grid-row: auto;
  }

  .category-card img {
    min-height: 300px;
  }
}
