:root {
  --bg: #f3efe7;
  --bg-strong: #151515;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf1;
  --text: #141414;
  --muted: #625d53;
  --line: rgba(20, 20, 20, 0.1);
  --accent: #d3542f;
  --accent-cool: #2473b7;
  --accent-soft: #d8bb4d;
  --shadow: 0 22px 44px rgba(15, 17, 14, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --page-width: 1180px;
  --space-section: clamp(4rem, 7vw, 6.5rem);
  --space-block: clamp(1rem, 2vw, 1.4rem);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-ui: "Klik Light", var(--font-body);
  --font-display: "Film Noir Adventure", var(--font-body);
}

@font-face {
  font-family: "Klik Light";
  src: url("../fonts/klik-light.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Film Noir Adventure";
  src: url("../fonts/film-noir-adventure.otf") format("opentype");
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(36, 115, 183, 0.09), transparent 24%),
    radial-gradient(circle at top right, rgba(211, 84, 47, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f2ea 0%, #eeeadf 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container,
.site-header__inner,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(246, 242, 234, 0.84);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.28rem;
}

.brand__logo {
  width: clamp(11rem, 16vw, 13rem);
  height: auto;
}

.brand__tagline {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-ui);
}

.site-nav__links a {
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a.is-active {
  background: rgba(20, 20, 20, 0.06);
  color: var(--text);
}

.site-nav__socials,
.socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(20, 20, 20, 0.05);
  border-color: rgba(20, 20, 20, 0.24);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: transparent;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -0.35rem;
}

.nav-toggle span::after {
  top: 0.35rem;
}

.section {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 0 auto;
  padding: var(--space-section) 0;
}

.section--tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section--dark {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 0 auto var(--space-section);
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top right, rgba(211, 84, 47, 0.22), transparent 32%),
    radial-gradient(circle at bottom left, rgba(36, 115, 183, 0.22), transparent 34%),
    linear-gradient(135deg, #121212 0%, #1b1b1b 100%);
  color: #f7f4ee;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.alpha-section {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 0 auto;
  padding: 0;
  height: clamp(25.5rem, 61.5vh, 36rem);
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 6px);
  box-shadow: var(--shadow);
}

.alpha-section__media,
.alpha-section__overlay {
  position: absolute;
  inset: 0;
}

.alpha-section__overlay {
  background:
    linear-gradient(90deg, rgba(11, 14, 18, 0.8) 0%, rgba(11, 14, 18, 0.62) 34%, rgba(11, 14, 18, 0.18) 68%, rgba(11, 14, 18, 0.04) 100%);
}

.alpha-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 35.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.alpha-section__eyebrow {
  font-size: 0.88rem;
  color: rgba(255, 250, 241, 0.84);
}

.alpha-section .eyebrow::before {
  background: currentColor;
}

.alpha-section__title {
  max-width: 12ch;
}

.alpha-section__title span {
  display: block;
}

.alpha-section p {
  color: rgba(255, 250, 241, 0.84);
  max-width: 34rem;
}

.home-alpha-section {
  height: clamp(28rem, 46vw, 34rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 134, 103, 0.2), transparent 34%),
    linear-gradient(135deg, #27231f 0%, #332d28 55%, #5b4c43 100%);
}

.home-alpha-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/pages/home/alpha-direct-background/web/home-alpha-direct-background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.home-alpha-section .alpha-section__media {
  display: none;
}

.home-alpha-section .alpha-section__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(31, 27, 24, 0.84) 0%, rgba(38, 33, 29, 0.72) 34%, rgba(55, 47, 41, 0.34) 66%, rgba(74, 62, 54, 0.08) 100%),
    linear-gradient(180deg, rgba(23, 21, 19, 0.08) 0%, rgba(23, 21, 19, 0.22) 100%);
}

.home-alpha-section .alpha-section__content {
  z-index: 2;
  max-width: 40rem;
}

.home-alpha-section .alpha-section__eyebrow {
  color: rgba(255, 250, 241, 0.94);
  text-shadow: 0 0.45rem 1.2rem rgba(0, 0, 0, 0.18);
}

.home-alpha-section .alpha-section__title {
  max-width: 21ch;
}

.home-alpha-section .alpha-section__title span {
  white-space: nowrap;
}

.home-alpha-section p {
  max-width: 38rem;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.6;
}

.home-alpha-section .alpha-section__content p,
.home-alpha-section .alpha-section__content .lead {
  color: rgba(255, 250, 241, 0.84);
}

