:root {
  --bg: #f3eee5;
  --bg-soft: #fbf8f2;
  --text: #11100e;
  --muted: #706b62;
  --line: rgba(17, 16, 14, 0.11);
  --accent: #a27743;
  --accent-dark: #725029;
  --shadow: 0 30px 90px rgba(61, 48, 31, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #f3eee5;
}

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

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

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

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
}

.brand {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.brand-logo img {
  width: clamp(132px, 12vw, 148px);
  height: auto;
}

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

.nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.header-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 128svh;
  overflow: visible;
  margin-top: -78px;
  padding: 0;
  background:
    radial-gradient(circle at 66% 48%, rgba(255, 252, 245, 0.95) 0%, rgba(243, 238, 229, 0.24) 34%, rgba(243, 238, 229, 0) 58%),
    linear-gradient(180deg, #f7f1e8 0%, var(--bg) 100%);
  --hero-progress: 0;
  --hero-lift: 0px;
  --hero-scale: 1;
  --hero-rotate: 0deg;
}

.hero-copy {
  position: sticky;
  top: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  width: min(1120px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  margin-top: -100svh;
  padding: 112px 0 44px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 12vw, 8.2rem);
  line-height: 0.88;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 9.8vw, 7.2rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.96;
  font-weight: 600;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-text,
.lead,
.feature p,
.message-panel p,
.microcopy,
.clean-list {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text,
.lead {
  max-width: 480px;
  margin-bottom: 30px;
  font-size: clamp(1.04rem, 2.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.hero-link {
  color: rgba(17, 16, 14, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(17, 16, 14, 0.22);
}

.hero-specs {
  display: grid;
  gap: 0;
  width: min(100%, 560px);
  margin-top: 44px;
  border-top: 1px solid rgba(17, 16, 14, 0.14);
  border-bottom: 1px solid rgba(17, 16, 14, 0.14);
}

.hero-specs span {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid rgba(17, 16, 14, 0.1);
  color: rgba(17, 16, 14, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-specs span:last-child {
  border-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  width: fit-content;
  max-width: 100%;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #fffaf0;
  box-shadow: 0 18px 42px rgba(17, 16, 14, 0.2);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.44);
  color: var(--text);
}

.button-wide {
  width: 100%;
}

.floating-cta {
  position: fixed;
  left: 50%;
  top: max(14px, env(safe-area-inset-top));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: calc(100vw - 40px);
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.68);
  color: #fffaf0;
  box-shadow:
    0 14px 42px rgba(17, 16, 14, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.16) inset;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: opacity 260ms ease, transform 260ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.floating-cta:hover,
.floating-cta:focus-visible {
  background: rgba(17, 16, 14, 0.82);
  box-shadow:
    0 20px 52px rgba(17, 16, 14, 0.26),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transform: translate(-50%, -1px);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(680px, calc(100% - 40px));
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  background: rgba(18, 17, 15, 0.82);
  color: rgba(255, 250, 240, 0.76);
  box-shadow:
    0 22px 70px rgba(17, 16, 14, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.cookie-banner a {
  color: #f7f0e6;
  font-weight: 750;
  border-bottom: 1px solid rgba(247, 240, 230, 0.36);
}

.cookie-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
}

.cookie-button-primary {
  border: 1px solid rgba(245, 234, 219, 0.94);
  background: #f5eadb;
  color: #15130f;
}

.cookie-button-secondary {
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 250, 240, 0.82);
}

.cookie-button-secondary:hover,
.cookie-button-secondary:focus-visible {
  border-color: rgba(255, 250, 240, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.hero-media {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  overflow: hidden;
  background: transparent;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 54%;
  transform: perspective(1200px) translate3d(0, var(--hero-lift), 0) rotateY(var(--hero-rotate)) scale(var(--hero-scale));
  transform-origin: 62% 50%;
}

.hero-video {
  z-index: 2;
  opacity: 1;
  filter: saturate(0.96) contrast(1.02);
  transition: filter 240ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-fallback {
  z-index: 1;
}

.hero::after {
  position: sticky;
  top: 0;
  display: block;
  height: 100svh;
  margin-top: -100svh;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(243, 238, 229, 0.88) 0%, rgba(243, 238, 229, 0.22) 31%, rgba(243, 238, 229, 0.06) 55%, rgba(243, 238, 229, 0.42) 78%, rgba(243, 238, 229, 0.94) 100%),
    linear-gradient(90deg, rgba(243, 238, 229, 0.98) 0%, rgba(243, 238, 229, 0.82) 32%, rgba(243, 238, 229, 0.1) 76%);
  pointer-events: none;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.product-detail {
  display: grid;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.product-detail h2 {
  max-width: 840px;
}

.detail-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.detail-item {
  display: grid;
  gap: 10px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.detail-item span {
  color: var(--muted);
}

.detail-item span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.detail-item h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 650;
}

.detail-item p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.wear-section {
  display: grid;
  gap: 30px;
  width: min(1240px, calc(100% - 40px));
  padding-top: 86px;
  padding-bottom: 44px;
}

.wear-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  perspective: 1200px;
}

.wear-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #77736e;
  box-shadow: 0 26px 70px rgba(61, 48, 31, 0.13);
  isolation: isolate;
  transform: translateZ(0);
}

.wear-image img {
  width: 100%;
  height: clamp(420px, 58vw, 720px);
  object-fit: cover;
  object-position: 50% 43%;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.001);
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

.wear-image::before,
.wear-image::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: 1;
}

.wear-image::before {
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: inherit;
}

.wear-image::after {
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.08) 0%, rgba(18, 17, 15, 0) 42%, rgba(18, 17, 15, 0.18) 100%),
    radial-gradient(circle at 50% 38%, rgba(255, 250, 240, 0.18) 0%, rgba(255, 250, 240, 0) 42%);
  mix-blend-mode: soft-light;
  opacity: 0.72;
  transition: opacity 900ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .wear-image:hover img,
  .wear-image:focus-within img {
    filter: saturate(0.98) contrast(1.04);
    transform: scale(1.018);
  }

  .wear-image:hover::after,
  .wear-image:focus-within::after {
    opacity: 0.92;
  }
}

.wear-copy {
  max-width: 620px;
}

.wear-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.wear-everyday {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 108px));
  gap: 8px;
  margin-top: 24px;
}

.wear-everyday-reveal-ready .wear-everyday {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease-out, transform 920ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wear-everyday-reveal-ready .wear-everyday.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wear-everyday figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: var(--radius);
  background: #d8d1c8;
  box-shadow: 0 14px 34px rgba(61, 48, 31, 0.1);
}

.wear-everyday img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.9) contrast(0.98);
}

.wear-everyday figure::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.finish-section {
  width: min(1240px, calc(100% - 40px));
  padding-top: 112px;
  padding-bottom: 88px;
}

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

.finish-selector {
  display: grid;
  gap: 24px;
  min-width: 0;
  padding: 0;
  --finish-shadow: rgba(63, 49, 34, 0.18);
}

.finish-stage {
  position: relative;
  min-width: 0;
  min-height: 390px;
  overflow: visible;
  background: transparent;
}

.finish-controls {
  display: flex;
  justify-content: center;
  margin-top: -6px;
}

.finish-swatches {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  align-items: end;
  gap: clamp(10px, 2vw, 28px);
  width: 100%;
  min-width: 0;
  min-height: inherit;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: clamp(24px, 5vw, 56px) 0 24px;
  scroll-padding-inline: 18px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.finish-swatches::-webkit-scrollbar {
  display: none;
}

.finish-swatch {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  align-content: end;
  gap: 18px;
  min-height: 312px;
  width: 100%;
  padding: 0 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(17, 16, 14, 0.62);
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  text-align: center;
  cursor: pointer;
  opacity: 0.78;
  transition: color 900ms ease, transform 1100ms cubic-bezier(0.19, 1, 0.22, 1), opacity 900ms ease;
  scroll-snap-align: center;
}

.finish-swatch img {
  display: block;
  width: min(100%, 205px);
  max-height: 248px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(63, 49, 34, 0.12));
  transform: translateY(0) scale(0.96);
  transition: filter 1200ms cubic-bezier(0.19, 1, 0.22, 1), transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), opacity 900ms ease;
}

.finish-swatch span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.finish-swatch span::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  content: "";
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(17, 16, 14, 0.08);
  transition: transform 520ms ease, box-shadow 520ms ease;
}

