:root {
  --font-body: Roboto, Arial, sans-serif;
  --font-heading: Poppins, Georgia, serif;
  --font-button: Roboto, Arial, sans-serif;
  --font-logo: Montserrat, Poppins, sans-serif;
  --accent: #fa3f01;
  --accent-soft: #ff6c3b;
  --accent-strong: #d42f00;
  --text: #2f2f2f;
  --muted: #6f7277;
  --soft: #f4f1ec;
  --surface: #ffffff;
  --surface-alt: #f7f5f2;
  --border: rgba(47, 47, 47, 0.14);
  --footer: #222427;
  --footer-bottom: #141517;
  --shadow: 0 24px 60px rgba(25, 24, 22, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --content-width: 1200px;
  --header-padding: 0 20px;
  --button-radius: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(180deg, #f2f2f2 0%, #f7f7f7 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

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

.app-shell {
  width: 100%;
  margin: 0 auto 48px;
}

.shell {
  width: 100%;
  margin: 0 auto;
}

.shell--wide {
  width: 100%;
}

.site-header,
.hero,
.bar,
.content-grid,
.site-footer {
  backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  padding: 0;
  cursor: pointer;
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header__logo {
  display: block;
  width: 132px;
  max-width: 34vw;
  height: auto;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: var(--font-logo);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 10px 18px rgba(250, 63, 1, 0.28);
}

.eyebrow {
  margin: 0 0 4px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-brand h1,
.hero h2,
.section-heading h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.site-brand h1 {
  font-size: clamp(1rem, 1.8vw, 1.32rem);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.site-nav a:hover {
  border-bottom-color: rgba(250, 63, 1, 0.9);
  color: var(--accent-strong);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
}

.cart-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 22px;
  margin-top: 0;
  padding: 26px 20px 22px;
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
  background: linear-gradient(180deg, #1f2328, #1f2328);
  color: #fff;
  border-radius: 0;
  box-shadow: none;
}

.hero--landing {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 0;
  border-bottom: 0;
  background: #0f1215;
}

.hero--landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.22), rgba(8, 10, 14, 0.72));
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.hero__bg.is-visible {
  opacity: 1;
}

.hero__bg--a {
  z-index: 0;
}

.hero__bg--b {
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero__copy {
  width: min(100%, 920px);
  padding: 40px 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hero h2 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 5.1vw, 4.9rem);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.07em;
  color: #fff;
}

.hero-text {
  max-width: 48ch;
  margin: 0;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.88);
}

.search-band {
  background: #f3f3f1;
  padding: 18px 0 16px;
}

.search-band__inner {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.search-band__eyebrow {
  margin: 0;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5f6369;
}

.search-band__note {
  max-width: 66ch;
  margin: -2px 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}

.search-band__form {
  display: flex;
  width: min(100%, 760px);
  gap: 12px;
  align-items: end;
}

.hero-helper {
  max-width: 56ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

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

.search-field,
.sort-field {
  display: grid;
  gap: 8px;
}

.search-label,
.sort-field span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: inherit;
}

.search-field input,
.sort-field select {
  min-height: 44px;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  padding: 0 18px;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-field input:focus,
.sort-field select:focus {
  border-color: rgba(250, 63, 1, 0.5);
  box-shadow: 0 0 0 4px rgba(250, 63, 1, 0.12);
}

.search-field {
  position: relative;
  flex: 1 1 340px;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(25, 24, 22, 0.16);
}

.search-suggestion {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.search-suggestion:last-child {
  border-bottom: 0;
}

.search-suggestion:hover,
.search-suggestion.is-active {
  background: rgba(250, 63, 1, 0.08);
}

.search-suggestion__title {
  font-weight: 700;
  color: var(--text);
}

.search-suggestion__meta {
  font-size: 0.86rem;
  color: var(--muted);
}

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 2px;
  border: 1px solid var(--border);
  font-family: var(--font-button);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.72);
}

.primary-button {
  border-color: transparent;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #fff;
  box-shadow: none;
}

.search-band .primary-button {
  min-width: 116px;
}

.ghost-button:hover,
.primary-button:hover,
.product-card__button:hover,
.drawer__close:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat-card,
.story-card,
.product-card,
.bar {
  border: 1px solid var(--border);
  background: #ffffff;
}

.stat-card {
  padding: 14px 15px;
  border-radius: 14px;
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-image-stage {
  display: grid;
  gap: 10px;
}

.hero-image-stage__main {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #20252b;
}

.hero-image-stage__main img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.hero-image-stage__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 11px 13px;
  background: rgba(20, 22, 24, 0.76);
  color: #fff;
}

.hero-image-stage__caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-image-stage__caption span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-image-stage__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.hero-image-stage__thumb {
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  opacity: 0.82;
}

.hero-image-stage__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.hero-image-stage__thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.hero-image-stack {
  display: grid;
  gap: 12px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(47, 47, 47, 0.1);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

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

.hero-image-card--featured {
  min-height: 310px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-group--stacked {
  display: grid;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: 180ms ease;
}

.pill:hover,
.pill.is-active {
  background: rgba(250, 63, 1, 0.08);
  color: var(--text);
  border-color: rgba(250, 63, 1, 0.18);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  background: var(--accent);
  color: #fff;
}

.process-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.process-card span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
}

.process-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.content-grid {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: none;
}

.section-heading {
  margin-bottom: 14px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h3 {
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
}

.results-copy {
  margin: 0;
  color: var(--muted);
}

.featured-grid,
.catalog-grid,
.story-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  background: #fafafa;
}

.contact-panel__copy h4 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.contact-panel__copy p {
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form input,
.contact-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-note {
  margin-top: 2px;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: 14px;
}

.shop-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.shop-sidebar__panel {
  padding: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.shop-sidebar__title {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-main {
  min-width: 0;
}

.story-card,
.product-card {
  border-radius: 2px;
  overflow: hidden;
}

.story-card {
  padding: 18px;
}

.story-card--contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.story-card--contact p {
  margin: 0;
}

.story-card__image {
  margin-top: 8px;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--border);
}

.story-card h4 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(47, 47, 47, 0.12);
  background: #ffffff;
  box-shadow: none;
}

.product-card__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f7f7;
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: grid;
  gap: 7px;
  padding: 10px 10px 10px;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__price {
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.product-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.15;
}

.product-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.42;
  min-height: 2.4em;
}

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

.product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 11px 11px;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 2px;
  background: #ff5a0b;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
}

.product-card__cta--primary {
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.product-card__cta:hover {
  color: #fff;
  filter: brightness(0.96);
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(47, 47, 47, 0.05);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.site-footer {
  margin-top: 18px;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__utility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__utility-item {
  display: grid;
  gap: 4px;
}

.site-footer__utility-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__utility-item strong {
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.site-footer__utility-item--payments {
  align-content: start;
}

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

.payment-badge {
  display: block;
  height: 28px;
  width: auto;
  padding: 3px 6px;
  border-radius: 6px;
  background: #fff;
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 22px 20px 20px;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__logo {
  display: block;
  width: 150px;
  max-width: 100%;
  margin-bottom: 14px;
}

.site-footer__brand .eyebrow {
  margin-bottom: 8px;
}

.site-footer__col {
  display: grid;
  gap: 10px;
}

.site-footer__brand-copy {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__title {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__links a,
.site-footer__links span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.payment-options {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.payment-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(47, 47, 47, 0.06);
}

.payment-option__icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(47, 47, 47, 0.12);
  background: rgba(47, 47, 47, 0.04);
  color: var(--text);
}

.form-status.is-success {
  border-color: rgba(35, 132, 82, 0.2);
  background: rgba(35, 132, 82, 0.08);
}

.form-status.is-error {
  border-color: rgba(163, 27, 27, 0.2);
  background: rgba(163, 27, 27, 0.08);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 11px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.form-modal {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 50;
}

.form-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 20, 0.55);
}

.form-modal__panel {
  position: relative;
  width: min(100%, 560px);
  padding: 24px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-modal__panel h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.form-modal__text {
  margin: 0;
  color: var(--muted);
}

.form-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.form-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.drawer {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 40;
}

.drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.drawer__backdrop {
  background: rgba(13, 13, 15, 0.48);
}

.drawer__panel {
  position: relative;
  overflow: auto;
  padding: 26px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.12);
}

.drawer__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.drawer__content {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

.drawer-hero {
  display: grid;
  gap: 14px;
}

.drawer-gallery {
  display: grid;
  gap: 10px;
}

.drawer-main-image {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  background: #f2eee8;
}

.drawer-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.drawer-thumb {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f1ec;
  padding: 0;
  cursor: pointer;
}

.drawer-thumb.is-active {
  border-color: rgba(250, 63, 1, 0.55);
}

.drawer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.drawer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.drawer-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
}

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

.drawer-copy {
  color: var(--muted);
}

.drawer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.drawer-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(47, 47, 47, 0.04);
}

.drawer-list strong {
  min-width: 88px;
}

.drawer-list span {
  color: var(--muted);
}

.drawer-details {
  display: grid;
  gap: 14px;
}

.drawer-section h5 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.drawer-section p {
  margin: 0;
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .hero,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .shop-layout,
  .process-strip {
    grid-template-columns: 1fr;
  }

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

  .process-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

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

  .hero--landing {
    min-height: 470px;
  }

  .hero__inner {
    min-height: 470px;
  }

  .hero-image-stage__main,
  .hero-image-stage__main img {
    min-height: 280px;
  }

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

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .section-heading--split {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-stats,
  .catalog-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid--home {
    grid-template-columns: 1fr;
  }

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

  .search-band__form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .sort-field {
    width: 100%;
  }

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

  .drawer__backdrop {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__utility {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: 100%;
    margin-top: 8px;
  }

  .site-header__logo {
    width: 104px;
  }

  .hero,
  .content-grid,
  .site-footer {
    padding: 18px;
  }

  .hero--landing,
  .hero__inner {
    min-height: 380px;
  }

  .hero__copy {
    padding: 34px 0 38px;
  }

  .hero h2 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10.5vw, 3.8rem);
  }

  .site-footer__inner,
  .site-footer__bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .drawer__panel {
    padding: 18px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-image-stage__main,
  .hero-image-stage__main img {
    min-height: 240px;
  }

  .catalog-grid,
  .story-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .story-grid--home {
    grid-template-columns: 1fr;
  }

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

  .contact-panel {
    padding: 16px;
  }

  .top-panel__inner {
    justify-content: center;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-header__actions {
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  body.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0 2px;
  }
}