.alpha-section__floating-media {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  height: auto;
  aspect-ratio: 4 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.alpha-section__floating-placeholder {
  position: relative;
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.section--single {
  max-width: 54rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.section--dark .eyebrow,
.section--dark p {
  color: rgba(247, 244, 238, 0.8);
}

.headline-xl,
.headline-lg,
.headline-md,
.page-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-ui);
  line-height: 1.02;
  text-transform: uppercase;
}

.headline-xl {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: 0.04em;
}

.headline-lg,
.page-title {
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  letter-spacing: 0.04em;
}

.headline-md {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
}

.lead,
.section p,
.intro-copy {
  color: var(--muted);
}

.lead {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  max-width: 38rem;
}

.legal-page {
  max-width: 58rem;
}

.legal-page__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-page__switch {
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.legal-page__content {
  max-width: 46rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  font-size: 1.03rem;
  line-height: 1.78;
  color: var(--muted);
}

.legal-document h2,
.legal-document h3 {
  margin: 0;
  font-family: var(--font-ui);
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.legal-document h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-document h3 {
  margin-top: clamp(2.8rem, 5vw, 4rem);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.legal-document h4 {
  margin: 1.5rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.legal-document section:first-of-type h3 {
  margin-top: clamp(2.2rem, 4vw, 3rem);
}

.legal-document p,
.legal-document ul {
  margin: 1rem 0 0;
}

.legal-document ul {
  padding-left: 1.25rem;
}

.legal-document li + li {
  margin-top: 0.35rem;
}

.legal-document table {
  width: 100%;
  margin-top: 1.2rem;
  border-collapse: collapse;
  font-size: 0.96rem;
  line-height: 1.55;
}

.legal-document th,
.legal-document td {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(20, 20, 20, 0.12);
  text-align: left;
  vertical-align: top;
}

.legal-document th {
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 255, 255, 0.34);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--secondary {
  background: var(--text);
  color: #fff;
}

.button--ghost {
  border-color: rgba(20, 20, 20, 0.14);
  background: transparent;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 1.4rem auto 0;
  min-height: clamp(34rem, 82vh, 48rem);
  border-radius: calc(var(--radius-xl) + 6px);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.hero--compact {
  min-height: 27rem;
}

.hero--home {
  min-height: clamp(25.5rem, 61.5vh, 36rem);
}

.home-page__hero {
  min-height: clamp(23.5rem, 54vh, 32.5rem);
}

.home-page__hero-content {
  justify-content: center;
  padding-top: clamp(1.75rem, 3.2vw, 2.4rem);
  padding-bottom: clamp(2.1rem, 3.8vw, 2.8rem);
  max-width: 47rem;
}

.home-page__hero .hero__lead {
  color: rgba(255, 255, 255, 0.86);
}

.home-page__hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 0.7rem rgba(0, 0, 0, 0.38);
}

.home-page__hero .eyebrow::before {
  width: 1.55rem;
}

.hero__media,
.hero__media img,
.hero__placeholder,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
}

.hero__placeholder {
  display: grid;
  place-items: center;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(36, 115, 183, 0.18), rgba(211, 84, 47, 0.18)),
    linear-gradient(180deg, rgba(255, 250, 241, 0.76), rgba(236, 228, 214, 0.9));
}

.hero__placeholder span {
  padding: 0.9rem 1.2rem;
  border: 1px dashed rgba(20, 20, 20, 0.32);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.72);
  background: rgba(255, 255, 255, 0.46);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(7, 10, 12, 0.12) 0%, rgba(7, 10, 12, 0.22) 38%, rgba(7, 10, 12, 0.76) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: inherit;
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
  max-width: 42rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  letter-spacing: 0.02em;
  line-height: 0.94;
}

.hero__title-line {
  display: block;
}

.hero__title-nowrap {
  white-space: nowrap;
}

.hero__lead span {
  display: block;
}

.hero__lead span + span {
  margin-top: 0.15rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.tag {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid-3,
.grid-2,
.grid-auto {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}

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

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

.grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card,
.info-card,
.contact-card,
.pricing-card,
.swatch-card,
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.05);
  overflow: hidden;
}

.card__body,
.info-card,
.contact-card,
.pricing-card,
.gallery-card__body {
  padding: 1.35rem;
}

.card__media,
.stack img,
.gallery-card__main img,
.gallery-card__thumbs img {
  width: 100%;
  object-fit: cover;
}

.card__media {
  aspect-ratio: 4 / 5;
}

.stack {
  display: grid;
  gap: 1rem;
}

.stack img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-story__visual {
  align-self: center;
  transform: translateY(clamp(0.6rem, 1.2vw, 1.2rem));
}

.about-page__story {
  padding-top: clamp(1.4rem, 2.8vw, 2.4rem);
}

.about-story__title {
  font-size: clamp(2.25rem, 3vw, 3rem);
}

.about-story__title span {
  display: block;
  white-space: nowrap;
}

.intro-section {
  align-items: start;
}

.intro-visual {
  position: relative;
  display: grid;
}

.intro-visual__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.intro-visual__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.quote-card {
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0;
}

.cta-card {
  text-align: center;
}

.cta-card__title {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.cta-card__actions {
  justify-content: center;
}

.home-cta {
  padding-top: var(--space-section);
  padding-bottom: 0;
}

.home-cta .cta-card__title {
  max-width: 17ch;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
}

.custom-page__hero {
  margin-bottom: 0;
}

.custom-page__hero .hero__media img {
  object-position: 52% 56%;
}

.custom-page__hero .hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 12, 0.64) 0%, rgba(7, 10, 12, 0.42) 38%, rgba(7, 10, 12, 0.16) 72%),
    linear-gradient(180deg, rgba(7, 10, 12, 0.12) 0%, rgba(7, 10, 12, 0.22) 38%, rgba(7, 10, 12, 0.72) 100%);
}

.custom-page__hero .hero__lead {
  color: rgba(255, 255, 255, 0.86);
}

.custom-page__hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.custom-page__hero-content {
  justify-content: center;
  padding-top: clamp(1.8rem, 4vw, 2.4rem);
  padding-bottom: clamp(1.8rem, 4vw, 2.4rem);
}