.finish-swatch:hover,
.finish-swatch:focus-visible {
  color: var(--text);
  transform: translateY(-2px);
}

.finish-swatch.is-active {
  color: var(--text);
  opacity: 1;
}

.finish-swatch.is-active img {
  filter: drop-shadow(0 34px 54px var(--finish-shadow));
  transform: translateY(-8px) scale(1.035);
}

.finish-swatch.is-active span::before {
  transform: scale(1.2);
  box-shadow:
    inset 0 0 0 1px rgba(17, 16, 14, 0.08),
    0 0 0 7px rgba(17, 16, 14, 0.05);
}

.finish-swatch::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  background: rgba(114, 80, 41, 0.5);
  transform: translateX(-50%);
  transition: width 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

.finish-swatch.is-active::after {
  width: min(64px, 54%);
}

.app-experience {
  position: relative;
  display: grid;
  gap: 34px;
  width: min(1240px, calc(100% - 40px));
  padding-top: 96px;
  isolation: isolate;
}

.app-experience::before {
  position: absolute;
  inset: 48px -20px auto;
  z-index: -1;
  height: min(520px, 72%);
  content: "";
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.48), rgba(243, 238, 229, 0));
  opacity: 0.72;
  pointer-events: none;
}

.app-copy {
  max-width: 760px;
}

