@font-face {
  font-family: "Circe";
  src: url("assets/fonts/Circe-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Circe";
  src: url("assets/fonts/Circe-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600 700;
}

:root {
  --ink: #24201d;
  --deep: #171514;
  --paper: #fbf7ef;
  --porcelain: #fffdf8;
  --mist: #ebe5db;
  --gold: #b28445;
  --moss: #4f614c;
  --clay: #a36045;
  --plum: #5a405f;
  --line: rgba(36, 32, 29, 0.14);
  --soft-shadow: 0 18px 44px rgba(45, 36, 27, 0.12);
  --deep-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  --focus: #e7c68f;
  --text-secondary: rgba(36, 32, 29, 0.72);
  --text-on-dark: rgba(255, 253, 248, 0.78);
  --green: var(--moss);
  --muted: var(--text-secondary);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

#new,
#catalog,
#gallery,
#cooperation,
#contacts {
  scroll-margin-top: 96px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Circe", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:where(a, button, input, textarea):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--deep);
  background: var(--porcelain);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 80px;
  padding: 0 24px;
  color: var(--porcelain);
  background: rgba(23, 21, 20, 0.92);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100%, 1540px);
  min-height: 80px;
  margin: 0 auto;
  padding: 12px 0;
}

.site-header-inner > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand picture {
  display: block;
}

.brand-logo {
  width: clamp(190px, 18vw, 260px);
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-toggle,
.nav-mobile-socials {
  display: none;
}

.nav-links a,
.header-action {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.88);
  transition: background 180ms ease, color 180ms ease;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  background: transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  background: rgba(255, 253, 248, 0.13);
  color: var(--porcelain);
}

.nav-links a.is-active {
  color: var(--porcelain);
  background: transparent;
}

.nav-links a.is-active::after {
  position: absolute;
  right: 14px;
  bottom: 5px;
  left: 14px;
  height: 1px;
  content: "";
  background: var(--focus);
}

.nav-links a.is-active:hover,
.nav-links a.is-active:focus-visible {
  background: rgba(255, 253, 248, 0.13);
}

.header-action {
  border: 1px solid rgba(255, 253, 248, 0.32);
  white-space: nowrap;
}

.header-actions,
.social-links {
  display: flex;
  align-items: center;
}

.header-actions {
  justify-self: end;
  gap: 8px;
}

.social-links {
  gap: 6px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.1);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-link img {
  width: auto;
  height: 26px;
  max-width: 30px;
  object-fit: contain;
}

.social-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.social-link:hover {
  border-color: rgba(255, 253, 248, 0.58);
  background: rgba(255, 253, 248, 0.18);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 3px solid #e7c68f;
  outline-offset: 2px;
}

.hero {
  position: relative;
  height: calc(100vh - var(--site-header-height, 80px));
  height: calc(100svh - var(--site-header-height, 80px));
  min-height: 590px;
  max-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 46%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.88), rgba(23, 21, 20, 0.42) 50%, rgba(23, 21, 20, 0.82)),
    linear-gradient(180deg, rgba(23, 21, 20, 0.04), rgba(23, 21, 20, 0.62));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 58px;
  margin: 0 auto;
  padding: clamp(38px, 7vh, 64px) 0;
  color: var(--porcelain);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.custom-copy h2,
.business-card h2,
.about-copy h2,
.seo-inner h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

.hero h1 {
  max-width: 780px;
  font-size: 4.65rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.92);
  font-size: 1.24rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.catalog-download,
.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.catalog-download:hover,
.catalog-download:focus-visible,
.order-button:hover,
.order-button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--deep);
  background: var(--porcelain);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  color: var(--porcelain);
  border: 1px solid rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.08);
}

.button-secondary-dark {
  color: var(--deep);
  border: 1px solid rgba(36, 32, 29, 0.22);
  background: var(--porcelain);
}

.hero-logo {
  width: min(100%, 400px);
  max-height: 400px;
  margin: 0;
  justify-self: end;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--deep-shadow);
}

