:root {
  --sage: #809878;
  --sage-deep: #5f7359;
  --cream: #f5ece5;
  --cream-light: #fffaf3;
  --ink: #414141;
  --rose: #ba3f35;
  --rose-soft: #e9a39b;
  --line: rgba(128, 152, 120, 0.34);
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(65, 65, 65, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 24%, rgba(128, 152, 120, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(128, 152, 120, 0.05), transparent 26%, transparent 74%, rgba(128, 152, 120, 0.05)),
    var(--cream);
  font-family:
    Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(245, 236, 229, 0.88);
  border-bottom: 1px solid rgba(128, 152, 120, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 15px);
  grid-template-rows: repeat(2, 15px);
  width: 38px;
  height: 38px;
  transform: rotate(-18deg);
}

.brand-mark span {
  width: 20px;
  height: 20px;
  display: block;
  background: var(--sage);
  border-radius: 18px 18px 5px 18px;
}

.brand-mark span:nth-child(2) {
  transform: rotate(90deg);
}

.brand-mark span:nth-child(3) {
  transform: rotate(-90deg);
}

.brand-mark span:nth-child(4) {
  transform: rotate(180deg);
}

.brand-text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
}

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

.main-nav a,
.phone-link {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a:hover,
.phone-link:hover {
  background: rgba(128, 152, 120, 0.11);
}

.sage-panel {
  color: var(--white);
  background: var(--sage);
}

.art-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.art-panel::before,
.art-panel::after,
.section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 92px) 42px;
  border-bottom-left-radius: 50% 9%;
  border-bottom-right-radius: 50% 9%;
}

.hero::before {
  inset: 8% -8% auto auto;
  width: min(470px, 48vw);
  aspect-ratio: 1;
  border: 2px dashed rgba(245, 236, 229, 0.28);
  border-radius: 46% 54% 44% 56%;
  transform: rotate(28deg);
}

.hero::after {
  left: 50%;
  bottom: -36px;
  width: 86px;
  height: 86px;
  background: var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.script-note {
  margin: 0 0 10px;
  color: currentColor;
  font-family: "Snell Roundhand", "Segoe Script", cursive;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  opacity: 0.78;
}

.hero h1,
.section h2,
.sale-medallion h2,
.contacts-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.82;
  text-shadow: 0 22px 36px rgba(65, 65, 65, 0.16);
  white-space: nowrap;
}

