@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #0c0b0a;
  --ink-soft: #171513;
  --bone: #f4f1ea;
  --paper: #fffdf8;
  --gold: #b9975b;
  --gold-light: #d8bf8b;
  --burgundy: #6c1f2b;
  --green: #1f3a32;
  --text: #211f1b;
  --muted: #69645c;
  --line: #d8d1c4;
  --light-line: rgba(255, 255, 255, 0.15);
  --success: #2b634f;
  --danger: #8f2d34;
  --shadow: 0 22px 60px rgba(12, 11, 10, 0.16);
  --shell: 1240px;
  --header-height: 76px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bone);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(185, 151, 91, 0.32);
  background: rgba(12, 11, 10, 0.95);
  color: #fff;
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 225px;
  flex-shrink: 0;
  color: #fff;
  opacity: 1;
  visibility: visible;
}

.brand img {
  width: 56px;
  height: 42px;
  border: 1px solid rgba(185, 151, 91, 0.7);
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.nav-two-line {
  display: inline-block;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--light-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link[aria-label="Facebook"] {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
}

.social-link[aria-label="Instagram"] {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0 5%, #fdf497 6% 11%, #fd5949 42%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

.social-link[aria-label="TikTok"] {
  border-color: rgba(255, 255, 255, 0.92);
  background: #050505;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--gold);
  outline: none;
  transform: translateY(-1px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link[aria-label="TikTok"] svg {
  filter: drop-shadow(1px 0 0 #25f4ee) drop-shadow(-1px 0 0 #fe2c55);
}

.language {
  display: grid;
  width: 56px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--light-line);
  border-radius: 3px;
  background: var(--ink-soft);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--light-line);
  border-radius: 3px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--burgundy);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(12, 11, 10, 0.18);
  color: #fff;
}

.button-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-light:hover {
  border-color: var(--ink);
}

.button-outline-dark {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline-dark:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.button-wide {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow.is-light {
  color: var(--gold-light);
}

.display,
h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1,
.display-xl {
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 600;
}

h2,
.display-lg {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 600;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.lead.is-light {
  color: rgba(255, 255, 255, 0.78);
}

.hero {
  position: relative;
  display: flex;
  min-height: 690px;
  height: calc(86vh - var(--header-height));
  max-height: 860px;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero-home {
  --hero-image: url("../images/hero-mez.jpg");
}

.hero-framing {
  --hero-image: url("../images/deluxe-ronaldinho.jpg");
}

.hero-relics {
  --hero-image: url("../images/catalog-messi-ronaldinho.jpg");
}

.hero-search {
  --hero-image: url("../images/puskas.jpg");
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.72) 38%, rgba(8, 7, 6, 0.16) 72%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.7), transparent 45%),
    var(--hero-image) center 35% / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy) 0 33%, var(--gold) 33% 66%, var(--green) 66%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 68%);
  padding: 70px 0 82px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--light-line);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
}

.hero-proof span::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-light);
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.page-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.6) 52%, rgba(8, 7, 6, 0.18)),
    var(--hero-image) center 42% / cover no-repeat;
  content: "";
}

.page-hero .shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 440px;
  align-items: flex-end;
}

.page-hero-content {
  max-width: 760px;
  padding: 68px 0;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: 58px;
}

.order-intro {
  padding: 64px 0 58px;
  border-bottom: 4px solid var(--gold);
  background: var(--ink);
  color: #fff;
}

.order-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.order-intro h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 52px;
}

.order-intro p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.order-intro-note {
  max-width: 290px;
  padding-left: 22px;
  border-left: 1px solid var(--light-line);
  color: var(--gold-light);
  font-size: 12px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-green {
  background: var(--green);
  color: #fff;
}

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

.section-burgundy {
  background: var(--burgundy);
  color: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.section-head h2,
.section-head p {
  margin-bottom: 0;
}

.section-head p {
  color: var(--muted);
}

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

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 135px;
  padding: 28px 28px 25px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-index {
  color: var(--burgundy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.trust-item strong {
  display: block;
  margin: 7px 0 2px;
  font-size: 14px;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
}

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

.service-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.service-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.05) 70%);
  content: "";
}

.service-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 32px;
}

.service-content span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-content h3 {
  margin: 9px 0 8px;
  font-size: 34px;
}

.service-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
}

.media-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.media-stack--quad {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.protected-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #24211d;
  isolation: isolate;
}

.protected-media img {
  height: 100%;
  object-fit: cover;
}

.protected-media::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 140%;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(12, 11, 10, 0.46);
  color: rgba(255, 255, 255, 0.92);
  content: "KARÁCSONDI BROTHERS";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 10px #000;
  transform: translate(-50%, -50%) rotate(-25deg);
  pointer-events: none;
}

