:root {
  --ink: #111111;
  --soft-ink: #45413c;
  --muted: #77716b;
  --line: #ded8cf;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --charcoal: #1d1a17;
  --bronze: #9a6a3a;
  --sage: #596b5c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand-logo {
  width: 164px;
  max-width: 48vw;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: #2b2926;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--bronze);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--bronze);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 470px) minmax(420px, 560px);
  gap: clamp(64px, 6.2vw, 104px);
  align-items: center;
  min-height: calc(100vh - 76px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(76px, 8vh, 116px) clamp(40px, 5vw, 72px);
}

.hero-copy {
  max-width: 455px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 34px;
  font-size: clamp(40px, 3.18vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

h1 span {
  display: inline;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.custom-copy p,
.contact-copy p {
  color: var(--soft-ink);
  font-size: 18px;
}

.hero-text {
  max-width: 410px;
  font-size: 16.5px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-media {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 0.88 / 1;
  background: #e8e1d6;
  overflow: hidden;
}

.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 680ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.42);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel-button.prev {
  left: 18px;
}

.carousel-button.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.28);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: #fff;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: #fff;
}

.intro-band div {
  min-height: 190px;
  padding: clamp(22px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-band span {
  display: block;
  margin-bottom: 26px;
  color: #bda27d;
}

.intro-band strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.intro-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 36px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: end;
  max-width: none;
}

.section-heading.compact p:last-child {
  margin-bottom: 18px;
}

.collection-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

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

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

.collection-card,
.product-card {
  background: var(--panel);
  border: 1px solid rgba(17, 17, 17, 0.1);
  overflow: hidden;
}

.collection-card {
  min-height: 330px;
}

.collection-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e9e3da;
}

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

.collection-card .card-meta,
.product-card .card-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.collection-card strong,
.product-card strong {
  display: block;
  min-height: 52px;
  font-size: 18px;
  line-height: 1.28;
}

.product-card .quote-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.split-section.alt {
  max-width: none;
  background: #efebe4;
}

.split-section.alt .section-heading,
.split-section.alt .product-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.custom-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 36px);
}

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

.process div {
  min-height: 188px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.process span {
  display: block;
  color: var(--sage);
  font-weight: 800;
  margin-bottom: 22px;
}

.process strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.process p {
  color: var(--soft-ink);
}

.contact-section {
  border-top: 1px solid var(--line);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a,
.contact-methods span {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

.hidden-field {
  display: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.55;
}

.form-status.is-success {
  color: #2f6b4f;
}

.form-status.is-error {
  color: #9a3e32;
}

.inquiry-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 14px;
}

.not-found {
  display: grid;
  place-content: center;
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
}

.not-found h1 {
  margin-bottom: 12px;
}

.not-found p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 18px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .custom-section,
  .contact-section,
  .section-heading.compact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 44px;
  }

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

@media (max-width: 620px) {
  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .intro-band,
  .collection-grid,
  .product-grid,
  .process,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .carousel-slide {
    min-height: 360px;
    aspect-ratio: 1 / 1.04;
  }

  .collection-card strong,
  .product-card strong {
    min-height: auto;
  }
}

/* Hero layout comparison studio */
body {
  min-width: 320px;
  transition: background 220ms ease, color 220ms ease;
}

.variant-studio {
  position: sticky;
  top: 76px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.variant-studio-copy {
  display: grid;
  gap: 2px;
  min-width: 190px;
}

.variant-studio-copy span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.variant-studio-copy strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 13px;
}

.variant-switcher {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.variant-switcher::-webkit-scrollbar {
  display: none;
}

.variant-switcher button {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 4px;
  background: transparent;
  color: var(--soft-ink);
  font: 800 11px/1 Manrope, Inter, sans-serif;
  cursor: pointer;
}

.variant-switcher button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  transition: background 240ms ease, color 240ms ease;
}

.hero-copy,
.hero-media {
  z-index: 1;
}

.hero-copy {
  transition: max-width 240ms ease;
}

.hero h1 {
  text-wrap: balance;
}

.hero-text {
  text-wrap: pretty;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 0 10px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-media {
  box-shadow: none;
  transition: border-radius 240ms ease, box-shadow 240ms ease, aspect-ratio 240ms ease;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-media-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 2px;
  max-width: 280px;
  padding: 12px 14px;
  background: rgba(17, 17, 17, 0.7);
  color: #fff;
}

.hero-media-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-media-caption strong {
  font-size: 13px;
  line-height: 1.25;
}

.carousel-button {
  font-size: 0;
}

.carousel-button::before {
  font-size: 28px;
  line-height: 1;
}

.carousel-button.prev::before {
  content: "<";
}

.carousel-button.next::before {
  content: ">";
}

body[data-hero-variant="01"] {
  --paper: #f5f1ea;
  --ink: #10100f;
  --bronze: #a16f43;
}

body[data-hero-variant="01"] .hero {
  grid-template-columns: minmax(370px, 470px) minmax(500px, 620px);
  gap: 96px;
  max-width: 1320px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="01"] .hero h1 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 800;
}

body[data-hero-variant="01"] .hero-media {
  aspect-ratio: 1 / 1.1;
}

body[data-hero-variant="02"] {
  --paper: #f1eee8;
  --ink: #181511;
  --bronze: #8d623d;
}

body[data-hero-variant="02"] .hero {
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.15fr);
  gap: 36px;
  max-width: 1420px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="02"] .hero::before {
  position: absolute;
  inset: 11% 5% 13% 38%;
  z-index: 0;
  border: 1px solid rgba(24, 21, 17, 0.12);
  content: "";
}

