:root {
  --ink: #050505;
  --soft-ink: #222;
  --muted: #777a7d;
  --faint: #b9bdc0;
  --line: #ececec;
  --paper: #ffffff;
  --mist: #ffffff;
  --silver-a: #b8bbbd;
  --silver-b: #f8f8f8;
  --silver-c: #858585;
  --radius: 10px;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  --max: 1180px;
  --narrow: 980px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 154px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--ink);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 60;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: #fff;
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, box-shadow 240ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-stuck {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.header-utility {
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 54px);
}

.brand img {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.12));
}

.brand {
  justify-self: center;
}

.header-icons {
  display: flex;
  justify-content: end;
  gap: 14px;
}

.icon-link {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--soft-ink);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.icon-link:hover,
.icon-link:focus-visible {
  background: var(--mist);
  transform: translateY(-1px);
}

.icon-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 0 18px 14px;
}

.nav-links a,
.section-kicker,
.eyebrow,
.pill,
.allocation-note,
.text-button,
.filter-tab,
.catalog-meta,
.product-info h3,
.service-card span,
.copyright {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: #4d4f52;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #111;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 10px 0;
  animation: marquee-scroll 24s linear infinite;
}

.marquee span {
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.marquee b {
  color: #7d8082;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(78px, 10vw, 132px) clamp(18px, 4vw, 34px);
}

.section-narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 34px);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.01em;
}

h1 {
  margin: 16px auto 16px;
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.14;
}

.hero {
  position: relative;
  max-width: none;
  min-height: calc(100svh - 154px);
  display: grid;
  align-items: center;
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(20px, 3vw, 36px);
  background: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(20px, 3vw, 36px) clamp(28px, 8vw, 122px);
  overflow: visible;
}

.hero-shell::before {
  display: none;
}

.hero-content,
.hero-visual,
.hero-proof {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
  text-align: left;
}

.hero-monogram {
  position: absolute;
  top: -28px;
  right: -18px;
  color: rgba(0, 0, 0, 0.045);
  font-family: var(--serif);
  font-size: clamp(6.2rem, 12vw, 10.5rem);
  font-weight: 900;
  line-height: 1;
  z-index: 2;
}

@keyframes hero-silver-sweep {
  0% {
    transform: translateX(-38%);
  }
  52% {
    transform: translateX(38%);
  }
  100% {
    transform: translateX(38%);
  }
}

.pill {
  width: fit-content;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  color: #444;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 1px 0 #fff, 0 10px 34px rgba(0, 0, 0, 0.04);
}

.hero .pill {
  margin: 0;
}

.allocation-note {
  margin: 12px 0 0;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.hero h1 {
  max-width: 590px;
  margin: 14px 0 14px;
  font-size: clamp(3.3rem, 4.65vw, 4.65rem);
}

.hero-lede {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 22px;
}

.hero-visual {
  min-height: clamp(330px, 32vw, 440px);
}

.hero-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(236, 236, 236, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.14);
}

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

.hero-image-main {
  inset: 0 0 38px 52px;
}

.hero-image-float {
  width: 42%;
  aspect-ratio: 0.78;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.hero-note {
  position: absolute;
  right: 14px;
  bottom: 18px;
  z-index: 3;
  width: min(248px, 62%);
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(227, 228, 230, 0.96);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.hero-note span {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.75vw, 1.38rem);
  line-height: 1.04;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(4px, 1.2vw, 12px) 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.045);
}

.hero-proof article {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-proof article + article {
  border-left: 1px solid var(--line);
}

.hero-proof span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-proof p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 28px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.button-shine {
  border-color: rgba(192, 195, 198, 0.72);
  background: linear-gradient(105deg, #fbfbfb 0%, #e4e6e8 34%, #ffffff 52%, #c9ccd0 78%, #f8f8f8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -1px 0 rgba(110, 113, 116, 0.12), 0 14px 28px rgba(0, 0, 0, 0.11);
  isolation: isolate;
}

.button-shine::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 255, 255, 0.24) 52%, transparent 64%, transparent 100%);
  transform: translateX(-135%);
  animation: silver-sweep 4.8s cubic-bezier(0.5, 0, 0.2, 1) infinite;
  will-change: transform;
}

.button-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 48%, rgba(80, 83, 86, 0.08));
}

.button-ghost {
  background: #fff;
}

@keyframes silver-sweep {
  0% {
    transform: translateX(-135%);
  }
  48% {
    transform: translateX(135%);
  }
  100% {
    transform: translateX(135%);
  }
}

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

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--faint);
}