.app-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.app-screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
  min-width: 0;
  perspective: 1400px;
}

.app-screen {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  margin: 0;
  --app-screen-offset: 0px;
  transform: translateY(var(--app-screen-offset));
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 360ms ease-out;
}

.app-screen img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(70, 54, 32, 0.1));
  transform: translateZ(0);
  transition: filter 700ms ease, transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.app-screen figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  border-top: 1px solid var(--line);
  color: rgba(17, 16, 14, 0.72);
}

.app-screen span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.app-screen strong {
  font-size: 1rem;
  font-weight: 650;
  text-align: right;
}

@media (hover: hover) and (pointer: fine) {
  .app-screen:hover,
  .app-screen:focus-within {
    transform: translateY(calc(var(--app-screen-offset) - 8px));
  }

  .app-screen:hover img,
  .app-screen:focus-within img {
    filter: drop-shadow(0 28px 48px rgba(70, 54, 32, 0.16));
    transform: scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-experience,
  .wear-everyday,
  .app-screen,
  .app-screen img {
    transition: none;
  }

  .app-screen:hover,
  .app-screen:focus-within {
    transform: translateY(var(--app-screen-offset));
  }

  .app-screen:hover img,
  .app-screen:focus-within img {
    transform: none;
  }
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.premium-footer {
  width: 100%;
  margin-top: 30px;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(162, 119, 67, 0.16) 0%, rgba(20, 19, 17, 0) 34%),
    #12110f;
  color: rgba(246, 240, 230, 0.76);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 82px;
}

.footer-main {
  display: grid;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246, 240, 230, 0.12);
}

.footer-brand-block {
  display: grid;
  gap: 28px;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  width: clamp(136px, 13vw, 170px);
  height: auto;
  filter: invert(1) brightness(1.68) contrast(0.82);
  opacity: 0.84;
}

.footer-brand-block p {
  max-width: 320px;
  margin: 0;
  color: rgba(246, 240, 230, 0.58);
  line-height: 1.7;
}

.footer-newsletter {
  display: grid;
  gap: 18px;
}