.protected-media::before {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  padding: 7px 9px;
  border: 1px solid rgba(216, 191, 139, 0.85);
  background: rgba(12, 11, 10, 0.78);
  color: var(--gold-light);
  content: "KB • VÉDETT KÉP";
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  pointer-events: none;
}

button.protected-media {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  text-align: left;
}

body.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #050504;
}

.lightbox figure::before {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 6px 9px;
  border: 1px solid rgba(216, 191, 139, 0.75);
  background: rgba(12, 11, 10, 0.74);
  color: var(--gold-light);
  content: "KB • VÉDETT KÉP";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.lightbox figure::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 145%;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(12, 11, 10, 0.36);
  color: rgba(255, 255, 255, 0.84);
  content: "KARÁCSONDI BROTHERS";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 14px #000;
  transform: translate(-50%, -50%) rotate(-25deg);
  pointer-events: none;
}

.product-gallery .protected-media::before,
.product-gallery .protected-media::after,
.lightbox--counter-only figure::before,
.lightbox--counter-only figure::after {
  display: none;
  content: none;
}

.lightbox--plain figure::before,
.lightbox--plain figure::after {
  content: none;
}

.lightbox img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 64px 17px 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.lightbox figcaption span:last-child {
  color: var(--gold-light);
  font-weight: 800;
  white-space: nowrap;
}

.lightbox--counter-only [data-lightbox-caption] {
  display: none;
}

.lightbox--counter-only figcaption {
  justify-content: flex-end;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid var(--light-line);
  border-radius: 3px;
  background: rgba(12, 11, 10, 0.82);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 48px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--light-line);
  border-radius: 3px;
  background: rgba(12, 11, 10, 0.82);
  color: #fff;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--gold);
  color: var(--gold-light);
  outline: none;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.media-grid > .protected-media {
  min-height: 720px;
}

.media-stack .protected-media {
  min-height: 350px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--light-line);
}

.process-step {
  position: relative;
  padding: 36px 30px 0 0;
}

.process-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.process-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step h3 {
  font-size: 25px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.quote-visual {
  aspect-ratio: 4 / 3;
}

.quote-mark {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 70px;
  line-height: 0.5;
}

.quote-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.16;
}

.quote-author {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.contact-band {
  border-top: 1px solid rgba(185, 151, 91, 0.35);
  background: var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 0.75fr);
  gap: 60px;
  padding: 66px 0;
}

.contact-grid h2 {
  margin-bottom: 10px;
  font-size: 38px;
}

.contact-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}

.contact-person {
  padding-left: 24px;
  border-left: 1px solid var(--light-line);
}

.contact-person span {
  display: block;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-person strong {
  display: block;
  margin: 8px 0 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.contact-person a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--light-line);
  background: #0d0c0a;
  color: #fff;
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.35fr) auto auto;
  align-items: start;
  gap: 48px;
  padding: 42px 0 34px;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.footer-brand span,
.footer-nav a,
.footer-legal a,
.site-footer-bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px 28px;
}

.footer-legal {
  display: grid;
  gap: 10px;
  text-align: right;
}

.footer-social {
  justify-content: flex-end;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--gold-light);
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 22px;
  border-top: 1px solid var(--light-line);
}

.legal-line {
  padding: 18px 0 26px;
  border-top: 1px solid var(--light-line);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

/* Framing page */
.package-switch {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.package-switch button,
.filter-button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.package-switch button.is-active,
.filter-button.is-active {
  background: var(--ink);
  color: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.package-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.package-card.is-featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.package-media {
  min-height: 100%;
  border-radius: 0;
}

.package-copy {
  display: flex;
  flex-direction: column;
  padding: 38px;
}

.package-kicker {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-copy h2 {
  margin: 10px 0 6px;
  font-size: 42px;
}

.package-price {
  margin-bottom: 24px;
  color: var(--green);
  font-size: 22px;
  font-weight: 700;
}

.package-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 21px;
  color: var(--muted);
  font-size: 13px;
}

.feature-list li::before {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.package-copy .button {
  margin-top: auto;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--paper);
}

.comparison th,
.comparison td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.comparison td {
  color: var(--text);
  font-size: 13px;
}

.comparison td:first-child {
  color: var(--muted);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
}

.faq-item button span:last-child {
  color: var(--burgundy);
  font-family: "Manrope", Arial, sans-serif;
}

.faq-answer {
  display: none;
  max-width: 800px;
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Catalogue */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

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

.filter-button {
  border: 1px solid var(--line);
}

.search-field {
  position: relative;
  width: min(100%, 320px);
}

.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.product-media img {
  transition: transform 450ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 2px;
  background: rgba(31, 58, 50, 0.12);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status.is-sold {
  background: rgba(108, 31, 43, 0.1);
  color: var(--burgundy);
}

.product-price {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.product-body h2 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.04;
}

.product-body p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
}

.product-body .button {
  margin-top: auto;
}

.empty-state {
  display: none;
  padding: 50px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 54px;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 38px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--text);
  padding: 11px 13px;
}

.field textarea {
  min-height: 125px;
  resize: vertical;
}

.field small {
  color: var(--muted);
  font-size: 10px;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.check-line input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--green);
}

.form-note,
.success-message {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(185, 151, 91, 0.1);
  color: var(--muted);
  font-size: 12px;
}

.success-message {
  display: none;
  margin-top: 18px;
  border-color: var(--success);
  background: rgba(43, 99, 79, 0.1);
  color: var(--success);
}

.success-message.is-visible {
  display: block;
}

.help-rail {
  display: grid;
  gap: 18px;
}

.help-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.help-item strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
}

.help-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.order-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.order-process-item {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.order-process-item:last-child {
  border-right: 0;
}

.order-process-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--burgundy);
  font-size: 11px;
  text-transform: uppercase;
}