.hero-logo img {
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.section-band {
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 470px) 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.section-heading h2,
.custom-copy h2,
.business-card h2,
.about-copy h2,
.seo-inner h2,
.contact-copy h2 {
  font-size: 3.05rem;
}

.section-heading p,
.custom-copy p,
.business-card p,
.about-copy p,
.seo-inner p,
.contact-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(36, 32, 29, 0.72);
  font-size: 1.08rem;
}

.new-products {
  background: var(--porcelain);
}

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

.spotlight-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-card div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
}

.spotlight-card span,
.product-type {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.spotlight-card h3,
.product-card h3,
.popular-card h3,
.review-card h3 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.16;
}

.spotlight-card h3 {
  font-size: 1.55rem;
}

.spotlight-card p {
  margin: 12px 0 0;
  color: rgba(36, 32, 29, 0.7);
  font-weight: 400;
}

.benefits {
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(23, 21, 20, 0.91), rgba(23, 21, 20, 0.76)),
    url("assets/tray-gold.jpg") center / cover;
}

.benefits-heading p {
  color: rgba(255, 253, 248, 0.74);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  min-height: 158px;
  padding: 25px;
  border: 1px solid rgba(231, 198, 143, 0.22);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.055);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: #e7c68f;
}

.benefit-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.25;
}

.catalog-section {
  padding-block: clamp(56px, 7vh, 80px);
  background: linear-gradient(180deg, var(--paper), #f2ece2);
}

.tile-catalog {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  align-items: center;
  gap: 34px;
  margin: 0 0 34px;
  padding: 26px;
  border: 1px solid rgba(178, 132, 69, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(235, 229, 219, 0.72)),
    var(--porcelain);
  box-shadow: var(--soft-shadow);
}

.tile-catalog-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.08;
}

.tile-catalog-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(36, 32, 29, 0.72);
  font-size: 1.03rem;
}

.catalog-download,
.order-button {
  color: var(--porcelain);
  background: var(--deep);
}

.catalog-download {
  margin-top: 24px;
}

.tile-catalog-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--porcelain);
}

.tile-catalog-media img {
  display: block;
  width: 100%;
  height: clamp(250px, 27vw, 390px);
  object-fit: cover;
  object-position: center;
}

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

.home-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
  margin-top: 40px;
}

.home-product-card {
  min-width: 0;
}

.home-product-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #e8e2d7;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-product-media:hover img,
.home-product-media:focus-visible img {
  transform: scale(1.025);
}

.home-product-body {
  padding: 14px 2px;
}

.home-product-body .eyebrow {
  margin: 0 0 7px;
  font-size: 11px;
}

.home-product-body h3 {
  margin: 0 0 8px;
  font: 500 24px/1.12 Georgia, serif;
}

.home-product-body h3 a {
  color: inherit;
  text-decoration: none;
}

.home-product-price {
  margin: 0;
  color: #52684f;
  font-weight: 600;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: 0 14px 34px rgba(45, 36, 27, 0.1);
}

.product-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  border: 0;
  background: transparent;
}

.product-photo-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.product-card:hover .product-photo-button img {
  transform: scale(1.035);
}

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

.product-card h3 {
  min-height: 58px;
  font-size: 1.28rem;
}

.product-meta {
  display: grid;
  gap: 9px;
  margin: 16px 0;
}

.product-meta div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: start;
}

.product-meta dt {
  color: rgba(36, 32, 29, 0.52);
  font-size: 0.92rem;
}

.product-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto 0 18px;
}

.swatches::before {
  content: "Цвета";
  margin-right: 2px;
  color: rgba(36, 32, 29, 0.52);
  font-size: 0.92rem;
}

.swatches span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(36, 32, 29, 0.18);
  border-radius: 50%;
  background: var(--swatch);
}

.order-button {
  width: 100%;
}

.popular {
  background: var(--porcelain);
}

.carousel-controls {
  justify-self: end;
  display: flex;
  gap: 10px;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 2rem;
}