.custom-page__split {
  align-items: center;
}

.custom-page__process-intro {
  align-items: stretch;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  padding-top: var(--space-section);
}

.custom-page__process-intro > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 1.25rem;
}

.custom-page__process-intro .intro-visual {
  align-items: center;
  justify-items: end;
  padding-block: 1.25rem;
}

.custom-page__process-intro .intro-visual__photo {
  width: 100%;
  max-width: 44rem;
  height: auto;
  aspect-ratio: 3 / 2;
}

.custom-page__process-intro .intro-visual__photo .hero__placeholder {
  position: relative;
}

.custom-page__process-intro .intro-visual__photo .custom-process-visual {
  object-fit: contain;
  object-position: center;
}

.custom-page__ideas {
  align-items: stretch;
}

.custom-page__ideas > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 1.25rem;
}

.custom-page__ideas .intro-visual {
  padding-block: 1.25rem;
}

.custom-page__ideas .intro-visual__photo {
  height: clamp(25rem, 38vw, 31rem);
  aspect-ratio: auto;
}

.custom-page__ideas .intro-visual__photo .hero__placeholder {
  position: relative;
}

.custom-page__ideas .intro-visual__photo .custom-ideas-visual {
  object-position: 45% 12%;
}

.custom-page__intro .intro-visual__photo {
  aspect-ratio: 1 / 1;
}

.custom-page__intro .intro-visual__photo .hero__placeholder {
  position: relative;
}

.custom-page__process {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.custom-page__cta {
  padding-top: 0;
}

.custom-page__cta-card {
  text-align: center;
}

.custom-page__cta-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.custom-page__cta-title span {
  display: block;
}

.custom-page__cta-title-nowrap {
  white-space: nowrap;
}

.custom-page__cta-card .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.custom-page__cta-card .button-row {
  justify-content: center;
}

.materials-page__hero {
  min-height: clamp(15rem, 28vh, 17rem);
}

.materials-page__hero .hero__media img {
  object-position: 50% 47%;
  transform: scale(1.28);
  transform-origin: center;
}

.materials-page__hero .hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 12, 0.62) 0%, rgba(7, 10, 12, 0.36) 42%, rgba(7, 10, 12, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 10, 12, 0.48) 0%, rgba(7, 10, 12, 0.2) 48%, rgba(7, 10, 12, 0.52) 100%);
}

.materials-page__hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 0 rgba(7, 10, 12, 0.28);
}

.materials-page__hero-content {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: clamp(1.8rem, 4vw, 2.4rem);
  padding-bottom: clamp(1.8rem, 4vw, 2.4rem);
  max-width: none;
}

.materials-page__hero-title {
  margin-top: 0.4rem;
  margin-bottom: 0;
  text-align: left;
}

.materials-page__hero-title span {
  display: block;
}

.materials-page__hero-copy {
  max-width: none;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  letter-spacing: normal;
  line-height: 1.32;
  text-transform: none;
  text-align: left;
}

.materials-page__hero-copy span {
  white-space: nowrap;
}

.materials-weight-copy span,
.materials-weight-title span {
  display: block;
}

.materials-weight-copy--90 {
  max-width: none;
  width: fit-content;
}

.materials-weight-copy--90 .materials-weight-copy__single-line {
  white-space: nowrap;
}

.materials-weight-section {
  padding-top: clamp(2.8rem, 5vw, 4rem);
  padding-bottom: clamp(2.8rem, 5vw, 4rem);
}

.materials-finishing-section {
  padding-top: clamp(2rem, 3.5vw, 3rem);
}

.materials-subheading {
  margin: 1.35rem 0 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.materials-page .swatch-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.materials-page .swatch-card h3 {
  display: none;
}

.materials-page .swatch-card img {
  background: transparent;
}

.materials-finishing-grid {
  margin-top: 1.5rem;
  align-items: stretch;
}

.materials-finishing-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 20rem;
  overflow: hidden;
  padding: clamp(1.6rem, 2.8vw, 2rem);
  background:
    linear-gradient(135deg, rgba(36, 115, 183, 0.14), rgba(211, 84, 47, 0.14)),
    linear-gradient(180deg, rgba(247, 243, 236, 0.92), rgba(230, 223, 210, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.05);
}

.materials-finishing-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1.5px dashed rgba(42, 42, 42, 0.18);
  border-radius: calc(var(--radius-lg) - 0.75rem);
  pointer-events: none;
}

.materials-finishing-card--photo {
  background: #fff;
}

.materials-finishing-card--photo::before {
  display: none;
}

.materials-finishing-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 236, 0.94) 0%, rgba(247, 243, 236, 0.76) 46%, rgba(247, 243, 236, 0.18) 100%);
  pointer-events: none;
}

.materials-finishing-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: 58% 48%;
}

.materials-finishing-card__photo--shock-cord {
  object-position: 61% 50%;
}

.materials-finishing-card__content {
  position: relative;
  z-index: 2;
  max-width: 26rem;
}

.materials-finishing-card .headline-md span {
  display: block;
  white-space: nowrap;
}

.materials-finishing-card .lead {
  max-width: 33ch;
  margin-top: 0.9rem;
}

