:root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-alt: #e9ebef;
  --text: #1a1f27;
  --text-muted: #525c6b;
  --border: rgba(26, 31, 39, 0.12);
  --accent: #b3623a;
  --accent-2: #2f4a63;
  --secondary: #2b3542;
  --on-accent: #ffffff;
  --dark: #161c24;
  --radius: 10px;
  --radius-pill: 999px;
  --font-heading: 'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1320px;
  --section-pad: 120px;
  --header-h: 120px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

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

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

p {
  margin: 0 0 1.1em;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

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

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

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s;
}

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

.link-arrow:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.site-header.is-solid {
  position: sticky;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 18px 0 14px;
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.02em;
}

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

.nav-rule {
  height: 1px;
  background: var(--border);
  margin: 14px 0 12px;
}

.nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

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

.independence-notice {
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  background: var(--surface);
  padding: 10px 24px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  position: relative;
  z-index: 90;
}

.site-header:not(.is-solid) + .independence-notice {
  margin-top: var(--header-h);
}

.site-header.is-solid + .independence-notice {
  border-top: none;
}

.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 {
  position: relative;
  padding: 48px 0 0;
  min-height: 78vh;
  background: var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px 48px;
  align-items: start;
  padding-bottom: 80px;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  margin-inline: 0;
}

.hero-intro {
  grid-column: 2;
  margin-top: 12px;
  margin-inline: 0;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 38ch;
}

.hero-photo {
  grid-column: 2;
  justify-self: end;
  width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark .kicker {
  color: #fff;
}

.section-dark .kicker {
  color: #d4a288;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.cat-band:last-child {
  border-bottom: none;
}

.cat-band.reverse .cat-copy {
  order: -1;
}

.cat-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
}

.cat-copy h2 {
  margin-bottom: 0.45em;
}

.cat-copy p {
  color: var(--text-muted);
  max-width: 46ch;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-block {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 30px;
}

.quote-block p {
  color: var(--text);
  margin-bottom: 0.8em;
}

.quote-block cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

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

.mosaic img:nth-child(1) {
  grid-row: 1 / 3;
  height: 100%;
}

.mosaic img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.mosaic img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.mosaic img:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.mosaic img:nth-child(5) {
  grid-column: 4;
  grid-row: 1 / 3;
  margin-top: 40px;
  height: calc(100% - 40px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  padding-top: 24px;
}

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

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent);
}

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

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

.page-title {
  padding: 56px 0 48px;
}

.page-title p {
  max-width: 62ch;
  margin-inline: 0;
  color: var(--text-muted);
  font-size: 17px;
}

.stack-band {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.stack-band:last-of-type {
  border-bottom: none;
}

.stack-band img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}

.stack-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.stack-copy h2 {
  margin-bottom: 0.35em;
}

.stack-copy .accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.2em;
  border: none;
}

.stack-copy p {
  color: var(--text-muted);
  margin-bottom: 1.4em;
}

.stack-meta {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.6em;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.masonry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.masonry-card.image-bottom {
  flex-direction: column-reverse;
}

.masonry-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.masonry-card .card-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.masonry-card .accent-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 1em;
  border: none;
}

.masonry-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.3em;
}

.masonry-card .card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.4em;
  font-family: var(--font-heading);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-premier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-premier img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.card-premier .card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-premier h2 {
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 0.75em;
}

.card-premier .name-line {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 0.25em;
  line-height: 1.3;
}

.card-premier .card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 0.85em;
  font-family: var(--font-heading);
}

.card-premier p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.4em;
  font-size: 15px;
}

.card-premier .btn {
  width: 100%;
}

.grid-2-tall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.card-gem {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-gem img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-gem .card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-gem .city-kicker {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7em;
}

.card-gem h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 0.7em;
}

.card-gem p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.4em;
}

.catalog-close {
  padding: 64px 0 var(--section-pad);
  text-align: center;
}