body[data-hero-variant="02"] .hero-copy {
  max-width: 620px;
}

body[data-hero-variant="02"] .hero h1 {
  position: relative;
  z-index: 2;
  margin-right: -170px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 78px;
  line-height: 0.94;
  font-weight: 700;
}

body[data-hero-variant="02"] .hero-text {
  max-width: 360px;
}

body[data-hero-variant="02"] .hero-media {
  aspect-ratio: 1.25 / 1;
  margin-top: 70px;
}

body[data-hero-variant="02"] .hero-media-caption {
  right: 20px;
  left: auto;
}

body[data-hero-variant="03"] {
  --paper: #fbfaf7;
  --ink: #171717;
  --bronze: #6b7067;
}

body[data-hero-variant="03"] .site-header,
body[data-hero-variant="03"] .variant-studio {
  background: rgba(251, 250, 247, 0.9);
}

body[data-hero-variant="03"] .hero {
  grid-template-columns: minmax(430px, 1fr) minmax(360px, 440px);
  gap: 84px;
  align-items: end;
  max-width: 1260px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="03"] .hero-copy {
  max-width: 820px;
}

body[data-hero-variant="03"] .hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 84px;
  line-height: 0.92;
  font-weight: 600;
}

body[data-hero-variant="03"] .hero-text {
  max-width: 530px;
}

body[data-hero-variant="03"] .hero-media {
  aspect-ratio: 0.78 / 1;
}

body[data-hero-variant="03"] .hero-meta span {
  border-color: transparent;
  border-bottom-color: rgba(17, 17, 17, 0.26);
  padding-right: 0;
  padding-left: 0;
}

body[data-hero-variant="04"] {
  --paper: #11110f;
  --ink: #f6f0e7;
  --soft-ink: #d4c9bb;
  --muted: #a99b8c;
  --line: rgba(255, 255, 255, 0.15);
  --bronze: #e17930;
  background: #11110f;
  color: #f6f0e7;
}

body[data-hero-variant="04"] .site-header,
body[data-hero-variant="04"] .variant-studio {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 15, 0.9);
  color: #f6f0e7;
}

body[data-hero-variant="04"] .brand-logo {
  filter: invert(1);
}

body[data-hero-variant="04"] .header-cta,
body[data-hero-variant="04"] .button.primary,
body[data-hero-variant="04"] .variant-switcher button.is-active {
  border-color: #e17930;
  background: #e17930;
  color: #11110f;
}

body[data-hero-variant="04"] .button.secondary,
body[data-hero-variant="04"] .hero-meta span,
body[data-hero-variant="04"] .variant-switcher button {
  border-color: rgba(255, 255, 255, 0.24);
  color: #f6f0e7;
}