.materials-finishing-colors {
  display: grid;
  gap: clamp(2rem, 4vw, 2.8rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.materials-finishing-color-title {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1rem;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.materials-finishing-color-title__main,
.materials-finishing-color-title__meta {
  display: block;
}

.materials-finishing-color-title__meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.materials-finishing-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1.1rem;
}

.materials-finishing-color-item {
  min-width: 0;
}

.materials-finishing-color-placeholder {
  aspect-ratio: 1 / 0.78;
  border: 1px dashed rgba(42, 42, 42, 0.2);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(36, 115, 183, 0.1), rgba(211, 84, 47, 0.12)),
    rgba(247, 243, 236, 0.72);
}

.materials-finishing-color-group--binding img.materials-finishing-color-placeholder,
.materials-finishing-color-group--shock-cord img.materials-finishing-color-placeholder {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  background: #fff;
  object-fit: cover;
  overflow: hidden;
}

.materials-finishing-color-item p {
  overflow: hidden;
  margin: 0.45rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 981px) {
  .materials-finishing-color-group--binding .materials-finishing-color-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .materials-finishing-color-group--shock-cord .materials-finishing-color-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.materials-zipper-options {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding-top: 0;
}

.materials-zipper-options__copy {
  max-width: 42rem;
}

.materials-zipper-options__copy .headline-lg {
  max-width: 15ch;
}

.materials-zipper-options__copy .lead {
  max-width: 36rem;
}

.materials-zipper-options__cards {
  display: grid;
  gap: 1rem;
  padding-top: clamp(0.9rem, 2vw, 1.4rem);
}

.materials-zipper-card {
  display: grid;
  grid-template-columns: minmax(12rem, 44%) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  min-height: 8.7rem;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.05);
}

.materials-zipper-card__placeholder {
  aspect-ratio: 5 / 3;
  border: 1px dashed rgba(42, 42, 42, 0.2);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(36, 115, 183, 0.1), rgba(211, 84, 47, 0.12)),
    rgba(247, 243, 236, 0.72);
}

.materials-zipper-card img.materials-zipper-card__placeholder {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  background: #fff;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.materials-zipper-card h4 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.materials-zipper-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.materials-label-options {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.materials-label-options__copy {
  max-width: 42rem;
}

.materials-label-options__copy .headline-lg {
  max-width: 16ch;
}

.materials-label-options__copy .lead {
  max-width: 38rem;
}

.materials-label-options__copy .lead + .lead {
  margin-top: 0.8rem;
}

.materials-label-options__visual {
  align-self: start;
  display: grid;
  min-height: clamp(22.5rem, 36vw, 28.5rem);
  margin-top: clamp(0.8rem, 1.3vw, 1.15rem);
  place-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(36, 115, 183, 0.1), rgba(211, 84, 47, 0.12)),
    rgba(255, 255, 255, 0.58);
  border: 1px dashed rgba(42, 42, 42, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.05);
}

.materials-label-options__visual--photo {
  height: clamp(22.5rem, 36vw, 28.5rem);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
}

.materials-label-options__visual--photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  object-fit: cover;
  object-position: 54% 64%;
}

.materials-label-options__visual span {
  font-family: var(--font-ui);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  color: var(--muted);
}

.materials-samples {
  padding-top: 0;
}

.materials-samples__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.05);
}

.materials-samples__copy {
  max-width: 38rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.materials-samples__copy .headline-lg span {
  display: block;
}

.materials-samples__copy .lead {
  max-width: 32rem;
}

.materials-samples__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.1rem;
  align-items: center;
  justify-content: space-between;
  max-width: min(100%, 34.5rem);
  margin-top: 2.1rem;
}