.footer-label {
  margin: 0;
  color: rgba(206, 168, 116, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-newsletter h2 {
  max-width: 560px;
  margin: 0;
  color: #f7f0e6;
  font-size: clamp(1.8rem, 4.2vw, 3.55rem);
  line-height: 1.02;
  font-weight: 560;
}

.footer-signup {
  display: flex;
  align-items: end;
  gap: 10px;
  width: min(100%, 520px);
  margin-top: 16px;
  padding: 8px;
  border: 1px solid rgba(246, 240, 230, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.footer-email {
  flex: 1;
  min-width: 0;
  gap: 3px;
  padding-left: 18px;
}

.footer-email span,
.language-select span {
  color: rgba(246, 240, 230, 0.46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-email input {
  min-height: 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f7f0e6;
  padding: 0;
}

.footer-email input::placeholder {
  color: rgba(246, 240, 230, 0.38);
}

.footer-email input:focus {
  border-color: transparent;
  box-shadow: none;
}

.footer-signup button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #f5eadb;
  color: #15130f;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-signup button:hover,
.footer-signup button:focus-visible {
  background: #fff6ea;
  transform: translateY(-1px);
}

.footer-signup button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.footer-signup-status {
  min-height: 18px;
  margin: -4px 0 0;
  color: rgba(246, 240, 230, 0.54);
  font-size: 0.82rem;
  line-height: 1.4;
}

.footer-links {
  display: grid;
  gap: 34px;
  padding: 46px 0;
  border-bottom: 1px solid rgba(246, 240, 230, 0.12);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: rgba(246, 240, 230, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-legal-row a {
  color: rgba(246, 240, 230, 0.54);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal-row a:hover,
.footer-legal-row a:focus-visible {
  color: rgba(246, 240, 230, 0.9);
}

.footer-commerce {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(246, 240, 230, 0.12);
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(246, 240, 230, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(246, 240, 230, 0.78);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
}

.payment-visa strong {
  color: rgba(246, 240, 230, 0.86);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.mastercard-mark {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 20px;
}

.mastercard-mark i {
  position: absolute;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
}

.mastercard-mark i:first-child {
  left: 0;
  background: rgba(238, 90, 70, 0.9);
}

.mastercard-mark i:last-child {
  right: 0;
  background: rgba(239, 170, 67, 0.88);
  mix-blend-mode: screen;
}

.payment-apple,
.payment-google {
  gap: 5px;
  color: rgba(246, 240, 230, 0.84);
  font-size: 0.82rem;
}

.payment-apple svg {
  width: 13px;
  height: 16px;
  fill: currentColor;
}

.payment-google span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 2px;
  border-radius: 999px;
  background: conic-gradient(from 25deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: #12110f;
  font-size: 0.74rem;
  font-weight: 900;
}

.footer-bottom {
  display: grid;
  gap: 22px;
  align-items: center;
  padding-top: 30px;
  color: rgba(246, 240, 230, 0.48);
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.language-select {
  position: relative;
  display: grid;
  gap: 7px;
  width: min(100%, 190px);
}

.language-select select {
  min-height: 42px;
  border-color: rgba(246, 240, 230, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #f7f0e6;
  padding: 0 16px;
}

.language-status {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: 180px;
  padding: 7px 10px;
  border: 1px solid rgba(246, 240, 230, 0.12);
  border-radius: 999px;
  background: rgba(18, 17, 15, 0.82);
  color: rgba(246, 240, 230, 0.64);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.checkout-layout,
.form-layout,
.center-layout {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.checkout-layout {
  display: grid;
  gap: 18px;
}

.checkout-panel,
.summary-panel,
.lead-form,
.message-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 54px rgba(70, 54, 32, 0.1);
}

.checkout-panel,
.summary-panel,
.lead-form,
.message-panel {
  padding: 24px;
}

.checkout-panel h1,
.form-intro h1,
.message-panel h1 {
  font-size: clamp(2.1rem, 8vw, 4.4rem);
}

.checkout-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 4.8vw, 3rem);
  line-height: 1.05;
}

.summary-panel h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.05;
}

.checkout-panel h1,
.summary-panel h2 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.checkout-panel .lead,
.checkout-panel .microcopy,
.summary-panel,
.checkout-panel .button {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.checkout-panel .lead {
  max-width: 440px;
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 1.58;
}

.checkout-intro h1 {
  max-width: 100%;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.checkout-mini-summary {
  display: grid;
  gap: 0;
  margin: 4px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-mini-summary div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 16, 14, 0.08);
}

.checkout-mini-summary div:last-child {
  border-bottom: 0;
}

.checkout-mini-summary span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-mini-summary strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 680;
}

.price-row {
  display: grid;
  gap: 6px;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-row span {
  font-size: clamp(1.95rem, 4.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.price-row small {
  color: var(--muted);
}

.checkout-finish {
  display: grid;
  gap: 14px;
  margin: -8px 0 22px;
  padding: 18px 0 18px;
  border-bottom: 1px solid rgba(17, 16, 14, 0.08);
}

.checkout-finish-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.checkout-finish-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-finish-heading strong {
  color: rgba(17, 16, 14, 0.74);
  font-size: 0.96rem;
  font-weight: 650;
}

.checkout-finish-options {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}

.checkout-finish-option {
  position: relative;
  display: inline-grid;
  align-items: center;
  justify-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(61, 48, 31, 0.08);
  color: transparent;
  font: inherit;
  cursor: pointer;
  transform: scale(1);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.checkout-finish-option:hover,
.checkout-finish-option:focus-visible {
  border-color: rgba(17, 16, 14, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 12px 24px rgba(61, 48, 31, 0.12);
  transform: scale(1.06);
}

.checkout-finish-option.is-active {
  border-color: rgba(17, 16, 14, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 0 6px rgba(17, 16, 14, 0.06),
    0 16px 30px rgba(61, 48, 31, 0.14);
  transform: scale(1.13);
}

.microcopy {
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.clean-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.clean-list li {
  margin-bottom: 12px;
}

.form-layout {
  display: grid;
  gap: 28px;
}

.lead-form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(17, 16, 14, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(168, 121, 58, 0.72);
  box-shadow: 0 0 0 4px rgba(168, 121, 58, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.center-layout {
  display: grid;
  min-height: calc(100vh - 112px);
  place-items: center;
}

.message-panel {
  max-width: 720px;
}

.message-panel p {
  font-size: 1.06rem;
}

.message-panel .button {
  margin-top: 12px;
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .hero {
    min-height: 128svh;
    padding: 0;
  }

  .hero-copy {
    padding: 118px 0 70px;
  }

  .hero-text {
    max-width: 480px;
  }

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

  .hero-specs span {
    min-height: 58px;
    padding-right: 20px;
    border-right: 1px solid rgba(17, 16, 14, 0.1);
    border-bottom: 0;
  }

  .hero-specs span:last-child {
    border-right: 0;
  }

  .product-detail > div:first-child {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  .detail-grid {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
  }

  .detail-item {
    min-height: 240px;
    padding: 26px 24px 26px 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .detail-item:last-child {
    border-right: 0;
    padding-right: 0;
    padding-left: 24px;
  }

  .detail-item:nth-child(2) {
    padding-left: 24px;
  }

  .wear-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    align-items: center;
    padding-top: 108px;
    padding-bottom: 62px;
  }

  .wear-copy {
    padding-left: 18px;
  }

  .finish-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 30px;
    max-width: none;
    align-items: end;
  }

  .finish-selector {
    gap: 18px;
    padding: 0;
  }

  .finish-stage {
    min-height: 520px;
  }

  .finish-controls {
    justify-content: center;
    padding: 0;
  }

  .footer-main {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    align-items: end;
  }

  .footer-newsletter {
    justify-items: end;
    text-align: right;
  }

  .footer-signup {
    margin-left: auto;
  }

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

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .app-experience {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
  }

  .app-screen:nth-child(2) {
    --app-screen-offset: 18px;
  }

  .app-screen:nth-child(3) {
    --app-screen-offset: 6px;
  }

  .app-screen:nth-child(4) {
    --app-screen-offset: 24px;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .checkout-panel,
  .summary-panel,
  .lead-form,
  .message-panel {
    padding: 34px;
  }

  .form-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
    align-items: start;
  }
}

@media (min-width: 720px) and (max-width: 1180px) {
  .checkout-layout {
    width: min(920px, calc(100% - 40px));
  }

  .checkout-panel h1 {
    font-size: clamp(1.95rem, 4vw, 2.65rem);
  }

  .summary-panel h2 {
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  }

  .price-row span {
    font-size: clamp(1.9rem, 4vw, 2.45rem);
  }
}

@media (max-width: 719px) {
  .site-header {
    width: min(1120px, calc(100% - 32px));
    padding: 18px 0 12px;
  }

  .brand {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .brand-logo img {
    width: clamp(118px, 34vw, 132px);
  }

  .header-note {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 104svh;
    margin-top: -62px;
    background:
      radial-gradient(circle at 69% 38%, rgba(255, 252, 245, 0.98) 0%, rgba(243, 238, 229, 0.32) 35%, rgba(243, 238, 229, 0) 62%),
      linear-gradient(180deg, #f7f1e8 0%, var(--bg) 100%);
  }

  .hero-media {
    height: 100svh;
  }

  .hero-video,
  .hero-fallback {
    object-position: 62% 47%;
    transform-origin: 62% 48%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(243, 238, 229, 0.9) 0%, rgba(243, 238, 229, 0.24) 32%, rgba(243, 238, 229, 0.08) 55%, rgba(243, 238, 229, 0.48) 78%, rgba(243, 238, 229, 0.96) 100%),
      linear-gradient(90deg, rgba(243, 238, 229, 0.98) 0%, rgba(243, 238, 229, 0.78) 58%, rgba(243, 238, 229, 0.18) 100%);
  }

  .hero-copy {
    width: min(1120px, calc(100% - 32px));
    align-content: center;
    min-height: 100svh;
    padding: 92px 0 34px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  h1 {
    max-width: min(100%, 7em);
    margin-bottom: 16px;
    font-size: clamp(2.72rem, 11.6vw, 3.36rem);
    line-height: 0.92;
    text-wrap: balance;
  }

  .hero-copy h1 {
    max-width: min(100%, 8.2em);
    font-size: clamp(2.48rem, 10.4vw, 3.16rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .hero-text,
  .lead {
    max-width: 21rem;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 14px 18px;
  }

  .hero-actions .button {
    min-height: 54px;
    width: auto;
    padding-inline: 20px;
  }

  .button {
    min-height: 54px;
    height: auto;
    padding-block: 15px;
  }

  .floating-cta {
    top: max(10px, env(safe-area-inset-top));
    min-height: 40px;
    max-width: calc(100vw - 48px);
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .cookie-banner {
    display: grid;
    gap: 12px;
    width: min(420px, calc(100% - 28px));
    bottom: max(14px, env(safe-area-inset-bottom));
    padding: 14px;
    border-radius: 18px;
  }

  .cookie-banner p {
    font-size: 0.76rem;
  }

  .cookie-actions {
    justify-content: stretch;
    width: 100%;
  }

  .cookie-button {
    flex: 1;
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-link {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
  }

  .hero-specs {
    margin-top: 30px;
  }

  .hero-specs span {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .section {
    width: min(1120px, calc(100% - 32px));
    padding: 64px 0;
  }

  .product-detail {
    gap: 26px;
    padding-top: 34px;
  }

  .detail-item {
    padding: 22px 0;
  }

  .wear-section,
  .finish-section,
  .app-experience {
    width: min(1240px, calc(100% - 32px));
  }

  .wear-section {
    gap: 24px;
    padding-top: 66px;
    padding-bottom: 34px;
  }

  .wear-everyday {
    grid-template-columns: repeat(2, minmax(0, 92px));
    margin-top: 18px;
  }

  .wear-image img {
    height: clamp(320px, 92vw, 440px);
    object-position: 50% 42%;
  }

  .finish-section {
    padding-top: 74px;
    padding-bottom: 58px;
  }

  .finish-heading {
    margin-bottom: 18px;
  }

  .finish-stage {
    min-height: 392px;
    overflow: visible;
  }

  .finish-swatches {
    display: flex;
    gap: 16px;
    min-height: 372px;
    overflow-x: auto;
    margin-inline: 0;
    padding: 18px 0 26px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
  }

  .finish-swatch {
    flex: 0 0 min(68vw, 238px);
    min-height: 322px;
    gap: 14px;
  }

  .finish-swatch img {
    width: min(100%, 218px);
    max-height: 232px;
  }

  .finish-controls {
    margin-top: -12px;
  }

  .app-experience {
    gap: 24px;
    padding-top: 42px;
  }

  .app-gallery-reveal-ready .app-screen-gallery {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms ease-out, transform 920ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .app-gallery-reveal-ready .app-screen-gallery.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .app-experience::before {
    inset: 28px -16px auto;
    height: 380px;
    opacity: 0.54;
  }

  .app-screen-gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .app-screen-gallery::-webkit-scrollbar {
    display: none;
  }

  .app-screen {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: center;
    --app-screen-offset: 0px;
  }

  .app-screen img {
    filter: drop-shadow(0 18px 34px rgba(70, 54, 32, 0.12));
  }

  .app-screen figcaption {
    min-height: 38px;
  }

  .app-screen strong {
    font-size: 0.94rem;
  }

  .footer {
    width: min(1120px, calc(100% - 32px));
  }

  .checkout-layout,
  .form-layout,
  .center-layout {
    width: min(980px, calc(100% - 32px));
    padding: 28px 0 56px;
  }

  .checkout-panel,
  .summary-panel,
  .lead-form,
  .message-panel {
    padding: 22px;
  }

  .premium-footer {
    width: 100%;
    margin-top: 10px;
  }

  .footer-inner {
    width: min(1120px, calc(100% - 32px));
    padding: 38px 0 72px;
  }

  .footer-main {
    gap: 24px;
    padding-bottom: 30px;
  }

  .footer-logo img {
    width: 116px;
  }

  .footer-brand-block {
    gap: 18px;
  }

  .footer-brand-block p {
    max-width: 25rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .footer-newsletter {
    gap: 12px;
  }

  .footer-label {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .footer-newsletter h2 {
    max-width: 21rem;
    font-size: clamp(1.48rem, 7vw, 2.08rem);
    line-height: 1.04;
  }

  .footer-signup {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 5px;
    border-radius: 999px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  }

  .footer-email {
    padding-left: 14px;
  }

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

  .footer-email input {
    min-height: 38px;
    font-size: 0.88rem;
  }

  .footer-signup button {
    width: auto;
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 20px;
    padding: 30px 0;
  }

  .footer-links h3 {
    margin-bottom: 4px;
    font-size: 0.72rem;
  }

  .footer-links div {
    gap: 10px;
  }

  .footer-commerce {
    padding: 18px 0;
  }

  .footer-bottom {
    gap: 14px;
    padding-top: 20px;
    font-size: 0.82rem;
  }

  .language-select {
    width: min(100%, 160px);
  }

  .language-select select {
    min-height: 38px;
    font-size: 0.86rem;
  }

  .checkout-panel h1,
  .form-intro h1,
  .message-panel h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1;
  }

  .checkout-panel h1 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
    line-height: 1.04;
    max-width: 100%;
  }

  .checkout-panel .button {
    font-size: 0.9rem;
    line-height: 1.18;
  }

  .checkout-finish-option {
    width: 32px;
    height: 32px;
  }

  .price-row {
    margin: 24px 0;
  }

  .center-layout {
    min-height: auto;
    place-items: start;
  }
}

@media (max-width: 390px) {
  .site-header,
  .section,
  .checkout-layout,
  .form-layout,
  .center-layout {
    width: min(1120px, calc(100% - 28px));
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .checkout-panel .button {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 108svh;
  }

  .hero-copy {
    width: min(1120px, calc(100% - 28px));
    padding-top: 86px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.24rem, 9.4vw, 2.42rem);
    line-height: 0.96;
    text-wrap: balance;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 9vw, 2.34rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.9rem, 9.4vw, 2.65rem);
  }

  .hero-text,
  .lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

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

  .hero-link {
    min-height: auto;
    padding: 4px 0 2px;
  }

  .finish-stage {
    min-height: 370px;
  }

  .finish-swatches {
    min-height: 350px;
    padding-inline: 2px;
  }

  .finish-swatch {
    flex-basis: min(76vw, 222px);
    min-height: 310px;
  }

  .finish-swatch img {
    max-height: 220px;
  }
}

@media (max-width: 360px) {
  .hero-copy {
    padding-top: 82px;
  }

  h1 {
    max-width: 5.85em;
    font-size: clamp(2.28rem, 10.8vw, 2.7rem);
    line-height: 0.94;
    text-wrap: normal;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 2.22rem);
    line-height: 1;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

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

  .hero-link {
    min-height: auto;
    padding: 4px 0 2px;
  }

}