.hero-copy p:not(.script-note) {
  width: min(560px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 13px 28px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-light {
  background: rgba(245, 236, 229, 0.92);
  color: var(--sage-deep);
}

.button-ghost {
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--cream);
}

.button-outline {
  color: var(--sage-deep);
}

.full-width {
  width: 100%;
}

.hero-stage {
  position: relative;
  min-height: clamp(380px, 52vw, 610px);
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 10% 4%;
  border: 2px solid rgba(245, 236, 229, 0.72);
  border-radius: 46% 54% 52% 48%;
  transform: rotate(-13deg);
}

.hero-stage img {
  width: min(540px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(245, 236, 229, 0.86);
  border-radius: 50%;
  box-shadow: 0 26px 60px rgba(65, 65, 65, 0.24);
  transform: rotate(5deg);
}

.stage-label {
  position: absolute;
  right: 0;
  bottom: 17%;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: min(900px, 100%);
  margin: 18px auto 0;
}

.hero-meta span {
  border: 1px dashed rgba(245, 236, 229, 0.58);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dash {
  position: absolute;
  border: 2px dashed rgba(245, 236, 229, 0.26);
  pointer-events: none;
}

.dash-one {
  width: 36vw;
  height: 220px;
  left: -7vw;
  top: 22%;
  border-radius: 50%;
  transform: rotate(34deg);
}

.dash-two {
  width: 260px;
  height: 520px;
  right: 18%;
  bottom: -18%;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.petal {
  position: absolute;
  z-index: 2;
  width: 74px;
  height: 38px;
  border-radius: 80% 10% 80% 20%;
  background:
    radial-gradient(circle at 72% 52%, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(135deg, #e87265, #a82520 72%);
  box-shadow: 0 14px 24px rgba(65, 65, 65, 0.18);
  transform: rotate(-22deg);
}

.petal-one {
  top: 12%;
  left: 34%;
}

.petal-two {
  right: 8%;
  top: 34%;
  transform: rotate(18deg);
}

.petal-three {
  left: 9%;
  bottom: 18%;
  transform: rotate(-42deg);
}

.petal-four {
  right: 8%;
  top: 14%;
}

.petal-five {
  left: 11%;
  top: 4%;
  transform: rotate(32deg);
}

.section {
  position: relative;
  padding: clamp(64px, 9vw, 124px) clamp(18px, 6vw, 92px);
}

.section::before {
  left: clamp(12px, 8vw, 120px);
  top: 18%;
  width: 260px;
  height: 520px;
  border: 2px dashed rgba(128, 152, 120, 0.2);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.section-kicker {
  width: min(1180px, 100%);
  margin: 0 auto 26px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand-intro h2,
.section-heading h2,
.about-copy h2,
.contacts-copy h2 {
  color: var(--sage);
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.95;
}

.brand-intro p,
.section-heading p:not(.script-note),
.about-copy p,
.lead-form p {
  color: rgba(65, 65, 65, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.swatches {
  display: flex;
  gap: 22px;
  align-items: center;
}

.swatches span {
  display: grid;
  place-items: center;
  width: clamp(104px, 12vw, 142px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--swatch);
  color: color-mix(in srgb, var(--swatch), #000 70%);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 900;
}

.swatches span:nth-child(2) {
  color: var(--sage);
}

.swatches span:nth-child(3) {
  color: #fff;
}

.type-card {
  display: grid;
  gap: 10px;
  color: var(--sage);
}

.type-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  letter-spacing: 0.08em;
}

.type-card span {
  color: rgba(65, 65, 65, 0.72);
  line-height: 1.6;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 0.92fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-photo {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 2px dashed var(--line);
  border-radius: 12px;
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: 8px;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy .script-note {
  color: var(--sage);
}

.about-copy blockquote {
  margin: 26px 0 0;
  padding-left: 28px;
  border-left: 2px solid var(--sage);
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.category-section {
  border-top-left-radius: 50% 8%;
  border-top-right-radius: 50% 8%;
  border-bottom-left-radius: 50% 8%;
  border-bottom-right-radius: 50% 8%;
}

.section-heading {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading .script-note {
  color: var(--sage);
}

.section-heading.light .script-note,
.section-heading.light h2 {
  color: var(--cream);
}

.section-heading.light p:not(.script-note) {
  color: rgba(255, 255, 255, 0.82);
}

.filter-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.filter-button {
  min-height: 44px;
  border: 1px dashed rgba(245, 236, 229, 0.58);
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(245, 236, 229, 0.1);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  transform: translateY(-2px);
  background: rgba(245, 236, 229, 0.24);
}

.category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1050px, 100%);
  margin: 0 auto;
}

.category-card {
  position: relative;
  display: grid;
  gap: 10px;
  border: 2px dashed rgba(245, 236, 229, 0.56);
  border-radius: 12px;
  padding: 12px 12px 20px;
  background: rgba(245, 236, 229, 0.12);
  color: var(--cream);
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-card:hover,
.category-card.active {
  transform: translateY(-3px);
  background: rgba(245, 236, 229, 0.22);
}

.category-card span {
  position: absolute;
  left: 50%;
  top: -15px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  transform: translateX(-50%);
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  border-radius: 8px;
}

.category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.catalog-tools {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 420px) auto;
  gap: 18px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto 24px;
}

.catalog-tools span {
  justify-self: end;
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(128, 152, 120, 0.22);
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 14px 40px rgba(65, 65, 65, 0.08);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: rgba(128, 152, 120, 0.1);
}

.product-card > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-card small {
  color: var(--sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.product-card p {
  min-height: 52px;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(65, 65, 65, 0.72);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.5;
}

.product-card footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.product-card strong {
  font-size: 22px;
}

.add-button,
.cart-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 0;
  background: var(--sage);
  color: var(--cream);
  font-weight: 900;
}

.add-button {
  width: auto;
  min-width: 104px;
  height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sale-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 0.68fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.sale-medallion {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  border: 1px dashed var(--line);
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
}

.sale-medallion h2 {
  position: relative;
  z-index: 2;
  color: var(--sage);
  font-size: clamp(54px, 8vw, 106px);
  line-height: 0.82;
}

.sale-medallion strong {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(88%, 430px);
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgba(128, 152, 120, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.92);
  color: var(--rose);
  box-shadow: 0 12px 30px rgba(65, 65, 65, 0.14);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.15;
  text-wrap: balance;
}

.sale-medallion img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 72%;
  max-height: 260px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(255, 250, 243, 0.76);
  color: var(--ink);
  outline: 0;
}

textarea {
  min-height: 96px;
  border-radius: 18px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(128, 152, 120, 0.14);
}

.order-section {
  background: rgba(255, 250, 243, 0.58);
}

.checkout-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.order-form,
.cart-panel {
  border: 1px solid rgba(128, 152, 120, 0.22);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: var(--shadow);
}

.order-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
}

.form-row {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--sage-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.input-error {
  border-color: var(--rose);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--sage-deep);
  font-weight: 800;
}

.cart-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

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

.cart-header h3 {
  margin: 0;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--sage-deep);
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.cart-empty {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 16px;
  color: rgba(65, 65, 65, 0.68);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 12px;
}

.cart-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sage-deep);
}

.cart-item small {
  color: rgba(65, 65, 65, 0.62);
}

.cart-controls {
  display: grid;
  grid-template-columns: 32px 28px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(128, 152, 120, 0.24);
  border-radius: 999px;
  text-align: center;
}

.cart-controls button {
  width: 32px;
  height: 32px;
}

.cart-total {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cart-total div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(65, 65, 65, 0.68);
}

.cart-total dt,
.cart-total dd {
  margin: 0;
}

.cart-total .total-line {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 56px;
  border-radius: 26px;
}

.map-card {
  position: relative;
  min-height: 310px;
  border: 2px dashed rgba(245, 236, 229, 0.58);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(245, 236, 229, 0.2);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 360px;
  height: 100%;
  border: 0;
}

.contacts-copy h2 {
  color: var(--cream);
  font-size: clamp(44px, 6vw, 78px);
}

.contacts-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.contacts-copy a {
  color: var(--cream);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--cream);
}

.site-footer img {
  width: 78px;
  height: auto;
}

.site-footer span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--cream);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.legal-main {
  min-height: 100svh;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 6vw, 92px);
}

.legal-page {
  width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(128, 152, 120, 0.22);
  border-radius: 18px;
  padding: clamp(24px, 5vw, 54px);
  background: rgba(255, 250, 243, 0.86);
  box-shadow: var(--shadow);
}

.legal-page h1 {
  margin: 0 0 18px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.legal-page h2 {
  margin: 34px 0 12px;
  color: var(--sage-deep);
  font-size: 22px;
  line-height: 1.2;
}

.legal-page p,
.legal-page li {
  color: rgba(65, 65, 65, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.legal-page ul {
  padding-left: 20px;
}

.legal-page .button {
  margin-top: 22px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-inner,
  .brand-board,
  .about-section,
  .sale-section,
  .contacts-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 420px;
  }

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

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .catalog-tools span {
    justify-self: start;
  }

}

@media (max-width: 660px) {
  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

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

  .brand-text small {
    font-size: 9px;
  }

  .phone-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 44px 64px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 86px);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 300px;
  }

  .hero-stage img {
    width: min(300px, 92%);
    border-width: 7px;
  }

  .hero-meta {
    display: grid;
  }

  .swatches {
    flex-wrap: wrap;
  }

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

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .product-card p {
    min-height: auto;
  }

  .sale-medallion {
    min-height: 420px;
  }

  .contacts-section {
    width: min(100% - 28px, 1180px);
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