.popular-track {
  display: grid;
  grid-auto-columns: minmax(260px, 340px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.popular-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  scroll-snap-align: start;
}

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

.popular-card h3,
.popular-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.popular-card h3 {
  min-height: 52px;
  font-size: 1.22rem;
}

.popular-card p {
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 800;
}

.gallery-section {
  background: linear-gradient(180deg, #f2ece2, var(--paper));
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.gallery-item {
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  border: 0;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: 0 14px 34px rgba(45, 36, 27, 0.1);
}

.gallery-item.is-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 698px;
}

.gallery-item.is-wide {
  grid-column: span 2;
}

.gallery-item.is-tall {
  grid-row: span 2;
  min-height: 698px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.custom-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: 56px;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  color: var(--porcelain);
  background: var(--deep);
}

.custom-copy p,
.business-card p,
.contact-copy p {
  color: rgba(255, 253, 248, 0.76);
}

.custom-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.custom-copy li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 253, 248, 0.88);
}

.custom-copy li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 13px;
  height: 7px;
  border-left: 2px solid #e7c68f;
  border-bottom: 2px solid #e7c68f;
  transform: rotate(-45deg);
}

.custom-panel img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--deep-shadow);
}

.business {
  background: var(--moss);
}

.business-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(23, 21, 20, 0.28), rgba(23, 21, 20, 0.08)),
    var(--moss);
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.business-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #e9c991;
  border: 1px solid rgba(233, 201, 145, 0.34);
  border-radius: 50%;
}

.business-symbol svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.business-card .button {
  margin-top: 28px;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-tags span {
  padding: 12px 15px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--porcelain);
  font-weight: 500;
}

.reviews {
  background: var(--porcelain);
}

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

.review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

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

.review-card p {
  margin: 0;
  padding: 20px;
  color: rgba(36, 32, 29, 0.74);
  font-weight: 400;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  align-items: center;
  gap: 70px;
  background: linear-gradient(180deg, var(--paper), #f3eee6);
}

.about img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.about-copy p {
  margin-top: 20px;
}

.seo-directions {
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: var(--clay);
}

.seo-inner {
  color: var(--porcelain);
}

.seo-inner p {
  color: rgba(255, 253, 248, 0.78);
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--porcelain);
  font-weight: 600;
}

.contact-page {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 500px);
  align-items: center;
  gap: 56px;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(23, 21, 20, 0.94), rgba(23, 21, 20, 0.72)),
    url("assets/tray-gold.jpg") center / cover;
}

.contact-details {
  display: grid;
  gap: 10px;
  padding: 34px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(16px);
  font-style: normal;
}

.contact-details strong {
  margin-bottom: 8px;
  color: #e9c991;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.contact-requisite {
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.7);
  font-variant-numeric: tabular-nums;
}

.contact-details a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  color: var(--porcelain);
}

.contact-details a:last-child {
  border-bottom: 0;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: #e9c991;
}

.site-footer {
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 24px;
  color: rgba(255, 253, 248, 0.68);
  background: var(--deep);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(190px, 0.75fr) minmax(220px, 0.8fr);
  gap: 64px;
  padding-bottom: 42px;
}

.footer-brand img {
  width: min(100%, 340px);
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 9px;
  color: var(--porcelain);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.footer-column a,
.footer-legal a {
  color: #e9c991;
  font-weight: 500;
}

.footer-column a {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--porcelain);
}

.footer-telegram {
  gap: 8px;
}

.footer-telegram svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.footer-details p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-style: normal;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

.footer-bottom p {
  margin: 0;
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 24px;
}

.contact-modal.is-open {
  display: grid;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.78);
  backdrop-filter: blur(5px);
}

.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(820px, calc(100dvh - 48px));
  overflow-y: auto;
  padding: 40px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(178, 132, 69, 0.12), transparent 34%),
    var(--porcelain);
  border: 1px solid rgba(178, 132, 69, 0.26);
  border-radius: 14px;
  box-shadow: 0 34px 100px rgba(12, 10, 8, 0.42);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.88);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-modal-close:hover {
  border-color: rgba(178, 132, 69, 0.62);
  transform: rotate(4deg);
}