.catalog-close p {
  max-width: 58ch;
  margin: 0 auto 1em;
  color: var(--text-muted);
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:nth-child(even) .editorial-text {
  order: 2;
}

.editorial-band:nth-child(even) .editorial-aside {
  order: 1;
}

.editorial-aside {
  border-left: 2px solid var(--accent);
  padding: 24px 0 24px 32px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.3;
  position: sticky;
  top: 120px;
}

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

.editorial-band:nth-child(odd) {
  background: transparent;
}

.section-dark .editorial-band {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section-dark .editorial-aside {
  color: rgba(255, 255, 255, 0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.contact-intro p {
  color: var(--text-muted);
  max-width: 40ch;
}

.contact-email {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--accent);
  text-decoration: none;
}

.contact-email:hover {
  color: var(--accent-2);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: 36px;
}

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

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

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

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

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.agree-row input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.field-error {
  display: none;
  color: #9b2c2c;
  font-size: 13px;
  margin-top: 0.4em;
}

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

.form-status {
  display: none;
  margin-top: 1rem;
  color: #9b2c2c;
  font-size: 14px;
}

.form-status.is-visible {
  display: block;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: 40px 36px;
}

.confirm-panel[hidden] {
  display: none;
}

.confirm-panel h2 {
  margin-bottom: 0.5em;
}

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

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 780px;
}

.legal-body h2 {
  margin-top: 2.2em;
  margin-bottom: 0.55em;
  font-size: clamp(22px, 2.4vw, 28px);
}

.legal-body h3 {
  margin-top: 1.4em;
  margin-bottom: 0.4em;
}

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

.legal-body ul {
  padding-left: 1.2em;
  margin: 0 0 1.1em;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--section-pad);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sitemap-list li {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-list a {
  font-family: var(--font-heading);
  font-size: 18px;
  text-decoration: none;
  color: var(--text);
}

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

.sitemap-list span {
  color: var(--text-muted);
  font-size: 15px;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

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

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 720px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  text-decoration: none;
  color: var(--text-muted);
}

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

.footer-rule {
  height: 1px;
  background: var(--border);
  margin: 36px 0 28px;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-pill {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

.footer-mail {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 32px;
}

.footer-mail:hover {
  color: var(--accent-2);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-independence {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bar button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent-2);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.consent {
  position: fixed;
  z-index: 1000;
  left: 24px;
  bottom: 24px;
  width: min(100% - 48px, 400px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px 22px 20px;
  box-shadow: none;
}

.consent::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
}

.consent[hidden] {
  display: none;
}

.consent h2 {
  font-size: 18px;
  margin-bottom: 0.55em;
}

.consent p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.7em;
  line-height: 1.55;
}

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 18px;
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.consent-cat:first-child {
  border-top: none;
  padding-top: 0;
}

.consent-cat-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
}

.consent-cat-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.consent-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-switch i {
  position: absolute;
  inset: 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s;
}

.consent-switch i::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: transform 0.2s;
}

.consent-switch input:checked + i {
  background: var(--accent);
  border-color: var(--accent);
}

.consent-switch input:checked + i::after {
  transform: translateX(20px);
  border-color: var(--on-accent);
  background: var(--on-accent);
}

.consent-switch input:disabled + i {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.consent-switch input:disabled + i::after {
  background: var(--on-accent);
  border-color: var(--on-accent);
  transform: translateX(20px);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent-actions button {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 0.65em 1.1em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.consent-actions button:hover {
  border-color: var(--accent);
}

.consent-actions button[data-action="accept"]:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent-policy {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
}

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

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

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

  .mosaic img:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
  }

  .mosaic img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .mosaic img:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .mosaic img:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic img:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3;
    margin-top: 0;
    height: 100%;
  }

  .editorial-band {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-row {
    min-height: 44px;
    justify-content: flex-end;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    gap: 0;
    z-index: 200;
  }

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

  .nav-links a {
    padding: 12px 14px;
    border-bottom: none;
  }

  .nav-links a[aria-current="page"] {
    background: var(--surface-alt);
    border-radius: 6px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-intro {
    grid-column: 1;
    max-width: none;
  }

  .hero-photo {
    grid-column: 1;
    justify-self: start;
    width: min(100%, 360px);
    margin-bottom: -40px;
  }

  .cat-band,
  .cat-band.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cat-band.reverse .cat-copy {
    order: 0;
  }

  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .editorial-band,
  .editorial-band:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .editorial-band:nth-child(even) .editorial-text,
  .editorial-band:nth-child(even) .editorial-aside {
    order: 0;
  }

  .editorial-aside {
    position: static;
    border-left: none;
    border-top: 2px solid var(--accent);
    padding: 20px 0 0;
    margin-bottom: 8px;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
    --header-h: 100px;
  }

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

  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-form,
  .confirm-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 560px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

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

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

  .header-inner {
    padding: 14px 0 10px;
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .mosaic img,
  .mosaic img:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    height: 220px;
    margin-top: 0;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
