:root {
  --ink: #151816;
  --ink-soft: #343a35;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --sage: #78927c;
  --sage-deep: #405d49;
  --wine: #8e263a;
  --rose: #e7b4aa;
  --gold: #b99a5d;
  --line: rgba(21, 24, 22, 0.14);
  --shadow: 0 24px 70px rgba(21, 24, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.is-products-open,
.site-header.is-services-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 34px rgba(21, 24, 22, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 185px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 14px;
  font-weight: 700;
}

.products-toggle,
.services-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.products-toggle span,
.services-toggle span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.site-header.is-products-open .products-toggle span,
.site-header.is-services-open .services-toggle span {
  transform: rotate(225deg) translate(-2px, 0);
}

.products-panel,
.services-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 24px 45px rgba(21, 24, 22, 0.12);
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.35s ease, opacity 0.2s ease, transform 0.25s ease, visibility 0.35s;
}

.site-header.is-products-open .products-panel,
.site-header.is-services-open .services-panel {
  visibility: visible;
  max-height: 620px;
  opacity: 1;
  transform: translateY(0);
}

.products-panel-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(520px, 1.8fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(1280px, calc(100% - 72px));
  padding: 38px 0 28px;
  margin: 0 auto;
}

.products-showcase {
  padding-top: 104px;
  background: var(--ivory);
}

.inner-page-offset {
  padding-top: 142px;
}

.products-showcase .products-panel {
  position: static;
  visibility: visible;
  max-height: none;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.products-panel-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3vw, 45px);
}

.panel-all-link {
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.panel-menu-all-link {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.round-category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: clamp(12px, 2vw, 25px);
}

.round-category-list a {
  min-width: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.round-category-list img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 12px;
  border: 1px solid rgba(21, 24, 22, 0.12);
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.round-category-list a:hover img {
  border-color: var(--wine);
  transform: scale(1.035);
}

.panel-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}

.panel-links a {
  padding: 16px 12px 0;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.panel-links a:last-child {
  border-right: 0;
}

.panel-category-links {
  grid-template-columns: repeat(5, 1fr);
}

.panel-category-links a {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.panel-category-links a:nth-child(5n) {
  border-right: 0;
}

.panel-category-links a:nth-child(n + 6) {
  border-bottom: 0;
}

.panel-service-links {
  grid-template-columns: repeat(4, 1fr);
}

.panel-service-links a {
  padding-top: 15px;
  padding-bottom: 15px;
}

.panel-service-links a:nth-child(4n) {
  border-right: 0;
}

.category-page {
  padding: 132px clamp(18px, 5vw, 72px) 32px;
}

.category-page h1 {
  max-width: 1320px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 72px);
}

.catalog-products {
  padding: 0 clamp(18px, 5vw, 72px) 72px;
}

.catalog-products-inner {
  max-width: none;
  margin: 0;
}

.catalog-products-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 18px;
}

.home-products {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px) 72px;
  background: var(--ivory);
}

.home-products-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto 30px;
}