.contact-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.contact-modal-intro {
  padding-right: 52px;
}

.contact-modal-intro h2 {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}

.contact-modal-intro > p:last-child {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 14px;
  margin-top: 30px;
}

.form-field {
  min-width: 0;
}

.form-field-wide,
.form-product-context,
.consent-field,
.consent-error,
.form-status,
.contact-form-submit {
  grid-column: 1 / -1;
}

.form-field label {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}

.form-field label span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}

.form-field label svg {
  width: 19px;
  height: 19px;
  color: var(--moss);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(36, 32, 29, 0.22);
  border-radius: 8px;
  background: #fffdfa;
  font: inherit;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input {
  min-height: 48px;
}

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

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(79, 97, 76, 0.52);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(79, 97, 76, 0.12);
  outline: 0;
}

.form-field [aria-invalid="true"] {
  border-color: #9b3e37;
}

.form-counter {
  display: block;
  margin-top: 5px;
  color: rgba(36, 32, 29, 0.54);
  font-size: 0.82rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.form-error {
  min-height: 1.1rem;
  display: block;
  margin-top: 5px;
  color: #87352f;
  font-size: 0.88rem;
}

.form-error:empty {
  min-height: 0;
  margin-top: 0;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  color: var(--text-secondary);
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--moss);
}

.consent-field a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-error:not(:empty) {
  margin-top: -8px;
}

.form-status {
  min-height: 1.25rem;
  margin: -4px 0 0;
  color: var(--moss);
}

.form-status:empty {
  min-height: 0;
  margin: 0;
}

.form-status.is-error {
  color: #87352f;
}

.form-status.is-note {
  color: #79572d;
}

.contact-form-submit {
  width: 100%;
  margin-top: 2px;
  cursor: pointer;
  border: 0;
  color: var(--porcelain);
  background: var(--moss);
  box-shadow: 0 16px 34px rgba(79, 97, 76, 0.22);
}

.contact-form-submit:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.contact-loading,
.contact-success {
  min-height: 390px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 54px 24px 30px;
  text-align: center;
}

.contact-form-view[hidden],
.contact-loading[hidden],
.contact-success[hidden] {
  display: none;
}

.contact-loader {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 2px solid rgba(79, 97, 76, 0.2);
  border-top-color: var(--moss);
  border-radius: 50%;
  animation: contact-loader-spin 800ms linear infinite;
}

.contact-loading h3,
.contact-success h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.contact-loading p,
.contact-success p {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

@keyframes contact-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.success-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  color: var(--moss);
  border: 1px solid rgba(79, 97, 76, 0.34);
  border-radius: 50%;
}

.success-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contact-success a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background:
    radial-gradient(circle at 88% 6%, rgba(178, 132, 69, 0.12), transparent 24rem),
    var(--paper);
}

.legal-main {
  padding: 84px max(24px, calc((100vw - 900px) / 2)) 100px;
}

.legal-heading {
  margin-bottom: 34px;
}

.legal-heading h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.legal-heading p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--text-secondary);
}

.legal-card {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(178, 132, 69, 0.22);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--soft-shadow);
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
}

.legal-card a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(10, 9, 8, 0.88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-panel {
  position: relative;
  width: min(1060px, 100%);
  height: min(760px, calc(100vh - 56px));
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-title {
  margin: 0;
  color: var(--porcelain);
  text-align: center;
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  color: var(--porcelain);
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
  background: rgba(23, 21, 20, 0.72);
}

.lightbox-close {
  top: 0;
  right: 0;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.68);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.lightbox-nav svg {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.landing-page {
  background: var(--paper);
}

.mini-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  color: var(--porcelain);
  background-image:
    linear-gradient(90deg, rgba(23, 21, 20, 0.86), rgba(23, 21, 20, 0.48) 50%, rgba(23, 21, 20, 0.16)),
    var(--page-image);
  background-position: center right;
  background-size: cover;
}

.mini-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.05;
}

.mini-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.15rem;
}