.materials-samples__price {
  flex: 0 1 auto;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.materials-samples__cta .button {
  flex: 0 0 auto;
}

.materials-samples__media {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding-top: clamp(0.65rem, 1.4vw, 1rem);
}

.materials-samples__visual {
  display: grid;
  flex: 1;
  min-height: clamp(22rem, 31vw, 27rem);
  place-items: center;
  border: 1px dashed rgba(42, 42, 42, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 18%, rgba(116, 178, 205, 0.16), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(211, 84, 47, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(247, 243, 236, 0.86), rgba(240, 233, 224, 0.64));
}

.materials-samples__visual--photo {
  height: clamp(22rem, 31vw, 27rem);
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: #fff;
}

.materials-samples__visual--photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  object-fit: cover;
  object-position: 57% 68%;
}

.materials-samples__visual span {
  padding: 0.85rem 1rem;
  border: 1px dashed rgba(20, 20, 20, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(20, 20, 20, 0.68);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .materials-page .hero__title-nowrap,
  .materials-page__hero-copy span,
  .materials-weight-copy--90 .materials-weight-copy__single-line,
  .materials-finishing-card .headline-md span {
    white-space: normal;
  }

  .materials-weight-copy--90 {
    width: auto;
  }

  .materials-finishing-card {
    min-height: 16.8rem;
  }

  .materials-finishing-color-grid {
    grid-template-columns: repeat(auto-fit, minmax(4.1rem, 1fr));
    gap: 0.75rem;
  }

  .materials-zipper-options {
    grid-template-columns: 1fr;
  }

  .materials-label-options {
    grid-template-columns: 1fr;
  }

  .materials-zipper-options__copy .headline-lg {
    max-width: none;
  }

  .materials-label-options__copy .headline-lg {
    max-width: none;
  }

  .materials-zipper-card {
    grid-template-columns: 1fr;
  }

  .materials-samples__card {
    grid-template-columns: 1fr;
  }

  .materials-samples__copy .headline-lg {
    max-width: none;
  }

  .materials-samples__media {
    padding-top: 0;
  }

  .materials-samples__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .materials-samples__price,
  .materials-samples__cta .button {
    flex: none;
  }

  .materials-samples__price {
    white-space: normal;
  }
}

.custom-process-section {
  height: auto;
  min-height: clamp(25.5rem, 61.5vh, 36rem);
  margin-bottom: 0;
}

.custom-process-section__content {
  max-width: 38rem;
  padding-right: clamp(2rem, 4vw, 18rem);
}

.custom-process-section__steps {
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.custom-process-section .process-step {
  padding: 0.9rem 1rem;
  background: rgba(255, 250, 241, 0.16);
  border-color: rgba(255, 250, 241, 0.16);
  backdrop-filter: blur(8px);
}

.custom-process-section .process-step p {
  color: rgba(255, 250, 241, 0.82);
}

.custom-process-section__floating-media {
  top: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  height: auto;
}

.custom-page__intro-note {
  width: min(72%, 23rem);
}

.custom-page__base-build-content {
  max-width: 43rem;
  height: auto;
  min-height: inherit;
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.custom-page__base-build {
  height: auto;
  min-height: clamp(34rem, 66vh, 40rem);
}

.custom-page__base-build .alpha-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.custom-page__base-build .alpha-section__eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.custom-page__base-build .alpha-section__title {
  max-width: 17ch;
}

.custom-page__base-build-content p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.84);
}

.custom-page__base-build-content p + p {
  margin-top: 1.2rem;
}

.custom-page__process-note {
  margin-top: clamp(2rem, 3vw, 2.75rem);
}

.custom-page__process-copy {
  max-width: 36rem;
}

.custom-page__process-copy span {
  display: block;
}

.custom-page__process-copy span + span {
  margin-top: 0.35rem;
}

.quote-card--over-photo {
  position: absolute;
  z-index: 1;
  left: -18rem;
  bottom: 1.75rem;
  width: min(68%, 24rem);
  margin: 0;
  background: rgba(255, 250, 241, 0.68);
  backdrop-filter: blur(14px);
  line-height: 1.55;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.82rem;
}

.list-clean li {
  display: flex;
  gap: 0.78rem;
}

.list-clean li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  margin-top: 0.42rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-chip {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
}

.process {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.process-step__number {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

.process-step h3,
.info-card h3,
.contact-card h3,
.pricing-card h3,
.swatch-card h3,
.gallery-card h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.process-step p,
.info-card p,
.contact-card p,
.pricing-card p,
.swatch-card p,
.gallery-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.gallery-intro {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 3rem auto 0;
}

.gallery-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.gallery-card__main {
  min-height: 100%;
}

.gallery-card__main img {
  height: 100%;
}

.gallery-card__thumbs {
  display: grid;
  gap: 0.6rem;
  padding: 0.6rem 0.6rem 0 0;
}

.gallery-card__thumbs img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.gallery-build-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
}

.gallery-build-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.05);
}

.gallery-build-card__collage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.6rem;
  min-height: clamp(17rem, 27vw, 24rem);
}

.gallery-build-card__placeholder {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px dashed rgba(42, 42, 42, 0.2);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(36, 115, 183, 0.1), rgba(211, 84, 47, 0.12)),
    rgba(247, 243, 236, 0.72);
}

.gallery-build-card__photo {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  border-radius: 1.1rem;
  background: rgba(247, 243, 236, 0.72);
}

.gallery-build-card__photo[role="button"] {
  cursor: zoom-in;
}

.gallery-build-card__photo[role="button"]:focus-visible {
  outline: 3px solid rgba(36, 115, 183, 0.7);
  outline-offset: 3px;
}

.gallery-build-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-build-card__placeholder--main {
  grid-row: 1 / span 2;
}

.gallery-build-card__photo--main {
  grid-row: 1 / span 2;
}

.gallery-build-card__placeholder--more::before,
.gallery-build-card__photo--more::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.14);
}

.gallery-build-card__placeholder--more span,
.gallery-build-card__photo--more span {
  position: absolute;
  right: 0.75rem;
  bottom: 0.7rem;
  z-index: 1;
  padding: 0.45rem 0.65rem;
  background: rgba(247, 243, 236, 0.88);
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-build-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.gallery-build-card__body h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-build-card__body p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.gallery-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
}

.gallery-cta__card .headline-md {
  margin-top: 0;
  max-width: 28ch;
}

.gallery-cta__card .button-row {
  flex-shrink: 0;
  margin-top: 0;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 2.5vw, 1.5rem);
  background: rgba(20, 20, 20, 0.84);
}

.gallery-lightbox.is-open {
  display: flex;
}

.has-gallery-lightbox {
  overflow: hidden;
}

.gallery-lightbox__dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.85rem;
  width: min(100%, 1180px);
  max-height: min(92vh, 900px);
  color: #fff;
}

.gallery-lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-lightbox__counter {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 7.5rem);
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  object-fit: contain;
}