.home-products-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.product-sort {
  display: grid;
  gap: 5px;
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-sort select {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.product-sort select:hover,
.product-sort select:focus-visible {
  border-color: var(--wine);
  outline: 0;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-products-grid .catalog-empty {
  grid-column: 1 / -1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.product-card-link:hover,
.product-card-link:focus-visible {
  background: #f8f7f4;
  outline: 0;
  transform: translateY(-2px);
}

.product-card-link:focus-visible {
  box-shadow: inset 0 0 0 2px var(--wine);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-detail-image {
  width: 100%;
  min-height: 480px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--ivory);
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 5vw, 72px);
  border-left: 1px solid var(--line);
}

.product-detail-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.08;
}

.product-detail-meta {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.product-detail-price {
  margin-bottom: 28px;
  color: var(--wine);
  font-size: 24px;
}

.product-detail-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px 0 12px;
  border: 1px solid #1f9d55;
  border-radius: 4px;
  color: #fff;
  background: #1f9d55;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.product-detail-order:hover,
.product-detail-order:focus-visible {
  background: #187d43;
  outline: 0;
}

.product-detail-order:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 157, 85, 0.28);
}

.product-detail-order img {
  width: 28px;
  height: 28px;
}

.product-card--skeleton {
  pointer-events: none;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  background: var(--ivory);
}

.product-card[data-category-slug="celenk"] .product-card-image {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
}

.product-card-copy {
  padding: 16px;
}

.product-card-copy h2 {
  margin-bottom: 7px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.product-card-copy p {
  min-height: 38px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.product-card-copy .product-card-code {
  min-height: 0;
  margin-top: -5px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.product-card-price {
  color: var(--wine);
  font-size: 15px;
  font-weight: 900;
}

.product-card-skeleton-image,
.product-card-skeleton-line {
  display: block;
  background: #eceae7;
  animation: product-skeleton-pulse 1.2s ease-in-out infinite alternate;
}

.product-card-skeleton-line {
  width: 82%;
  height: 12px;
  margin-bottom: 11px;
}

.product-card-skeleton-line--title {
  width: 66%;
  height: 16px;
}

.product-card-skeleton-line--price {
  width: 42%;
  margin-bottom: 0;
}

@keyframes product-skeleton-pulse {
  to {
    opacity: 0.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card-skeleton-image,
  .product-card-skeleton-line {
    animation: none;
  }
}

.catalog-empty {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.admin-page {
  min-height: 100vh;
  padding: 128px clamp(18px, 5vw, 72px) 72px;
  background: var(--ivory);
}

.admin-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.admin-topbar,
.admin-toolbar,
.admin-product-row,
.admin-form-grid {
  display: grid;
  gap: 18px;
}

.admin-topbar {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 34px;
}

.admin-toolbar {
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  align-items: end;
  margin-bottom: 18px;
}

.admin-panel,
.admin-product-row {
  border: 1px solid var(--line);
  background: var(--paper);
}

.admin-panel {
  padding: clamp(20px, 4vw, 34px);
}

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

.admin-section-heading h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-inline-form input {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.admin-managed-list {
  border-top: 1px solid var(--line);
}

.admin-managed-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.admin-managed-row strong,
.admin-managed-row small {
  display: block;
}

.admin-managed-row small {
  margin-top: 3px;
  color: var(--ink-soft);
}

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

.admin-form-grid .admin-wide {
  grid-column: 1 / -1;
}

.admin-field {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-product-list {
  display: grid;
  gap: 10px;
}

.admin-product-row {
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
  align-items: center;
  padding: 12px;
}

.admin-product-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: var(--ivory);
}

.admin-product-meta strong,
.admin-product-meta span {
  display: block;
}

.admin-product-meta span,
.admin-status,
.admin-message {
  color: var(--ink-soft);
  font-size: 13px;
}

.admin-status.is-passive {
  color: var(--wine);
}

.admin-message {
  min-height: 20px;
  margin: 14px 0 0;
}

.admin-message.is-error {
  color: var(--wine);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  min-width: 82px;
  border: 1px solid currentColor;
}

.menu-button {
  display: none;
}

.home-category-strip {
  padding: 94px clamp(18px, 4vw, 58px) 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.home-category-strip-inner {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(10px, 1.7vw, 24px);
  max-width: 1500px;
  margin: 0 auto;
}

.home-category-strip a {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

.home-category-strip .category-thumb {
  display: block;
  width: min(100%, 92px);
  aspect-ratio: 1;
  margin: 0 auto 10px;
  border: 1px solid rgba(21, 24, 22, 0.08);
  border-radius: 50%;
  background-color: #f1f1ee;
  background-image: url("assets/category-florals-sheet.png");
  background-repeat: no-repeat;
  background-size: 500% 200%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-category-strip .category-thumb-1 { background-position: 0 0; }
.home-category-strip .category-thumb-2 { background-position: 25% 0; }
.home-category-strip .category-thumb-3 { background-position: 50% 0; }
.home-category-strip .category-thumb-4 { background-position: 75% 0; }
.home-category-strip .category-thumb-5 { background-position: 100% 0; }
.home-category-strip .category-thumb-6 { background-position: 0 100%; }
.home-category-strip .category-thumb-7 { background-position: 25% 100%; }
.home-category-strip .category-thumb-8 { background-position: 50% 100%; }
.home-category-strip .category-thumb-9 { background-position: 75% 100%; }
.home-category-strip .category-thumb-10 { background-position: 100% 100%; }

.home-category-strip a:hover .category-thumb {
  border-color: var(--wine);
  transform: scale(1.04);
}

.home-category-strip span {
  display: block;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 12, 10, 0.61) 0%, rgba(9, 12, 10, 0.31) 42%, rgba(9, 12, 10, 0.05) 74%),
    linear-gradient(0deg, rgba(9, 12, 10, 0.18) 0%, rgba(9, 12, 10, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 168px 0 86px;
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 104px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 21px;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 0 22px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.button.primary {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(142, 38, 58, 0.26);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.hero-metrics {
  margin-top: 48px;
}

.hero-metrics span {
  min-width: 112px;
  padding: 14px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.76);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-band div {
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--ivory);
}

.intro-band span {
  display: block;
  margin-bottom: 7px;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section,
.feature-row,
.contact {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(280px, 0.65fr);
  gap: 34px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 780px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 390px;
  padding: 0 0 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  scroll-margin-top: 112px;
}

.service-grid img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-grid span {
  display: inline-block;
  margin: 26px 30px 12px;
  color: var(--wine);
  font-weight: 900;
}

.service-grid h3,
.service-grid p {
  padding: 0 30px;
}

.service-grid p,
.feature-main p,
.split-copy p,
.sympathy p,
.contact p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  background: var(--ink);
  color: #fff;
}

.feature-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(280px, 0.54fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.feature-main img,
.split-section img,
.sympathy img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-main p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--rose);
  font-weight: 900;
}

.quote-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.quote-panel p {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.25;
}

.quote-panel span {
  color: rgba(255, 255, 255, 0.56);
}

.split-section,
.sympathy,
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}

.process-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.process-list span {
  padding: 16px 18px;
  border-left: 4px solid var(--sage);
  background: var(--ivory);
  font-weight: 800;
}

.sympathy {
  background: #eef1eb;
}

.catalog {
  background: var(--paper);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.catalog-grid a {
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.catalog-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.catalog-grid span,
.catalog-grid small {
  display: block;
  padding: 0 22px;
}

.catalog-grid span {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 900;
}

.catalog-grid small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--wine);
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  background: #f4eee7;
}

.location-copy p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.location-copy .location-hours {
  color: var(--wine);
  font-weight: 800;
}

.map-frame {
  min-height: 420px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.86) contrast(1.02);
}

.contact {
  background: var(--ink);
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 15px 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkbox-line {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

.contact-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #0d100e;
}

.footer strong,
.footer a {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 6px 16px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: #1f9d55;
  box-shadow: 0 12px 28px rgba(13, 16, 14, 0.22);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #187d43;
  outline: 0;
}

.whatsapp-float:focus-visible {
  box-shadow: 0 0 0 3px rgba(31, 157, 85, 0.3), 0 12px 28px rgba(13, 16, 14, 0.22);
}

.whatsapp-float-mark {
  display: block;
  width: 38px;
  height: 38px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    padding: 22px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .products-panel,
  .services-panel {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
  }

  .products-showcase .products-panel {
    position: static;
  }

  .site-header.is-products-open .products-panel,
  .site-header.is-services-open .services-panel {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .products-panel-inner {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 28px 22px;
  }

  .round-category-list {
    grid-template-columns: repeat(4, minmax(80px, 1fr));
  }

  .panel-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-right: 14px;
  }

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

  .panel-service-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-links a:nth-child(3n) {
    border-right: 0;
  }

  .panel-category-links a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .panel-category-links a:nth-child(2n) {
    border-right: 0;
  }

  .panel-category-links a:nth-child(n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .panel-category-links a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .panel-service-links a {
    border-bottom: 1px solid var(--line);
  }

  .panel-service-links a:nth-child(n + 3) {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .home-category-strip {
    padding-top: 86px;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .home-category-strip-inner {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 18px 4px;
    scrollbar-width: none;
  }

  .home-category-strip-inner::-webkit-scrollbar {
    display: none;
  }

  .home-category-strip a {
    flex: 0 0 92px;
  }

  .home-category-strip .category-thumb {
    width: 76px;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .intro-band,
  .service-grid,
  .feature-row,
  .feature-main,
  .split-section,
  .sympathy,
  .location,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .service-grid {
    border-left: 0;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .admin-topbar,
  .admin-toolbar,
  .admin-product-row,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-topbar {
    align-items: start;
  }

  .admin-product-row {
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 132px;
    margin-left: 16px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-metrics span {
    flex: 1 1 140px;
  }

  .service-grid article {
    min-height: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

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

  .home-products {
    padding: 48px 18px;
  }

  .home-products-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
  }

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

  .category-page {
    padding: 112px 18px 22px;
  }

  .category-page h1 {
    font-size: 40px;
  }

  .catalog-products {
    padding: 0 18px 48px;
  }

  .product-card-copy {
    padding: 13px;
  }

  .product-card-copy h2 {
    font-size: 15px;
  }

  .product-card-copy p {
    min-height: 36px;
    margin-bottom: 10px;
    font-size: 13px;
  }

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

  .product-detail-image {
    min-height: 0;
  }

  .product-detail-copy {
    padding: 26px 18px 32px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-detail-copy h2 {
    font-size: 32px;
  }

  .product-detail-order {
    width: 100%;
    justify-content: center;
  }

  .round-category-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .round-category-list img {
    width: min(132px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .panel-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-links a {
    padding: 14px 8px 0;
  }

  .panel-links a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .panel-links a:nth-child(2n) {
    border-right: 0;
  }
}