.order-process-item span {
  color: var(--muted);
  font-size: 11px;
}

.order-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 34px;
  margin-top: 34px;
}

.order-column {
  display: grid;
  min-width: 0;
  gap: 26px;
}

.order-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.order-block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.order-block-head h2 {
  margin: 0;
  font-size: 34px;
}

.order-block-head p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.order-items {
  display: grid;
  gap: 18px;
}

.order-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.order-item-head {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.order-item-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.order-item-title strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.order-item-price {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
}

.order-item-actions {
  display: flex;
  gap: 7px;
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--light-line);
  border-radius: 3px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.icon-button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.order-item-body {
  display: grid;
  gap: 26px;
  padding: 26px;
}

.order-item-section {
  display: grid;
  gap: 18px;
}

.order-item-section + .order-item-section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.order-item-section-title {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.control-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-select-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 14px;
}

.preview-button {
  min-width: 118px;
}

.file-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.file-field {
  display: grid;
  min-height: 105px;
  place-content: center;
  padding: 16px;
  border: 1px dashed var(--gold);
  border-radius: 4px;
  background: rgba(185, 151, 91, 0.06);
  text-align: center;
}

.file-field input {
  width: 100%;
  margin-top: 8px;
  font-size: 11px;
}

.add-item-button {
  width: 100%;
  min-height: 56px;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  background: rgba(185, 151, 91, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.add-item-button:hover {
  background: rgba(185, 151, 91, 0.16);
}

.order-summary {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.order-summary-head {
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--light-line);
}

.order-summary-head h2 {
  margin: 0;
  font-size: 31px;
}

.order-summary-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--light-line);
}

.summary-meta-item span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  text-transform: uppercase;
}

.summary-meta-item strong {
  display: block;
  margin-top: 3px;
  font-size: 11px;
}

.order-summary-items {
  display: grid;
  max-height: 360px;
  gap: 0;
  overflow-y: auto;
  padding: 0 26px;
}

.summary-order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-line);
}

.summary-order-item strong,
.summary-order-item span {
  font-size: 11px;
}

.summary-order-item small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.order-summary-total {
  padding: 22px 26px 26px;
}

.total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.total-row span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.total-row strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
}

.deposit-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--light-line);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.quote-note {
  display: none;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 10px;
}

.quote-note.is-visible {
  display: block;
}

.order-consent {
  display: grid;
  gap: 16px;
}

.order-consent a {
  color: var(--burgundy);
  text-decoration: underline;
}