body[data-hero-variant="04"] .hero {
  grid-template-columns: minmax(480px, 0.95fr) minmax(520px, 1.15fr);
  gap: 46px;
  max-width: 1500px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="04"] .hero h1 {
  font-family: Archivo, Inter, sans-serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

body[data-hero-variant="04"] .hero-media {
  aspect-ratio: 1.45 / 1;
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.36);
}

body[data-hero-variant="05"] {
  --paper: #f8f6f0;
  --ink: #15130f;
  --bronze: #7b583c;
}

body[data-hero-variant="05"] .hero {
  grid-template-columns: 0.78fr 1fr;
  gap: 70px;
  align-items: stretch;
  max-width: 1360px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="05"] .hero-copy {
  display: grid;
  align-content: center;
  max-width: none;
  padding-left: 62px;
  border-left: 1px solid rgba(17, 17, 17, 0.18);
}

body[data-hero-variant="05"] .hero h1 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 750;
}

body[data-hero-variant="05"] .hero-media {
  aspect-ratio: 1 / 1;
  align-self: center;
}

body[data-hero-variant="05"] .hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

body[data-hero-variant="05"] .hero-meta span {
  border: 0;
  border-right: 1px solid rgba(17, 17, 17, 0.12);
  padding: 18px 12px 0 0;
}

body[data-hero-variant="06"] {
  --paper: #0e0d0c;
  --ink: #fffaf1;
  --soft-ink: #eee4d4;
  --bronze: #c58a48;
  background: #0e0d0c;
  color: #fffaf1;
}

body[data-hero-variant="06"] .site-header,
body[data-hero-variant="06"] .variant-studio {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(14, 13, 12, 0.78);
  color: #fffaf1;
}

body[data-hero-variant="06"] .brand-logo {
  filter: invert(1);
}

body[data-hero-variant="06"] .hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: none;
  min-height: calc(100vh - 130px);
  padding: 0;
}

body[data-hero-variant="06"] .hero-media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  opacity: 0.74;
}

body[data-hero-variant="06"] .hero-media::after {
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(14, 13, 12, 0.9), rgba(14, 13, 12, 0.45) 46%, rgba(14, 13, 12, 0.12));
}

body[data-hero-variant="06"] .hero-copy {
  max-width: 860px;
  padding: 86px clamp(24px, 8vw, 140px);
}

body[data-hero-variant="06"] .hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 80px;
  line-height: 0.9;
}

body[data-hero-variant="06"] .button.primary {
  border-color: #fffaf1;
  background: #fffaf1;
  color: #0e0d0c;
}

body[data-hero-variant="06"] .button.secondary,
body[data-hero-variant="06"] .hero-meta span,
body[data-hero-variant="06"] .variant-switcher button {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fffaf1;
}

body[data-hero-variant="07"] {
  --paper: #f4f2ed;
  --ink: #171613;
  --bronze: #53615c;
}

body[data-hero-variant="07"] .hero {
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  max-width: none;
  min-height: calc(100vh - 130px);
  padding: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

body[data-hero-variant="07"] .hero-copy {
  display: grid;
  align-content: center;
  max-width: none;
  min-height: 100%;
  padding: 78px clamp(28px, 6vw, 96px);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
}

body[data-hero-variant="07"] .hero h1 {
  font-family: Archivo, Inter, sans-serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
}

body[data-hero-variant="07"] .hero-media {
  align-self: stretch;
  aspect-ratio: auto;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="07"] .hero-media-caption {
  top: 22px;
  bottom: auto;
}

body[data-hero-variant="08"] {
  --paper: #f7f1e7;
  --ink: #211915;
  --bronze: #b05c35;
}

body[data-hero-variant="08"] .hero {
  grid-template-columns: minmax(520px, 1fr) minmax(360px, 460px);
  gap: 78px;
  max-width: 1380px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="08"] .hero::before {
  position: absolute;
  inset: 14% 8% 10% auto;
  width: 37%;
  border: 1px solid rgba(176, 92, 53, 0.24);
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

body[data-hero-variant="08"] .hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 72px;
  line-height: 0.96;
}

body[data-hero-variant="08"] .hero-media {
  aspect-ratio: 0.78 / 1;
  border: 12px solid #fffaf3;
  box-shadow: 0 28px 70px rgba(78, 52, 34, 0.18);
}

body[data-hero-variant="09"] {
  --paper: #f2f3ef;
  --ink: #121411;
  --bronze: #2f6a5e;
}

body[data-hero-variant="09"] .hero {
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1fr);
  gap: 74px;
  max-width: 1340px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="09"] .hero-copy {
  order: 2;
}