.catalog-toolbar {
  max-width: 1060px;
  display: grid;
  grid-template-columns: minmax(230px, 320px) 1fr;
  gap: 18px;
  align-items: end;
  margin: 0 auto 20px;
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 15px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.search-field input {
  border-radius: 999px;
}

.search-field input:focus {
  border-color: #9b9b9b;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-tab {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 12px 15px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-tab.active,
.filter-tab:hover,
.filter-tab:focus-visible {
  border-color: transparent;
  background: #111;
  color: #fff;
}

.catalog-meta {
  max-width: 1060px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 0 auto 24px;
  color: var(--muted);
}

.catalog-meta p {
  margin: 0;
}

.text-button {
  border: 0;
  background: transparent;
  color: #505050;
  cursor: pointer;
}

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

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.catalog-actions .button {
  min-width: min(260px, 100%);
}

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: #d1d1d1;
  box-shadow: var(--shadow);
}

.product-card:focus-visible {
  outline: 3px solid rgba(150, 150, 150, 0.35);
  outline-offset: 3px;
}

.product-media {
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
  filter: contrast(1.04);
}

.product-info {
  min-height: 102px;
  padding: 13px 12px 14px;
}

.product-info h3 {
  min-height: 30px;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.82rem;
  line-height: 1.2;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.tag,
.consult-note {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.tag {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.consult-note {
  flex: 0 0 auto;
}

.down-arrow {
  width: fit-content;
  margin: -24px auto 0;
  color: #222;
  text-align: center;
  font-size: 1.35rem;
  line-height: 1;
  animation: arrow-bounce 1.7s ease-in-out infinite;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.58;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.service-grid {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64));
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card div {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.service-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 0.95;
}

.service-card p {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.artist {
  max-width: 820px;
  display: grid;
  justify-items: center;
  gap: clamp(26px, 5vw, 44px);
  text-align: center;
}

.artist-image {
  width: min(420px, 100%);
}

.artist-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.artist-copy {
  max-width: 680px;
  text-align: center;
}

.artist-copy .role {
  margin: 10px 0 18px;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artist-copy > p:not(.section-kicker):not(.pill):not(.role) {
  color: var(--muted);
}

blockquote {
  max-width: 390px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.2;
}

.before-after {
  max-width: none;
  overflow: hidden;
}

.before-after-carousel {
  display: grid;
  gap: 18px;
}

.before-after-row {
  width: 100%;
  overflow: hidden;
}

.before-after-track {
  width: max-content;
  display: flex;
  gap: 14px;
  will-change: transform;
}

.before-after-row-top .before-after-track {
  animation: carousel-left-to-right 34s linear infinite;
}

.before-after-row-bottom .before-after-track {
  animation: carousel-right-to-left 34s linear infinite;
}

.before-after-card {
  flex: 0 0 clamp(230px, 22vw, 320px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.1);
}

.before-after-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

@keyframes carousel-left-to-right {
  from {
    transform: translateX(calc(-50% - 7px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes carousel-right-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.faq {
  max-width: 840px;
}

.faq-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 12px;
  color: var(--soft-ink);
  font-size: 1.18rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--faint);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 650px;
  margin: -8px 12px 26px;
  color: var(--muted);
}

.contact {
  max-width: 760px;
}

.contact-layout {
  display: grid;
  justify-items: center;
}

.contact-card {
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--muted);
}

.contact-card strong {
  color: var(--ink);
}

.contact-card a {
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.contact-card .button {
  width: 100%;
  margin-top: 24px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: start;
  gap: clamp(28px, 5vw, 76px);
  padding: 42px 24px 34px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.footer-block {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-block strong {
  color: var(--ink);
}

.footer-block a {
  color: inherit;
  text-decoration: none;
}

.footer-block a:hover,
.footer-block a:focus-visible {
  color: var(--ink);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-align: center;
}

.silver-text {
  display: inline-block;
  color: transparent;
  text-decoration: none;
  background:
    linear-gradient(110deg, #606368 0%, #b4b8bc 26%, #ffffff 43%, #787c81 58%, #d8dbde 76%, #5f6267 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: silver-text-sweep 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes silver-text-sweep {
  0% {
    background-position: 140% 50%;
  }
  52% {
    background-position: -40% 50%;
  }
  100% {
    background-position: -40% 50%;
  }
}

.product-dialog {
  width: min(940px, calc(100vw - 28px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.product-dialog::backdrop {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.dialog-content {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
}

.dialog-content img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  background: #fff;
}

.dialog-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 54px);
}

.dialog-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.dialog-copy p:not(.section-kicker):not(.eyebrow) {
  color: var(--muted);
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .catalog-toolbar,
  .contact-layout,
  .dialog-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-inline: clamp(22px, 7vw, 52px);
  }

  .hero-content {
    max-width: 720px;
    text-align: center;
    justify-self: center;
  }

  .hero .pill,
  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(560px, 100%);
    min-height: 470px;
    justify-self: center;
  }

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

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

  .hero-proof article {
    min-height: auto;
    padding: 18px;
  }

  .hero-proof article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .dialog-content img {
    max-height: 460px;
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-inline: clamp(20px, 7vw, 52px);
    text-align: center;
  }

  .footer-block {
    justify-items: center;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 140px;
  }

  .site-header {
    border-bottom: 1px solid var(--line);
  }

  .header-utility {
    height: 58px;
    grid-template-columns: 44px 1fr 44px;
    padding-inline: 14px;
  }

  .brand img {
    width: 46px;
  }

  .icon-link {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    justify-content: center;
    gap: 0;
    overflow: visible;
    padding: 0 10px 10px;
  }

  .nav-links a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 clamp(7px, 2.3vw, 11px);
    color: #303236;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--line);
  }

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

  .marquee-track {
    gap: 26px;
    padding: 7px 0;
    animation-duration: 18s;
  }

  .marquee span {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .section-pad {
    padding-block: 70px;
  }

  .hero.section-pad {
    padding-block: 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .before-after .section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 2.55rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    width: 100%;
    gap: 16px;
    padding: 18px 18px 16px;
  }

  .hero h1 {
    margin: 12px auto;
    font-size: clamp(2.35rem, 10.3vw, 2.85rem);
    line-height: 0.94;
  }

  .allocation-note {
    margin-top: 10px;
    font-size: 0.68rem;
  }

  .hero-lede {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-monogram {
    top: -12px;
    right: 6px;
    font-size: 5rem;
  }

  .hero-actions,
  .dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    min-height: 46px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-image-main {
    inset: 0 0 48px 34px;
  }

  .hero-image-float {
    width: 48%;
  }

  .hero-note {
    display: none;
  }

  .hero-proof {
    margin-top: 0;
  }

  .hero-proof article {
    padding: 14px;
  }

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

  .catalog-actions {
    margin-top: 24px;
  }

  .product-info {
    min-height: 116px;
  }

  .product-foot {
    display: grid;
  }

  .service-card {
    min-height: 360px;
  }

}