.gallery-lightbox__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.13);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.gallery-lightbox__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.82);
  outline-offset: 3px;
}

.gallery-lightbox__close {
  font-size: 1.55rem;
  line-height: 1;
}

.gallery-lightbox__nav {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__nav--prev {
  left: clamp(0.8rem, 2.5vw, 1.5rem);
}

.gallery-lightbox__nav--next {
  right: clamp(0.8rem, 2.5vw, 1.5rem);
}

.pricing-list,
.addon-list {
  display: grid;
  gap: 0.9rem;
}

.pricing-row,
.addon-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row--selectable,
.addon-row--selectable {
  margin: -0.1rem -0.35rem;
  padding: 1.1rem 0.35rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.pricing-row--selectable {
  cursor: pointer;
}

.pricing-row--selectable:hover,
.pricing-row--selectable:focus-visible {
  background: rgba(255, 250, 241, 0.72);
  box-shadow: inset 0 0 0 1px rgba(211, 84, 47, 0.2);
  outline: 0;
}

.pricing-row--selectable.is-selected {
  background: rgba(211, 84, 47, 0.1);
  box-shadow: inset 0 0 0 1px rgba(211, 84, 47, 0.38);
}

.pricing-row--selectable.is-selected .price,
.pricing-row--selectable.is-selected .price__main {
  color: var(--accent);
}

.addon-row--selectable:not(.is-disabled) {
  cursor: pointer;
}

.addon-row--selectable:not(.is-disabled):hover,
.addon-row--selectable:not(.is-disabled):focus-visible {
  background: rgba(255, 250, 241, 0.66);
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.08);
  outline: 0;
}

.addon-row--selectable.is-selected {
  background: rgba(211, 84, 47, 0.07);
  box-shadow: inset 0 0 0 1px rgba(211, 84, 47, 0.26);
}

.addon-row--selectable.is-selected .price,
.addon-row--selectable.is-selected .price__main {
  color: var(--accent);
}

.addon-row--selectable.is-disabled {
  cursor: default;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.addon-row--selectable.is-disabled strong,
.addon-row--selectable.is-disabled .price__main {
  color: var(--text);
}

.addon-row--selectable.is-disabled .price__approx {
  color: var(--muted);
}

.pricing-row:last-child,
.addon-row:last-child {
  border-bottom: 0;
}

.pricing-row strong,
.addon-row strong {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  display: grid;
  justify-items: end;
  gap: 0.15rem;
  font-family: var(--font-ui);
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-align: right;
  white-space: nowrap;
}

.price__main {
  color: var(--text);
  font-size: 1rem;
}

.price__approx {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-intro__lead {
  max-width: 54rem;
}

.pricing-base__card {
  margin-top: 1.2rem;
  padding: 1.5rem 1.6rem;
}

.pricing-currency-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.pricing-included {
  align-items: stretch;
}

.pricing-included__placeholder {
  min-height: clamp(22rem, 34vw, 28rem);
  border: 1px dashed rgba(42, 42, 42, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 16%, rgba(116, 178, 205, 0.18), transparent 34%),
    radial-gradient(circle at 92% 84%, rgba(211, 84, 47, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(247, 243, 236, 0.86), rgba(240, 233, 224, 0.64));
  box-shadow: 0 16px 28px rgba(20, 20, 20, 0.05);
}

img.pricing-included__placeholder {
  align-self: start;
  width: 100%;
  height: clamp(21rem, 30vw, 24rem);
  border: 0;
  background: #fff;
  object-fit: cover;
  object-position: 58% 62%;
}

.pricing-addons__card {
  margin-top: 1.2rem;
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: var(--radius-lg);
}

.pricing-addons__layout {
  margin-top: 1.2rem;
}

.pricing-addons__layout .pricing-addons__card {
  margin-top: 0;
}

.pricing-addons__layout.has-selection {
  display: block;
}

.pricing-selection {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 50;
  width: min(22rem, calc(100vw - 4rem));
  max-height: calc(100vh - 4rem);
  overflow: auto;
  padding: 1.25rem;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 16px 32px rgba(20, 20, 20, 0.07);
}

.pricing-selection__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.pricing-selection h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.pricing-selection__toggle {
  flex: 0 0 auto;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pricing-selection__toggle:hover,
.pricing-selection__toggle:focus-visible {
  background: rgba(255, 250, 241, 0.9);
  border-color: rgba(211, 84, 47, 0.26);
  color: var(--text);
  outline: 0;
}

.pricing-selection__group {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.pricing-selection__label {
  margin: 0 0 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-selection__line,
.pricing-selection__item {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.35;
}

.pricing-selection__line span:first-child,
.pricing-selection__item span:first-child {
  color: var(--muted);
}

.pricing-selection__line span:last-child,
.pricing-selection__item span:last-child {
  font-family: var(--font-ui);
  white-space: nowrap;
}

.pricing-selection__price {
  display: grid;
  justify-items: end;
  gap: 0.1rem;
  text-align: right;
}

.pricing-selection__price-main {
  color: var(--text);
  font-family: var(--font-ui);
}

.pricing-selection__price-approx {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.76rem;
}

.pricing-selection__addons {
  display: grid;
  gap: 0.55rem;
}

.pricing-selection__empty {
  margin: 0;
  color: rgba(98, 93, 83, 0.72);
  font-style: italic;
}

.pricing-selection__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-selection__total strong {
  display: grid;
  justify-items: end;
  gap: 0.08rem;
  color: var(--accent);
  white-space: nowrap;
}

.pricing-selection__total-main {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.pricing-selection__total-approx {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-selection__note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.pricing-selection.is-minimized {
  width: auto;
  min-width: 17rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
}

.pricing-selection.is-minimized .pricing-selection__header,
.pricing-selection.is-minimized .pricing-selection__details,
.pricing-selection.is-minimized .pricing-selection__note {
  display: none;
}

.pricing-selection.is-minimized .pricing-selection__total {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.pricing-process__copy,
.pricing-process__copy .lead {
  max-width: 50rem;
}

.pricing-shipping-note {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.pricing-shipping-note p {
  max-width: 48rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.pricing-next-step__card {
  text-align: center;
}

.pricing-next-step__card .lead {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-next-step__card .button-row {
  justify-content: center;
}

.pricing-next-step__card .button {
  min-width: 11.5rem;
}

.material-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.fabric-orbit {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 34rem;
  margin: 0 auto;
}

.fabric-orbit__center {
  position: absolute;
  inset: 50%;
  width: 38%;
  height: 38%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.fabric-orbit__center strong {
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fabric-dot {
  position: absolute;
  width: 24%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 16px 26px rgba(17, 18, 16, 0.18);
  border: 5px solid rgba(255, 250, 241, 0.8);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fabric-dot:hover {
  transform: scale(1.09);
  z-index: 4;
  box-shadow: 0 24px 38px rgba(17, 18, 16, 0.28);
}

.fabric-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fabric-dot--1 { top: 4%; left: 38%; }
.fabric-dot--2 { top: 12%; right: 10%; }
.fabric-dot--3 { top: 36%; right: 2%; }
.fabric-dot--4 { bottom: 12%; right: 10%; }
.fabric-dot--5 { bottom: 4%; left: 38%; }
.fabric-dot--6 { bottom: 12%; left: 10%; }
.fabric-dot--7 { top: 36%; left: 2%; }
.fabric-dot--8 { top: 12%; left: 10%; }
.fabric-dot--9 { top: 24%; left: 24%; }
.fabric-dot--10 { top: 24%; right: 24%; }
.fabric-dot--11 { bottom: 24%; right: 24%; }
.fabric-dot--12 { bottom: 24%; left: 24%; }

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.swatch-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.swatch-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-link {
  color: var(--accent-cool);
  word-break: break-word;
}

.contact-include__prompt {
  max-width: 50rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
}

.contact-include .list-clean {
  max-width: 50rem;
  margin-top: 1rem;
}

.text-block {
  font-size: 1.03rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  padding: 2rem 0 2.5rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 5.75rem;
}

.site-footer__brand {
  justify-self: start;
}

.footer-center {
  justify-self: center;
}

.footer-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  text-align: center;
}

.footer-follow .socials {
  justify-content: center;
}

.footer-follow__label {
  margin: 0 0 0.75rem;
  font-family: var(--font-ui);
  font-size: 1.12rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-meta {
  justify-self: end;
  text-align: right;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-meta__links {
  margin-top: 0.3rem;
}

.footer-meta__links a {
  color: var(--muted);
  cursor: pointer;
  display: inline-block;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: color 180ms ease, opacity 180ms ease, text-decoration-color 180ms ease, transform 180ms ease;
}

.footer-meta__links a:hover,
.footer-meta__links a:focus,
.footer-meta__links a:focus-visible,
.footer-meta__links a.is-active {
  color: var(--text);
}

.footer-meta__links a:hover,
.footer-meta__links a:focus,
.footer-meta__links a:focus-visible {
  text-decoration-color: currentColor;
  transform: translateY(-1px);
}

.footer-meta__links a:focus,
.footer-meta__links a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.2em;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav__links,
  .site-nav__socials {
    display: none;
  }

  .site-nav.is-open .site-nav__links,
  .site-nav.is-open .site-nav__socials {
    display: flex;
  }

  .site-nav.is-open .site-nav__links {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    width: min(22rem, calc(100vw - 2rem));
    gap: 0.2rem;
    padding: 0.95rem;
    border-radius: 24px;
    border: 1px solid rgba(20, 20, 20, 0.12);
    background: rgba(255, 250, 241, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open .site-nav__socials {
    position: static;
    justify-content: center;
    width: 100%;
    margin-top: 0.45rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(20, 20, 20, 0.08);
  }

  .alpha-section {
    height: 32rem;
  }

  .alpha-section__content {
    max-width: 30rem;
  }

  .home-alpha-section .alpha-section__content {
    max-width: min(34rem, 58%);
  }

  .alpha-section__floating-media {
    top: 1.35rem;
    right: 1.35rem;
    bottom: 1.35rem;
    height: auto;
  }

  .section--split,
  .grid-2,
  .grid-3,
  .feature-grid,
  .contact-grid,
  .material-hero,
  .gallery-card,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .custom-page__process-intro .intro-visual,
  .custom-page__ideas .intro-visual {
    padding-block: 0;
  }

  .custom-page__process-intro .intro-visual__photo,
  .custom-page__ideas .intro-visual__photo {
    width: 100%;
    height: clamp(18rem, 72vw, 24rem);
    aspect-ratio: auto;
  }

  .custom-page__process-intro .intro-visual__photo .hero__placeholder,
  .custom-page__ideas .intro-visual__photo .hero__placeholder {
    border: 1px dashed rgba(42, 42, 42, 0.2);
  }

  .custom-page__process-intro .intro-visual__photo {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .gallery-card__thumbs {
    padding: 0.6rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-build-grid {
    grid-template-columns: 1fr;
  }

  .gallery-build-card__collage {
    min-height: 18rem;
  }

  .gallery-cta__card {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-cta__card .button-row {
    width: 100%;
  }

  .pricing-addons__layout.has-selection {
    display: block;
    min-height: auto;
  }

  .pricing-selection {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    max-height: none;
    overflow: visible;
    margin-top: 0;
    padding: 0.8rem 1rem;
    border-radius: 999px;
  }

  body.has-pricing-selection {
    padding-bottom: 6.5rem;
  }

  .pricing-selection.is-minimized {
    min-width: 0;
  }

  .pricing-selection__header,
  .pricing-selection__details,
  .pricing-selection__note {
    display: none;
  }

  .pricing-selection__total {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

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

  .about-story__visual {
    transform: none;
  }

  .about-story__title span {
    white-space: normal;
  }

  .site-footer__brand,
  .footer-meta {
    justify-self: start;
    text-align: left;
  }

  .footer-center {
    justify-self: start;
  }

  .footer-follow {
    width: auto;
    align-items: flex-start;
    text-align: left;
  }

  .footer-follow .socials {
    display: flex;
    justify-content: flex-start;
  }

  .quote-card--over-photo {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -2rem 0 0;
  }

  .alpha-section {
    height: auto;
    padding-bottom: 6rem;
  }

  .home-alpha-section {
    padding-bottom: 0;
  }

  .home-alpha-section::before {
    background-position: 78% center;
    background-size: cover;
    opacity: 0.9;
  }

  .home-alpha-section .alpha-section__overlay {
    background:
      linear-gradient(180deg, rgba(32, 28, 25, 0.9) 0%, rgba(36, 31, 27, 0.78) 48%, rgba(49, 41, 36, 0.42) 100%),
      linear-gradient(90deg, rgba(32, 28, 25, 0.86) 0%, rgba(44, 37, 32, 0.7) 46%, rgba(48, 40, 34, 0.22) 100%);
  }

  .alpha-section__content {
    height: auto;
    max-width: none;
  }

  .home-alpha-section .alpha-section__content {
    max-width: none;
    padding-bottom: 1rem;
  }

  .home-alpha-section .alpha-section__title span {
    white-space: normal;
  }

  .alpha-section__floating-media {
    top: auto;
    right: 1.2rem;
    bottom: 1.2rem;
    height: min(44vw, 13rem);
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    min-height: 84px;
  }

  .hero {
    min-height: 32rem;
  }

  .materials-page__hero {
    min-height: clamp(18rem, 66vw, 21rem);
  }

  .materials-page__hero-title span,
  .materials-page__hero-copy span {
    white-space: normal;
  }

  .hero__content,
  .section--dark {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .home-page__hero .hero__media img {
    object-position: 82% center;
  }

  .custom-page__hero .hero__media img {
    object-position: 50% 54%;
  }

  .materials-page__hero .hero__media img {
    object-position: 49% 48%;
    transform: scale(1.36);
  }

  .custom-page__base-build {
    min-height: auto;
    padding-bottom: 0;
  }

  .custom-page__base-build .alpha-section__media img {
    object-position: 66% center;
  }

  .custom-page__ideas .intro-visual__photo .custom-ideas-visual {
    object-position: 45% 12%;
  }

  .custom-page__base-build-content {
    padding-bottom: 2rem;
  }

  .gallery-cta__card .button--ghost {
    text-align: center;
  }

  .gallery-lightbox {
    padding: 0.8rem;
  }

  .gallery-lightbox__dialog {
    max-height: 94vh;
  }

  .gallery-lightbox__image {
    max-height: calc(94vh - 7rem);
    border-radius: 0.8rem;
  }

  .gallery-lightbox__button {
    min-width: 3rem;
    min-height: 3rem;
  }

  .gallery-lightbox__nav {
    background: rgba(20, 20, 20, 0.46);
  }

  .pricing-page .page-title {
    font-size: 1.9rem;
    line-height: 1.07;
  }

  .legal-page__intro {
    flex-direction: column;
    gap: 1.1rem;
  }

  .legal-page__switch {
    margin-top: 0;
  }

  .button,
  .site-nav__links a {
    width: 100%;
    justify-content: center;
  }

  .feature-grid,
  .swatch-grid {
    grid-template-columns: 1fr;
  }

  .fabric-orbit {
    max-width: 24rem;
  }

  .pricing-row,
  .addon-row,
  .pricing-selection__line,
  .pricing-selection__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .price,
  .pricing-selection__price {
    justify-items: start;
    text-align: left;
  }

  .pricing-selection__total {
    align-items: center;
    flex-direction: row;
    gap: 0.75rem;
  }

  .pricing-base__card,
  .pricing-addons__card {
    padding: 1.15rem;
  }
}

@media (max-width: 380px) {
  .pricing-page .page-title {
    font-size: 1.74rem;
    line-height: 1.08;
  }
}