body[data-hero-variant="09"] .hero-media {
  order: 1;
  aspect-ratio: 1 / 1.25;
}

body[data-hero-variant="09"] .hero h1 {
  font-family: Manrope, Inter, sans-serif;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 800;
}

body[data-hero-variant="09"] .hero-media-caption {
  top: 18px;
  right: -36px;
  bottom: auto;
  left: auto;
  background: #f2f3ef;
  color: #121411;
  box-shadow: 0 22px 44px rgba(18, 20, 17, 0.12);
}

body[data-hero-variant="10"] {
  --paper: #f8f8f5;
  --ink: #101010;
  --bronze: #7e6b54;
}

body[data-hero-variant="10"] .hero {
  grid-template-columns: minmax(380px, 470px) minmax(520px, 720px);
  gap: 62px;
  max-width: 1440px;
  min-height: calc(100vh - 130px);
}

body[data-hero-variant="10"] .hero::before {
  position: absolute;
  top: 56px;
  right: 7%;
  z-index: 0;
  color: rgba(16, 16, 16, 0.045);
  font: 800 180px/1 Archivo, Inter, sans-serif;
  content: "APEX";
}

body[data-hero-variant="10"] .hero h1 {
  font-family: Archivo, Inter, sans-serif;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 800;
}

body[data-hero-variant="10"] .hero-media {
  aspect-ratio: 1.62 / 1;
  align-self: center;
}

body[data-hero-variant="10"] .carousel-slide {
  object-position: center 58%;
}

@media (max-width: 980px) {
  .variant-studio {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .variant-switcher {
    width: 100%;
  }

  body[data-hero-variant] .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    padding: 48px clamp(18px, 5vw, 44px) 64px;
  }

  body[data-hero-variant] .hero-copy {
    order: 1;
    max-width: 720px;
    padding: 0;
    border: 0;
  }

  body[data-hero-variant] .hero-media {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 440px;
    aspect-ratio: 1.18 / 1;
    margin: 0;
  }

  body[data-hero-variant] .hero h1 {
    margin-right: 0;
    font-size: 54px;
    line-height: 1;
  }

  body[data-hero-variant="06"] .hero-media::after {
    background: linear-gradient(0deg, rgba(14, 13, 12, 0.48), rgba(14, 13, 12, 0.08));
  }

  body[data-hero-variant="09"] .hero-media-caption {
    right: 18px;
  }
}

@media (max-width: 620px) {
  body[data-hero-variant] .hero {
    padding-top: 34px;
  }

  body[data-hero-variant] .hero h1 {
    font-size: 40px;
    line-height: 1.03;
  }

  body[data-hero-variant] .hero-media {
    min-height: 340px;
    aspect-ratio: 1 / 1.04;
  }

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

  body[data-hero-variant="05"] .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-media-caption {
    right: 14px;
    left: 14px;
    max-width: none;
  }
}