.mini-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
}

.mini-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.mini-content p,
.mini-content li {
  color: rgba(36, 32, 29, 0.76);
  font-size: 1.05rem;
}

.mini-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.admin-page {
  background: #f3eee6;
}

.admin-auth {
  min-height: 100vh;
  display: none;
  place-items: center;
  padding: 24px;
  color: var(--porcelain);
  background:
    linear-gradient(135deg, rgba(23, 21, 20, 0.92), rgba(23, 21, 20, 0.72)),
    url("assets/panel-wildflowers.jpg") center / cover;
}

.admin-page.is-auth-locked .admin-auth {
  display: grid;
}

.admin-page.is-auth-locked .admin-topbar,
.admin-page.is-auth-locked .admin-shell {
  display: none;
}

.admin-auth-card {
  width: min(460px, 100%);
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(23, 21, 20, 0.78);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(18px);
}

.admin-auth-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.08;
}

.admin-auth-card p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.76);
}

.admin-auth-card label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 800;
}

.admin-auth-card input {
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: var(--porcelain);
  font: inherit;
}

.admin-auth-error {
  min-height: 22px;
  margin: 0;
  color: #ffd4cb;
  font-weight: 800;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  color: var(--porcelain);
  background: var(--deep);
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.admin-topbar-actions,
.admin-actions,
.product-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 80px;
}

.admin-hero,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: var(--soft-shadow);
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
  padding: 28px;
}

.admin-hero h1,
.admin-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
}

.admin-hero h1 {
  font-size: 2.5rem;
}

.admin-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(36, 32, 29, 0.72);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.admin-panel-heading {
  margin-bottom: 4px;
}

.admin-panel h2 {
  font-size: 2rem;
}

.admin-panel label,
.product-form label {
  display: grid;
  gap: 7px;
  color: rgba(36, 32, 29, 0.72);
  font-weight: 700;
}

.admin-panel input,
.admin-panel select,
.admin-panel textarea,
.product-form input,
.product-form select,
.product-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid rgba(36, 32, 29, 0.18);
  border-radius: 8px;
  background: #fffdf8;
  font: inherit;
}

.admin-panel textarea {
  resize: vertical;
}

.admin-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-button,
.admin-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  color: var(--porcelain);
  background: var(--deep);
  font-weight: 800;
  text-align: center;
}

.admin-button {
  padding: 11px 18px;
}

.admin-mini-button {
  min-height: 36px;
  padding: 7px 12px;
}

.admin-button-light {
  color: var(--deep);
  background: #e9c991;
}

.admin-button-outline {
  color: var(--deep);
  border: 1px solid rgba(36, 32, 29, 0.18);
  background: var(--porcelain);
}

.admin-topbar .admin-button-outline {
  color: var(--porcelain);
  border-color: rgba(255, 253, 248, 0.32);
  background: transparent;
}

.admin-button-danger {
  color: var(--porcelain);
  background: #8e3f32;
}

.admin-status {
  min-height: 44px;
  margin: 0 0 16px;
  padding: 12px 16px;
  border: 1px solid rgba(79, 97, 76, 0.2);
  border-radius: 8px;
  color: var(--moss);
  background: rgba(79, 97, 76, 0.08);
  font-weight: 800;
}

.admin-status[data-tone="error"] {
  color: #8e3f32;
  border-color: rgba(142, 63, 50, 0.28);
  background: rgba(142, 63, 50, 0.08);
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 18px;
}

.product-list-wrap {
  display: grid;
  align-content: start;
  gap: 12px;
}

.editor-note {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(178, 132, 69, 0.24);
  border-radius: 8px;
  color: rgba(36, 32, 29, 0.72);
  background: rgba(178, 132, 69, 0.08);
  font-weight: 650;
}

.product-list {
  display: grid;
  gap: 10px;
  max-height: 760px;
  overflow: auto;
  padding-right: 4px;
}