.product-preview-dialog {
  width: min(720px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.product-preview-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.product-preview-dialog img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.product-preview-copy {
  padding: 18px 62px 20px 22px;
}

.product-preview-copy strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
}

.product-preview-copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.range-item {
  min-height: 190px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: inherit;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

a.range-item:hover,
a.range-item:focus-visible {
  background: #fff;
  box-shadow: 0 16px 34px rgba(52, 42, 30, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.range-item span {
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.range-item h3 {
  margin: 12px 0 9px;
  font-size: 25px;
}

.range-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.range-price {
  display: block;
  margin-top: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.range-cta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--gold-light);
}

.product-detail-hero {
  --hero-image: url("../images/hero-mez.jpg");
}

.product-detail-hero.page-hero {
  min-height: 560px;
}

.product-detail-hero.page-hero .shell {
  min-height: 560px;
}

.product-detail-hero .page-hero-content {
  max-width: 860px;
}

.product-detail-hero .page-hero-content h1 {
  max-width: 820px;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
  max-width: 860px;
}

.product-fact {
  padding: 18px;
  border: 1px solid var(--light-line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.product-fact span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-fact strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

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

.detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(48, 38, 26, 0.06);
}

.detail-card h2,
.detail-card h3 {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.product-compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.product-compare th,
.product-compare td {
  padding: 15px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.product-compare th {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-compare td:first-child {
  color: var(--burgundy);
  font-weight: 800;
}

.highlight-note {
  margin-top: 22px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(185, 151, 91, 0.12);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.no-results {
  display: none;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 16px;
  }

  .brand {
    min-width: 190px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .header-actions .button {
    display: none;
  }

  .header-social {
    display: none;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .package-media {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

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

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 24px;
    background: #161310;
    backdrop-filter: blur(14px);
    z-index: 60;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--light-line);
    font-size: 18px;
    color: #fff;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    color: var(--gold);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    min-height: 650px;
    height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.45)),
      linear-gradient(0deg, rgba(8, 7, 6, 0.8), transparent 55%),
      var(--hero-image) center 35% / cover no-repeat;
  }

  .hero-content {
    width: min(760px, 86%);
  }

  h1,
  .display-xl {
    font-size: 54px;
  }

  h2,
  .display-lg {
    font-size: 42px;
  }

  .section {
    padding: 82px 0;
  }

  .section-head,
  .quote-band,
  .form-layout,
  .order-intro-grid,
  .order-workspace {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

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

  .contact-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .contact-person:first-of-type {
    padding-left: 0;
    border-left: 0;
  }

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

  .order-summary {
    position: static;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-legal {
    grid-template-columns: repeat(2, max-content);
    text-align: left;
  }

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

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

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

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

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    display: none;
  }

  .lightbox-nav {
    width: 42px;
    height: 52px;
    font-size: 32px;
  }

  .lightbox figcaption {
    flex-direction: column;
    gap: 6px;
    padding-right: 20px;
  }

  .language {
    display: none;
  }

  .hero {
    min-height: 670px;
    align-items: flex-end;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(8, 7, 6, 0.98) 0%, rgba(8, 7, 6, 0.78) 49%, rgba(8, 7, 6, 0.25) 100%),
      var(--hero-image) center 28% / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    padding: 48px 0 58px;
  }

  h1,
  .display-xl,
  .page-hero h1 {
    font-size: 43px;
  }

  h2,
  .display-lg {
    font-size: 36px;
  }

  h3 {
    font-size: 25px;
  }

  .lead {
    font-size: 16px;
  }

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

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 28px;
  }

  .page-hero,
  .page-hero .shell {
    min-height: 420px;
  }

  .page-hero-content {
    padding: 50px 0;
  }

  .order-intro {
    padding: 46px 0 42px;
  }

  .order-intro h1 {
    font-size: 40px;
  }

  .order-intro-note {
    max-width: none;
  }

  .section,
  .section-sm {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 35px;
  }

  .trust-grid,
  .service-grid,
  .catalog-grid,
  .process,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item {
    border-left: 1px solid var(--line);
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 410px;
  }

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

  .media-grid > .protected-media {
    min-height: 500px;
  }

  .media-stack {
    grid-template-rows: auto;
  }

  .media-stack .protected-media {
    min-height: 340px;
  }

  .protected-media::after {
    font-size: 18px;
  }

  .process-step {
    padding-right: 0;
  }

  .quote-text {
    font-size: 27px;
  }

  .contact-grid {
    gap: 28px;
  }

  .contact-person {
    padding: 22px 0 0;
    border-top: 1px solid var(--light-line);
    border-left: 0;
  }

  .package-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

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

  .package-media {
    min-height: 420px;
  }

  .package-copy,
  .form-panel {
    padding: 26px 22px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

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

  .product-media {
    aspect-ratio: 5 / 6;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .order-process-item {
    min-height: 100px;
    border-bottom: 1px solid var(--line);
  }

  .order-process-item:nth-child(2) {
    border-right: 0;
  }

  .order-block,
  .order-item-body {
    padding: 22px 18px;
  }

  .order-block-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-block-head p {
    text-align: left;
  }

  .product-select-row,
  .control-grid,
  .control-grid.is-three,
  .file-pair {
    grid-template-columns: 1fr;
  }

  .preview-button {
    width: 100%;
  }

  .order-item-head {
    padding: 11px 15px;
  }

  .order-item-title {
    display: grid;
    gap: 1px;
  }

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

  .product-detail-hero {
    min-height: auto;
  }

  .product-detail-hero.page-hero .shell {
    min-height: auto;
  }

  .product-detail-hero .page-hero-content {
    padding: 54px 0 46px;
  }

  .product-facts {
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 22px;
  }

  .product-compare th,
  .product-compare td {
    padding: 13px 12px;
    font-size: 13px;
  }

  .highlight-note {
    font-size: 21px;
  }
}

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