/* Mobile production polish */
@media (max-width: 620px) {
  body {
    overflow-x: hidden;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 244, 239, 0) 360px),
      var(--paper);
  }

  .variant-studio {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .variant-switcher {
    width: 100%;
  }

  .site-header,
  body[data-hero-variant] .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
    min-height: 0;
    padding: 12px 16px 10px;
    background: rgba(247, 244, 239, 0.94);
  }

  .brand {
    justify-content: center;
    min-width: 0;
  }

  .brand-logo,
  body[data-hero-variant] .brand-logo {
    width: 112px;
    max-width: none;
    filter: none;
  }

  .header-cta {
    min-height: 36px;
    width: 100%;
    padding: 0 12px;
    font-size: 10px;
    white-space: nowrap;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 1px;
    color: #3d3934;
    font-size: 10.5px;
    font-weight: 750;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 7px 6px;
    border: 1px solid rgba(17, 17, 17, 0.11);
    background: rgba(255, 255, 255, 0.46);
  }

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

  .hero,
  body[data-hero-variant] .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 28px 18px 42px;
    overflow: hidden;
  }

  .hero-copy,
  body[data-hero-variant] .hero-copy {
    order: 1;
    max-width: none;
    padding: 0;
    border: 0;
  }

  .hero-media,
  body[data-hero-variant] .hero-media {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin: 0;
    box-shadow: 0 18px 40px rgba(29, 26, 23, 0.12);
  }

  .carousel-slide {
    min-height: 0;
    aspect-ratio: auto;
  }

  h1,
  body[data-hero-variant] .hero h1 {
    margin: 0 0 20px;
    font-family: Manrope, Inter, sans-serif;
    max-width: 100%;
    font-size: clamp(31px, 8.7vw, 34px);
    line-height: 1.08;
    font-weight: 800;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  h1 span {
    display: block;
  }

  h2 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.05;
  }

  h3 {
    font-size: 18px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-copy,
  .hero-text {
    max-width: none;
  }

  .hero-text,
  .section-heading p,
  .custom-copy p,
  .contact-copy p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .hero-meta,
  body[data-hero-variant="05"] .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 18px;
  }

  .hero-meta span,
  body[data-hero-variant="05"] .hero-meta span {
    display: grid;
    min-height: 38px;
    place-items: center;
    padding: 6px 7px;
    border: 1px solid rgba(154, 106, 58, 0.28);
    color: var(--bronze);
    background: rgba(255, 255, 255, 0.34);
    text-align: center;
    font-size: 10px;
    line-height: 1.2;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }

  .hero-actions .button,
  .button {
    min-height: 42px;
    width: auto;
    padding: 0 12px;
    font-size: 11px;
    text-align: center;
  }

  .carousel-button {
    width: 36px;
    height: 36px;
  }

  .carousel-button::before {
    font-size: 26px;
  }

  .carousel-button.prev {
    left: 12px;
  }

  .carousel-button.next {
    right: 12px;
  }

  .carousel-dots {
    right: 14px;
    bottom: 14px;
    gap: 7px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .hero-media-caption {
    right: auto;
    bottom: 14px;
    left: 14px;
    max-width: 190px;
    padding: 10px 11px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    margin: 0 18px 18px;
    border: 0;
  }

  .intro-band div {
    min-height: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .intro-band div:last-child {
    border-bottom: 0;
  }

  .intro-band span {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .intro-band strong {
    font-size: 18px;
  }

  .intro-band p {
    font-size: 14px;
    line-height: 1.58;
  }

  .section,
  .custom-section,
  .contact-section {
    padding: 48px 18px;
  }

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

  .section-heading.compact {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .collection-card,
  .product-card {
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 10px 24px rgba(29, 26, 23, 0.05);
  }

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

  .collection-card img,
  .product-card img {
    aspect-ratio: 1 / 1.04;
  }

  .collection-card .card-copy,
  .product-card .card-copy {
    padding: 11px;
  }

  .collection-card .card-meta,
  .product-card .card-meta {
    margin-bottom: 6px;
    font-size: 9px;
    line-height: 1.25;
  }

  .collection-card strong,
  .product-card strong {
    min-height: auto;
    font-size: 13.5px;
    line-height: 1.3;
  }

  .product-card .quote-link {
    margin-top: 10px;
    font-size: 10px;
  }

  .custom-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process div {
    min-height: 0;
    padding: 18px;
  }

  .process span {
    margin-bottom: 10px;
  }

  .process strong {
    font-size: 18px;
  }

  .process p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.58;
  }

  .contact-methods {
    gap: 8px;
  }

  .contact-methods a,
  .contact-methods span {
    font-size: 14px;
    line-height: 1.5;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  input,
  select {
    height: 44px;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px 32px;
    font-size: 13px;
  }
}

/* Final responsive production system: one URL, three device experiences */
.variant-studio {
  position: fixed !important;
  top: auto !important;
  right: auto;
  bottom: 18px;
  left: 18px;
  z-index: 30;
  display: grid !important;
  width: min(520px, calc(100vw - 36px));
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(18px);
}

.variant-studio-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  gap: 12px;
}

.variant-studio-copy span {
  color: #77716b;
}

.variant-studio-copy strong {
  color: #111111;
}

.variant-switcher {
  display: flex;
  width: 100%;
  gap: 6px;
  overflow-x: auto;
}

.variant-switcher button {
  flex: 0 0 38px;
  width: 38px;
  height: 32px;
  background: rgba(247, 244, 239, 0.75);
  color: #45413c;
}

.variant-switcher button.is-active {
  background: #111111;
  color: #ffffff;
}

.variant-studio {
  display: none !important;
}

.preview-directory {
  background: #f5f1ea;
  color: #111111;
}

.preview-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 88px) clamp(18px, 4vw, 36px);
}