.product-list-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 8px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
  text-align: left;
}

.product-list-item.is-active {
  border-color: var(--gold);
  background: rgba(178, 132, 69, 0.1);
}

.product-list-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
}

.product-list-item span,
.product-list-item small,
.product-list-item em {
  grid-column: 2;
}

.product-list-item span {
  font-weight: 800;
}

.product-list-item small {
  color: rgba(36, 32, 29, 0.62);
}

.product-list-item em {
  color: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.product-form {
  display: grid;
  gap: 14px;
}

.product-current {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(79, 97, 76, 0.22);
  border-radius: 8px;
  background: rgba(79, 97, 76, 0.08);
}

.product-current span {
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-current strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.admin-preview {
  width: min(360px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.colors-editor {
  display: grid;
  gap: 10px;
}

.colors-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(36, 32, 29, 0.72);
  font-weight: 800;
}

.color-list {
  display: grid;
  gap: 8px;
}

.color-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 8px;
  align-items: center;
}

.color-row input[type="color"] {
  min-height: 44px;
  padding: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .business-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-logo {
    max-width: 360px;
  }

  .spotlight-grid,
  .benefit-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gallery-item.is-large {
    grid-column: span 2;
  }

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

@media (max-width: 820px) {
  #new,
  #catalog,
  #gallery,
  #cooperation,
  #contacts {
    scroll-margin-top: 162px;
  }

  .site-header {
    padding: 0 18px;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 68px;
    padding: 8px 0;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2px;
    max-height: calc(100dvh - 68px);
    overflow: auto;
    padding: 12px 18px 18px;
    background: rgba(23, 21, 20, 0.98);
    border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  }

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

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    place-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    color: inherit;
    border: 1px solid rgba(255, 253, 248, 0.3);
    border-radius: 12px;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .nav-toggle span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle span:last-child {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav-mobile-socials {
    display: flex;
    gap: 8px;
    padding: 8px 10px 0;
  }

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

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-inner,
  .tile-catalog {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    height: calc(100vh - var(--site-header-height, 68px));
    height: calc(100svh - var(--site-header-height, 68px));
    min-height: min(620px, calc(100svh - var(--site-header-height, 68px)));
    max-height: 820px;
  }

  .hero-inner {
    width: min(100% - 32px, 720px);
    gap: 34px;
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-logo {
    width: min(320px, 100%);
  }

  .tile-catalog-media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .section-band,
  .benefits,
  .custom-panel,
  .business,
  .about,
  .seo-directions,
  .contact-page {
    padding: 64px 18px;
  }

  .section-heading,
  .custom-panel,
  .about,
  .contact-page,
  .mini-content {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading h2,
  .custom-copy h2,
  .business-card h2,
  .about-copy h2,
  .seo-inner h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .spotlight-grid,
  .benefit-grid,
  .review-grid,
  .product-grid,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .spotlight-card img {
    height: 260px;
  }

  .gallery-item,
  .gallery-item.is-large,
  .gallery-item.is-wide,
  .gallery-item.is-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .business-card {
    padding: 28px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .mini-hero {
    min-height: 460px;
    padding: 72px 18px;
  }

  .mini-hero h1 {
    font-size: 3rem;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

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

  .product-list {
    max-height: 360px;
  }
}

@media (max-width: 560px) {
  .home-catalog-grid {
    gap: 24px 10px;
  }

  .home-product-media {
    border-radius: 15px;
  }

  .home-product-body h3 {
    font-size: 19px;
  }

  .home-product-body .eyebrow {
    font-size: 10px;
  }

  .home-product-price {
    font-size: 14px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .nav-links a,
  .header-action {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: min(500px, calc(100svh - var(--site-header-height, 68px)));
    max-height: none;
  }

  .hero h1 {
    font-size: 2.58rem;
  }

  .hero-inner {
    gap: 20px;
    padding: 30px 0 34px;
  }

  .hero-logo {
    display: none;
  }

  .hero-actions,
  .carousel-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .catalog-download,
  .order-button {
    width: 100%;
  }

  .spotlight-grid,
  .benefit-grid,
  .review-grid,
  .product-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .tile-catalog,
  .business-card {
    padding: 18px;
  }

  .tile-catalog-copy h3 {
    font-size: 1.95rem;
  }

  .product-meta div {
    grid-template-columns: 78px 1fr;
  }

  .popular-track {
    grid-auto-columns: minmax(260px, 86vw);
  }

  .carousel-controls {
    justify-self: stretch;
    flex-direction: row;
  }

  .gallery-item,
  .gallery-item.is-large,
  .gallery-item.is-wide,
  .gallery-item.is-tall {
    min-height: 420px;
  }

  .contact-details {
    padding: 22px;
  }

  .header-actions > .social-links {
    display: none;
  }

  .site-footer {
    padding: 46px 18px 22px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    width: min(100%, 320px);
  }

  .footer-bottom p {
    white-space: normal;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-panel {
    height: calc(100vh - 28px);
  }

  .contact-modal {
    align-items: end;
    padding: 0;
  }

  .contact-modal-panel {
    width: 100%;
    max-height: min(92dvh, 820px);
    padding: 30px 18px calc(22px + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }

  .contact-modal-close {
    top: 12px;
    right: 12px;
  }

  .contact-modal-intro {
    padding-right: 44px;
  }

  .contact-modal-intro h2 {
    font-size: 2.15rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .contact-loading,
  .contact-success {
    min-height: 320px;
    padding: 48px 12px 24px;
  }

  .form-field-wide,
  .form-product-context,
  .consent-field,
  .consent-error,
  .form-status,
  .contact-form-submit {
    grid-column: auto;
  }

  .legal-main {
    padding: 56px 18px 72px;
  }

  .admin-shell {
    width: min(100% - 24px, 1220px);
  }

  .admin-hero,
  .admin-panel {
    padding: 18px;
  }

  .admin-hero h1 {
    font-size: 2rem;
  }

  .admin-panel h2 {
    font-size: 1.65rem;
  }

  .admin-two-cols,
  .color-row {
    grid-template-columns: 1fr;
  }

  .admin-topbar-actions,
  .admin-actions,
  .product-form-actions {
    width: 100%;
  }

  .admin-button,
  .admin-mini-button {
    width: 100%;
  }
}

.contact-icon {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #e9c991;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.contact-submit {
  width: 100%;
  margin-top: 12px;
  border: 0;
  cursor: pointer;
}

@media (max-width: 360px) {
  .site-header {
    padding-right: 10px;
    padding-left: 10px;
  }

  .site-header-inner {
    gap: 6px;
  }

  .header-action {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 8px;
  }

  .site-header-inner {
    grid-template-columns: 40px minmax(0, 1fr) 38px;
    gap: 6px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .header-actions,
  .social-links {
    gap: 4px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 10px;
  }

  .header-action {
    min-height: 36px;
    padding: 7px 9px;
    font-size: 0.78rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* city-selector-and-lead-context */
.city-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  cursor: pointer;
  white-space: nowrap;
}

.city-trigger span { color: rgba(255, 253, 248, 0.62); font-size: .76rem; }
.city-trigger strong { max-width: 110px; overflow: hidden; font-size: .82rem; text-overflow: ellipsis; }
.city-trigger:hover,.city-trigger:focus-visible { background: rgba(255, 253, 248, 0.15); outline: none; }
.city-trigger-mobile { display: none; }

.city-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.city-modal.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.city-modal-backdrop { position: absolute; inset: 0; background: rgba(20, 18, 17, .72); backdrop-filter: blur(8px); }
.city-modal-panel { position: relative; width: min(720px, 100%); max-height: min(86dvh, 760px); overflow: auto; padding: 38px; color: var(--ink); border: 1px solid rgba(36,32,29,.12); border-radius: 18px; background: #fffdfa; box-shadow: 0 30px 90px rgba(0,0,0,.28); transform: translateY(8px) scale(.99); transition: transform 180ms ease; }
.city-modal.is-open .city-modal-panel { transform: translateY(0) scale(1); }
.city-modal-panel h2 { margin: 6px 48px 24px 0; font: 500 clamp(2rem, 5vw, 3rem)/1.05 Georgia,serif; }
.city-modal-close { position: absolute; top: 20px; right: 20px; display: grid; width: 44px; height: 44px; place-items: center; color: var(--ink); border: 1px solid rgba(36,32,29,.18); border-radius: 50%; background: transparent; cursor: pointer; }
.city-modal-close svg { width: 20px; height: 20px; stroke: currentColor; }
.city-search { display: grid; gap: 8px; color: var(--text-secondary); font-size: .9rem; }
.city-search input { min-height: 50px; padding: 0 16px; color: var(--ink); border: 1px solid rgba(36,32,29,.2); border-radius: 10px; background: #fff; font: inherit; }
.city-search input:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(79,97,76,.12); outline: none; }
.city-popular { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.city-popular button,.city-results button { color: var(--ink); border: 1px solid rgba(36,32,29,.16); background: #fff; cursor: pointer; }
.city-popular button { min-height: 44px; padding: 8px 13px; border-radius: 999px; }
.city-popular button span { display: none; }
.city-results { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; max-height: 280px; overflow: auto; padding-right: 4px; }
.city-results button { display: grid; gap: 2px; min-height: 56px; padding: 10px 12px; border-radius: 10px; text-align: left; }
.city-results button span { color: var(--text-secondary); font-size: .78rem; }
.city-popular button:hover,.city-popular button:focus-visible,.city-results button:hover,.city-results button:focus-visible { border-color: var(--moss); background: rgba(79,97,76,.07); outline: none; }
.city-popular button:active,.city-results button:active,.city-modal-close:active { transform: scale(.97); }
.city-popular button[aria-selected="true"],.city-results button[aria-selected="true"] { border-color: var(--moss); background: rgba(79,97,76,.12); box-shadow: inset 0 0 0 1px var(--moss); }
.city-empty { grid-column: 1/-1; padding: 24px; color: var(--text-secondary); text-align: center; }

.form-field select { min-height: 48px; appearance: auto; }
.form-city-change { display: inline-flex; min-height: 44px; align-items: center; margin-top: 4px; padding: 0; color: var(--moss); border: 0; background: transparent; cursor: pointer; font: inherit; font-size: .88rem; text-decoration: underline; text-underline-offset: 3px; }
.form-product-context { padding: 13px 15px; color: var(--ink); border-left: 3px solid var(--moss); border-radius: 4px; background: rgba(79,97,76,.08); }

.city-status-toast { position: fixed; right: 24px; bottom: 24px; z-index: 10030; display: flex; max-width: min(420px, calc(100vw - 32px)); align-items: center; gap: 12px; padding: 12px 14px 12px 18px; color: #fffdfa; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: #283326; box-shadow: 0 18px 48px rgba(20,18,17,.28); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }
.city-status-toast.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.city-status-toast button { min-width: 72px; min-height: 44px; padding: 0 12px; color: #f0cf8a; border: 1px solid rgba(240,207,138,.55); border-radius: 999px; background: transparent; cursor: pointer; font: inherit; }
.city-status-toast button:hover,.city-status-toast button:focus-visible { color: #1f291e; background: #f0cf8a; outline: none; }

@media (max-width: 1180px) {
  .header-actions > .city-trigger { display: none; }
  .city-trigger-mobile { display: inline-flex; width: fit-content; margin: 8px 10px; }
}

@media (max-width: 620px) {
  .city-modal { align-items: end; padding: 0; }
  .city-modal-panel { width: 100%; max-height: 92dvh; padding: 28px 18px calc(20px + env(safe-area-inset-bottom)); border-radius: 16px 16px 0 0; }
  .city-results { grid-template-columns: 1fr; }
  .city-status-toast { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); left: 16px; justify-content: space-between; border-radius: 16px; }
}