.preview-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.preview-heading h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.94;
  font-weight: 650;
}

.preview-heading p:not(.eyebrow) {
  max-width: 560px;
  color: #45413c;
  font-size: 18px;
}

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

.preview-card {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.58);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.preview-card:hover,
.preview-card:focus-visible {
  border-color: #111111;
  background: #ffffff;
  transform: translateY(-2px);
}

.preview-card span {
  color: #9a6a3a;
  font-family: Archivo, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.preview-card strong {
  display: block;
  margin-top: 42px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.preview-card p {
  margin: 14px 0 0;
  color: #5b554e;
  font-size: 13px;
  line-height: 1.55;
}

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

@media (max-width: 620px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-card {
    min-height: 170px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
.hero,
.section,
.custom-section,
.contact-section,
.site-footer {
  width: 100%;
}

@media (min-width: 1025px) {
  body[data-hero-variant="01"] .hero {
    min-height: calc(100vh - 76px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-header,
  body[data-hero-variant] .site-header {
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 28px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo,
  body[data-hero-variant] .brand-logo {
    width: 142px;
    filter: none;
  }

  .nav {
    justify-content: center;
    gap: 18px;
    font-size: 13px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero,
  body[data-hero-variant] .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 780px;
    min-height: 0;
    padding: 56px 34px 72px;
  }

  .hero-copy,
  body[data-hero-variant] .hero-copy {
    order: 1;
    max-width: 680px;
    padding: 0;
    border: 0;
  }

  .hero-media,
  body[data-hero-variant] .hero-media {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.24 / 1;
    margin: 0;
  }

  h1,
  body[data-hero-variant] .hero h1 {
    margin-right: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(46px, 6vw, 58px);
    line-height: 1.03;
  }

  .hero-text {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.7;
  }

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

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

  .intro-band div {
    min-height: 170px;
    padding: 26px 22px;
  }

  .section,
  .custom-section,
  .contact-section {
    padding-right: 34px;
    padding-left: 34px;
  }

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

  .custom-section,
  .contact-section,
  .section-heading.compact {
    grid-template-columns: 1fr;
    max-width: 780px;
  }

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

@media (min-width: 900px) and (max-width: 1024px) {
  .hero,
  body[data-hero-variant] .hero {
    grid-template-columns: minmax(320px, 0.92fr) minmax(340px, 1fr);
    max-width: 960px;
    gap: 44px;
    align-items: center;
  }

  .hero-copy,
  body[data-hero-variant] .hero-copy {
    order: 1;
  }

  .hero-media,
  body[data-hero-variant] .hero-media {
    order: 2;
    aspect-ratio: 0.92 / 1;
  }

  h1,
  body[data-hero-variant] .hero h1 {
    font-size: clamp(42px, 4.7vw, 50px);
  }
}

@media (max-width: 767px) {
  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  body {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 244, 239, 0) 420px),
      var(--paper);
  }

  .site-header,
  body[data-hero-variant] .site-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 12px 16px;
    background: rgba(247, 244, 239, 0.96);
  }

  .brand {
    justify-content: center;
    min-width: 0;
  }

  .brand-logo,
  body[data-hero-variant] .brand-logo {
    width: 110px;
    max-width: none;
    filter: none;
  }

  .nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 5px;
    width: calc(100vw - 32px);
    overflow-x: auto;
    padding: 2px 0;
    color: #36322d;
    font-size: 10.5px;
    font-weight: 750;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 7px 6px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.58);
    white-space: nowrap;
  }

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

  .header-cta {
    min-height: 38px;
    width: 100%;
    font-size: 11px;
  }

  .hero,
  body[data-hero-variant] .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    padding: 18px 16px 42px;
    overflow: hidden;
  }

  .hero-media,
  body[data-hero-variant] .hero-media {
    position: relative;
    order: 1;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin: 0;
    box-shadow: 0 18px 36px rgba(29, 26, 23, 0.13);
  }

  .hero-copy,
  body[data-hero-variant] .hero-copy {
    order: 2;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0;
    border: 0;
  }

  .hero-copy > *,
  .hero-text,
  .hero-meta,
  .hero-actions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .carousel-slide {
    min-height: 0;
  }

  h1,
  body[data-hero-variant] .hero h1 {
    margin: 0 0 18px;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(29px, 8.1vw, 33px);
    line-height: 1.08;
    font-weight: 800;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: pretty;
  }

  h2 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.06;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-text,
  .section-heading p,
  .custom-copy p,
  .contact-copy p {
    max-width: none;
    font-size: 15.5px;
    line-height: 1.66;
    overflow-wrap: break-word;
  }

  .hero-meta,
  body[data-hero-variant="05"] .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 18px;
  }

  .hero-meta span,
  body[data-hero-variant="05"] .hero-meta span {
    display: grid;
    min-height: 36px;
    place-items: center;
    padding: 6px 5px;
    border: 1px solid rgba(154, 106, 58, 0.28);
    color: var(--bronze);
    background: rgba(255, 255, 255, 0.38);
    text-align: center;
    font-size: 9.5px;
    line-height: 1.15;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }

  .hero-actions .button,
  .button {
    min-width: 0;
    min-height: 44px;
    width: 100%;
    padding: 0 12px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  .carousel-button {
    width: 34px;
    height: 34px;
  }

  .carousel-button.prev {
    left: 10px;
  }

  .carousel-button.next {
    right: 10px;
  }

  .hero-media-caption {
    right: auto;
    bottom: 12px;
    left: 12px;
    max-width: min(210px, calc(100% - 78px));
    padding: 10px 11px;
  }

  .carousel-dots {
    right: 12px;
    bottom: 14px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    margin: 0 16px 8px;
    border: 0;
  }

  .intro-band div {
    min-height: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .intro-band div:last-child {
    border-bottom: 0;
  }

  .intro-band span {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .intro-band strong {
    font-size: 18px;
  }

  .intro-band p {
    font-size: 14px;
    line-height: 1.58;
  }

  .section,
  .custom-section,
  .contact-section {
    padding: 46px 16px;
  }

  .section-heading,
  .section-heading.compact {
    display: block;
    margin-bottom: 22px;
  }

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

  .collection-card,
  .product-card {
    min-width: 0;
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 10px 22px rgba(29, 26, 23, 0.05);
  }

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

  .collection-card img,
  .product-card img {
    aspect-ratio: 1 / 1.04;
  }

  .collection-card .card-copy,
  .product-card .card-copy {
    padding: 10px;
  }

  .collection-card .card-meta,
  .product-card .card-meta {
    margin-bottom: 6px;
    font-size: 8.5px;
    line-height: 1.25;
  }

  .collection-card strong,
  .product-card strong {
    min-height: auto;
    font-size: 13px;
    line-height: 1.3;
    overflow-wrap: break-word;
  }

  .product-card .quote-link {
    margin-top: 9px;
    font-size: 10px;
  }

  .custom-section,
  .contact-section,
  .process,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .custom-section,
  .contact-section {
    gap: 24px;
  }

  .process {
    gap: 10px;
  }

  .process div {
    min-height: 0;
    padding: 18px;
  }

  .process span {
    margin-bottom: 10px;
  }

  .process p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.58;
  }

  .contact-methods a,
  .contact-methods span {
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .inquiry-form {
    gap: 12px;
    padding: 18px;
  }

  .full {
    grid-column: 1;
  }

  .site-footer {
    display: grid;
    padding: 24px 16px 34px;
    font-size: 13px;
  }
}

@media (max-width: 374px) {
  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  h1,
  body[data-hero-variant] .hero h1 {
    font-size: 29px;
  }
}
