:root {
  --ember: #f06b1a;
  --ember-dark: #b73c0c;
  --coal: #14110f;
  --char: #25201c;
  --cream: #fff4df;
  --ash: #f3f0eb;
  --smoke: #d9d2c8;
  --wood: #9b6432;
  --text: #241b16;
  --muted: #6f6258;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ash);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  transition: background 180ms ease, color 180ms ease;
}

body.theme-dark {
  --ash: #14110f;
  --cream: #fff4df;
  --text: #fff4df;
  --muted: #d8c9b8;
  --smoke: #332a24;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(20, 17, 15, 0.92);
  color: var(--cream);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 244, 223, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  background: rgba(255, 244, 223, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.language-control span {
  color: rgba(255, 244, 223, 0.78);
}

.language-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.18rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.language-select {
  min-width: 62px;
  height: 32px;
  padding: 0 28px 0 10px;
  background: #211813;
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.2);
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.language-select:focus-visible {
  outline: 3px solid rgba(240, 107, 26, 0.5);
  outline-offset: 2px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  background: rgba(255, 244, 223, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.24);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link:hover {
  background: #1877f2;
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

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

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 244, 223, 0.82);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a,
.header-cta,
.button {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.nav a:hover {
  color: white;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--ember);
  color: #160d08;
  box-shadow: 0 10px 24px rgba(240, 107, 26, 0.3);
}

.button.secondary {
  background: rgba(255, 244, 223, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.28);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 244, 223, 0.1);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.24);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 244, 223, 0.18);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100svh - 132px));
  padding: clamp(52px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.9), rgba(20, 17, 15, 0.62) 38%, rgba(20, 17, 15, 0.16) 70%),
    linear-gradient(180deg, rgba(20, 17, 15, 0.12), rgba(20, 17, 15, 0.46)),
    url("assets/hero-background.png") center / cover no-repeat,
    var(--coal);
  color: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 244, 223, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

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

.section,
.work-proof,
.products,
.store,
.gallery,
.process,
.process-strip,
.info-band,
.contact {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 70px);
  padding: clamp(54px, 8vw, 90px) 0;
  align-items: center;
}

.process-copy p,
.work-proof-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-panel {
  padding: clamp(22px, 4vw, 32px);
  background: #fffaf0;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 27, 22, 0.08);
}

body.theme-dark .intro-panel {
  background: linear-gradient(135deg, rgba(33, 27, 23, 0.98), rgba(24, 19, 16, 0.98));
  border-color: rgba(255, 244, 223, 0.2);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 244, 223, 0.08);
}

.intro-panel h3 {
  margin-bottom: 16px;
}

.intro-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.intro-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 800;
}

.intro-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 9px;
  height: 9px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 107, 26, 0.16);
}

.work-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(135deg, #211b17, #14110f);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.18);
  border-radius: 8px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 244, 223, 0.08);
}

.work-proof-copy p {
  color: rgba(255, 244, 223, 0.76);
}

.work-proof-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 244, 223, 0.28);
  background: #080706;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(240, 107, 26, 0.08);
}

.work-proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.08), rgba(20, 17, 15, 0.3));
  pointer-events: none;
}

.work-proof-media video,
.work-proof-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.12) saturate(0.92) brightness(0.86);
}

.work-proof-media video {
  display: block;
}

.products {
  padding: clamp(40px, 7vw, 84px) 0;
}

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

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

.product-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: #fffaf0;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 27, 22, 0.08);
}

body.theme-dark .product-card,
body.theme-dark .store-card,
body.theme-dark .request-form {
  background: #211b17;
  border-color: rgba(255, 244, 223, 0.2);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 244, 223, 0.06);
}

.product-card p {
  color: var(--muted);
}

.product-card a,
.product-card button {
  margin-top: auto;
  color: var(--ember-dark);
  font-weight: 900;
}

.product-card button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

body.theme-dark .product-card button,
body.theme-dark .product-card a {
  color: var(--ember);
}

.product-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: rgba(240, 107, 26, 0.12);
  color: var(--ember-dark);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store {
  padding: clamp(42px, 7vw, 84px) 0;
  border-top: 1px solid rgba(36, 27, 22, 0.12);
}

body.theme-dark .store,
body.theme-dark .gallery,
body.theme-dark .process {
  border-top-color: rgba(255, 244, 223, 0.18);
}

.store-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 30px;
}

.store-heading .section-heading {
  margin-bottom: 0;
}

.store-note {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: #fffaf0;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(36, 27, 22, 0.08);
}

body.theme-dark .store-note {
  background: #211b17;
  border-color: rgba(255, 244, 223, 0.2);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 244, 223, 0.06);
}

.store-note strong {
  color: var(--ember-dark);
  font-size: 1rem;
  text-transform: uppercase;
}

body.theme-dark .store-note strong {
  color: var(--ember);
}

.store-note span {
  color: var(--muted);
  font-weight: 800;
}

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

.store-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 330px;
  background: #fffaf0;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 27, 22, 0.08);
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.store-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.store-card p {
  color: var(--muted);
}

.store-card dl {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 4px 0 22px;
}

.store-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(36, 27, 22, 0.12);
}

body.theme-dark .store-card dl div {
  border-bottom-color: rgba(255, 244, 223, 0.14);
}

.store-card dt {
  color: var(--muted);
  font-weight: 800;
}

.store-card dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.store-card .button {
  width: 100%;
  margin-top: auto;
  border: 0;
  font-family: inherit;
}

.product-open {
  cursor: pointer;
}

.gallery {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
  padding: clamp(36px, 7vw, 86px) 0;
  border-top: 1px solid rgba(36, 27, 22, 0.12);
}

.section-heading p:not(.section-kicker) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 18px 0 30px;
  padding: clamp(20px, 4vw, 28px);
  background:
    linear-gradient(135deg, rgba(20, 17, 15, 0.94), rgba(68, 36, 20, 0.9)),
    url("assets/gallery/production-video-poster.jpg") center / cover no-repeat;
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.18);
  border-radius: 8px;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 244, 223, 0.07);
}

.gallery-cta h3 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.gallery-more {
  margin-top: clamp(26px, 5vw, 46px);
}

.gallery-more-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

.gallery-more-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.secondary-gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 170px;
}

.secondary-gallery-grid .gallery-item:nth-child(9n + 1),
.secondary-gallery-grid .gallery-item:nth-child(9n + 7) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 0;
  background: var(--char);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 27, 22, 0.1);
}

.gallery-open {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  color: inherit;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

body.theme-dark .gallery-item,
body.theme-dark .process-feature,
body.theme-dark .process-strip figure,
body.theme-dark .steps li,
body.theme-dark .info-band {
  border: 1px solid rgba(255, 244, 223, 0.18);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 244, 223, 0.06);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 17, 15, 0.72));
  pointer-events: none;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.035);
}

.gallery-open > span:not(.play-badge),
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--cream);
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.play-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding-left: 3px;
  background: var(--ember);
  color: #1d1009;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  font-size: 1rem;
  line-height: 1;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(56px, 8vw, 92px) 0 clamp(24px, 4vw, 46px);
  border-top: 1px solid rgba(36, 27, 22, 0.12);
}

.process-feature {
  position: relative;
  overflow: hidden;
  margin: clamp(22px, 4vw, 34px) 0 0;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  background: var(--char);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(36, 27, 22, 0.12);
}

.process-feature img,
.steps img,
.process-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-feature::after,
.process-strip figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(20, 17, 15, 0.72));
  pointer-events: none;
}

.process-feature figcaption,
.process-strip figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  color: var(--cream);
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

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

.steps li {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  min-height: 150px;
  background: var(--char);
  color: var(--cream);
  border-radius: 8px;
}

.steps img {
  min-height: 150px;
  filter: saturate(0.92) contrast(1.05);
}

.step-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 22px 22px 66px;
}

.step-number {
  position: absolute;
  left: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--ember);
  color: #1d1009;
  border-radius: 50%;
  font-weight: 900;
  transform: translateY(-50%);
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: rgba(255, 244, 223, 0.72);
}

.steps .step-number {
  display: grid;
  place-items: center;
  color: #1d1009;
  line-height: 1;
}

.process-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
  padding-bottom: clamp(34px, 6vw, 64px);
}

.process-strip figure {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  background: var(--char);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 27, 22, 0.1);
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(36px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(20, 17, 15, 0.96), rgba(73, 37, 19, 0.88)),
    url("assets/process/packed-bags.jpg") center / cover no-repeat,
    var(--coal);
  color: var(--cream);
  border-radius: 8px;
}

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

.info-list p {
  min-height: 56px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 244, 223, 0.08);
  border: 1px solid rgba(255, 244, 223, 0.14);
  border-radius: 6px;
  color: rgba(255, 244, 223, 0.86);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: start;
  gap: 28px;
  padding: clamp(58px, 8vw, 96px) 0;
}

.contact-copy {
  max-width: 720px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  max-width: 520px;
  margin-top: 24px;
}

.company-card {
  max-width: 640px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 250, 240, 0.74);
  border: 1px solid rgba(36, 27, 22, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(36, 27, 22, 0.08);
}

.company-card-title {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.company-card dl div {
  display: grid;
  grid-template-columns: minmax(92px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(36, 27, 22, 0.11);
}

.company-card dl div:first-child {
  border-top: 0;
  padding-top: 0;
}

.company-card dl div:last-child {
  padding-bottom: 0;
}

.company-card dt,
.company-card dd {
  margin: 0;
}

.company-card dt {
  color: rgba(36, 27, 22, 0.58);
  font-size: 0.84rem;
  font-weight: 900;
}

.company-card dd {
  color: var(--text);
  font-weight: 850;
  line-height: 1.42;
}

body.theme-dark .company-card {
  background: linear-gradient(145deg, rgba(33, 27, 23, 0.94), rgba(50, 31, 22, 0.8));
  border-color: rgba(255, 244, 223, 0.24);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 244, 223, 0.07);
}

body.theme-dark .company-card dl div {
  border-top-color: rgba(255, 244, 223, 0.14);
}

body.theme-dark .company-card dt {
  color: rgba(255, 244, 223, 0.62);
}

body.theme-dark .company-card dd {
  color: var(--cream);
}

.button.secondary.dark {
  background: var(--char);
  color: var(--cream);
  border-color: rgba(36, 27, 22, 0.18);
  box-shadow: none;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  background: #fffaf0;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 27, 22, 0.08);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

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

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  background: white;
  color: #241b16;
  border: 1px solid rgba(36, 27, 22, 0.18);
  border-radius: 6px;
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-note a {
  color: var(--ember-dark);
  font-weight: 900;
}

body.theme-dark .form-note a {
  color: var(--ember);
}

body.theme-dark .request-form input,
body.theme-dark .request-form select,
body.theme-dark .request-form textarea {
  background: #15110f;
  color: var(--cream);
  border-color: rgba(255, 244, 223, 0.26);
}

.request-form button {
  border: 0;
  font-family: inherit;
}

.modal-open {
  overflow: hidden;
}

.product-modal,
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(20, 17, 15, 0.78);
  opacity: 1;
  visibility: visible;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.product-modal[aria-hidden="true"],
.gallery-modal[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-modal-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  width: min(1040px, 100%);
  height: min(760px, calc(100dvh - 40px));
  max-height: calc(100dvh - 40px);
  background: var(--ash);
  color: var(--text);
  border: 1px solid rgba(255, 244, 223, 0.26);
  border-radius: 8px;
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 244, 223, 0.08);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(20, 17, 15, 0.72);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.modal-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 0;
  padding: 14px;
  background: var(--coal);
}

.modal-feature-wrap {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 8px;
}

.modal-feature-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.modal-image-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(20, 17, 15, 0.72);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.28);
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.modal-image-prev {
  left: 12px;
}

.modal-image-next {
  right: 12px;
}

.modal-image-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  background: rgba(20, 17, 15, 0.74);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

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

.modal-thumb {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.modal-thumb.active {
  border-color: var(--ember);
}

.modal-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.modal-copy {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.modal-copy::-webkit-scrollbar {
  width: 10px;
}

.modal-copy::-webkit-scrollbar-track {
  background: rgba(255, 244, 223, 0.06);
}

.modal-copy::-webkit-scrollbar-thumb {
  background: rgba(240, 107, 26, 0.7);
  border-radius: 999px;
}

.modal-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.modal-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.modal-facts li {
  padding: 13px 14px;
  background: rgba(240, 107, 26, 0.1);
  border: 1px solid rgba(240, 107, 26, 0.18);
  border-radius: 6px;
  font-weight: 800;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-actions button {
  border: 0;
  font-family: inherit;
}

.gallery-modal-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1120px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  background: var(--coal);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.26);
  border-radius: 8px;
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 244, 223, 0.08);
}

.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(20, 17, 15, 0.72);
  color: var(--cream);
  border: 1px solid rgba(255, 244, 223, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-modal-media {
  display: grid;
  place-items: center;
  min-height: min(68vh, 680px);
  padding: clamp(14px, 3vw, 24px);
  background: #090807;
}

.gallery-modal-media img,
.gallery-modal-media video {
  display: block;
  max-width: 100%;
  max-height: min(68vh, 680px);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.gallery-modal-media video {
  width: auto;
}

.gallery-modal-caption {
  padding: 20px clamp(20px, 4vw, 34px) 24px;
  border-top: 1px solid rgba(255, 244, 223, 0.14);
}

.gallery-modal-caption h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.gallery-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 107, 26, 0.13), transparent 34rem),
    var(--ash);
}

.gallery-page-header {
  position: sticky;
}

.extra-gallery-hero,
.extra-gallery-section,
.legal-hero,
.legal-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.extra-gallery-hero,
.legal-hero {
  padding: clamp(42px, 8vw, 84px) 0 clamp(28px, 5vw, 50px);
}

.extra-gallery-hero .button {
  width: fit-content;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.extra-gallery-hero h1 {
  max-width: 980px;
}

.legal-hero .button {
  width: fit-content;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.legal-hero h1 {
  max-width: 980px;
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 850;
}

.legal-content {
  display: grid;
  gap: 16px;
  padding-bottom: clamp(52px, 8vw, 90px);
}

.legal-content article {
  padding: clamp(20px, 4vw, 30px);
  background: #fffaf0;
  border: 1px solid rgba(36, 27, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 27, 22, 0.08);
}

body.theme-dark .legal-content article {
  background: #211b17;
  border-color: rgba(255, 244, 223, 0.18);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 244, 223, 0.06);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.28rem, 2.4vw, 1.8rem);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content a,
.site-footer a {
  color: var(--ember-dark);
  font-weight: 900;
}

body.theme-dark .legal-content a,
body.theme-dark .site-footer a {
  color: var(--ember);
}

.extra-gallery-section {
  padding-bottom: clamp(52px, 8vw, 90px);
}

.extra-gallery-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.extra-gallery-toolbar h2 {
  margin-bottom: 0;
}

.extra-gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 180px;
}

.extra-gallery-grid .gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  background: rgba(255, 244, 223, 0.06);
  border: 1px solid rgba(255, 244, 223, 0.16);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--coal);
  color: rgba(255, 244, 223, 0.76);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.footer-social-link {
  width: auto;
  min-height: 38px;
  height: 38px;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .intro,
  .process,
  .process-strip,
  .work-proof,
  .info-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    background-position: 58% center;
  }

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

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

  .store-grid,
  .store-heading,
  .gallery-cta,
  .contact {
    grid-template-columns: 1fr;
  }

  .store-card {
    grid-template-rows: 260px 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .secondary-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

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

  .extra-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .extra-gallery-grid .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .secondary-gallery-grid .gallery-item:nth-child(9n + 1),
  .secondary-gallery-grid .gallery-item:nth-child(9n + 7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .process-feature {
    aspect-ratio: 16 / 10;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }

  .company-card {
    max-width: none;
  }

  .product-modal-panel {
    grid-template-columns: 1fr;
    height: auto;
    overflow-y: auto;
  }

  .modal-gallery {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  main,
  .site-header,
  .site-footer,
  .section,
  .work-proof,
  .store,
  .gallery,
  .process,
  .process-strip,
  .info-band,
  .contact,
  .extra-gallery-hero,
  .extra-gallery-section,
  .legal-hero,
  .legal-content {
    max-width: 100%;
    overflow-x: clip;
  }

  body.has-mobile-contact {
    padding-bottom: 64px;
  }

  .site-header {
    position: sticky;
    top: 0;
    gap: 10px;
    min-height: 62px;
    padding: 9px 12px;
  }

  .brand {
    width: 56px;
    min-width: 56px;
  }

  .nav {
    gap: 8px;
    max-width: 100%;
    padding: 2px 0 6px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 12px;
    background: rgba(255, 244, 223, 0.08);
    border: 1px solid rgba(255, 244, 223, 0.14);
    border-radius: 999px;
    scroll-snap-align: start;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .header-cta {
    display: none;
  }

  .social-link,
  .theme-toggle {
    width: 38px;
    height: 38px;
  }

  .language-control {
    gap: 5px;
    min-height: 38px;
    padding: 0 7px;
  }

  .language-select {
    min-width: 56px;
    height: 29px;
    padding-left: 8px;
    padding-right: 22px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 0.96;
  }

  .hero-copy .lead {
    font-size: clamp(1rem, 4.7vw, 1.18rem);
  }

  .hero-actions {
    gap: 10px;
  }

  .store-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 8px;
  }

  .store-card-body {
    padding: 20px;
  }

  .store-card h3 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .store-card p {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .store-card dl div {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: flex-start;
    gap: 12px;
  }

  .store-card dt,
  .store-card dd {
    max-width: none;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .gallery-grid,
  .extra-gallery-grid {
    gap: 10px;
  }

  .gallery-item button {
    min-height: 100%;
  }

  .contact-actions .button,
  .request-form .button,
  .store-card .button,
  .modal-actions .button {
    min-height: 50px;
  }

  .contact {
    display: flex;
    flex-direction: column;
  }

  .contact-copy {
    display: contents;
  }

  .contact-copy > .section-kicker {
    order: 1;
  }

  .contact-copy > h2 {
    order: 2;
  }

  .contact-copy > p {
    order: 3;
  }

  .contact-actions {
    order: 4;
  }

  .request-form {
    order: 5;
  }

  .company-card {
    order: 6;
    margin-top: 8px;
  }

  .request-form input,
  .request-form select,
  .request-form textarea {
    min-height: 50px;
    font-size: 1rem;
  }

  .product-modal-panel {
    width: min(100%, calc(100dvw - 16px));
    max-width: calc(100dvw - 16px);
    border-radius: 10px;
  }

  .modal-close,
  .gallery-modal-close {
    width: 46px;
    height: 46px;
  }

  .modal-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .mobile-contact-bar {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 8px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    width: calc(100dvw - 16px);
    max-width: 420px;
    padding: 6px;
    background: rgba(20, 17, 15, 0.92);
    border: 1px solid rgba(255, 244, 223, 0.18);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
  }

  .modal-open .mobile-contact-bar {
    display: none;
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 40px;
    padding: 0 4px;
    background: rgba(255, 244, 223, 0.1);
    color: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    font-size: clamp(0.78rem, 3.7vw, 0.9rem);
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-contact-bar a:last-child {
    background: var(--ember);
    color: #160d08;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-social-link {
    width: fit-content;
    max-width: 100%;
  }

  .site-footer a:not(.footer-social-link) {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 9px 12px;
  }

  .brand {
    width: 56px;
  }

  .header-cta {
    display: none;
    min-height: 40px;
    padding: 0 14px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .language-control {
    min-height: 40px;
    padding: 0 8px;
  }

  .language-control > span:first-child {
    display: none;
  }

  .hero {
    padding: 42px 20px 54px;
    min-height: 560px;
    background-position: 62% center;
  }

  .button {
    width: 100%;
  }

  .section,
  .work-proof,
  .products,
  .store,
  .gallery,
  .process,
  .process-strip,
  .info-band,
  .contact,
  .extra-gallery-hero,
  .extra-gallery-section,
  .legal-hero,
  .legal-content {
    width: min(100% - 32px, var(--max));
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .store-card {
    grid-template-rows: auto 1fr;
  }

  .store-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .product-modal {
    padding: 10px;
    place-items: stretch;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .product-modal-panel {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 20px);
    overflow-x: hidden;
  }

  .modal-gallery {
    min-height: 0;
    gap: 8px;
    padding: 8px;
  }

  .modal-feature-wrap img {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 38dvh;
    object-fit: contain;
    background: #080604;
  }

  .modal-thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .modal-thumb {
    flex: 0 0 74px;
    scroll-snap-align: start;
  }

  .modal-thumb img {
    aspect-ratio: 1 / 1;
  }

  .modal-image-nav {
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .modal-copy {
    overflow: visible;
    padding: 22px 16px;
    padding-bottom: 36px;
  }

  .modal-facts li {
    padding: 11px 12px;
    overflow-wrap: anywhere;
  }

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

  .steps img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .step-body {
    min-height: 152px;
  }

  .info-band {
    padding: 28px 18px;
  }

  .info-list {
    grid-template-columns: 1fr;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .company-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-cta {
    padding: 20px;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: span 1;
  }

  .steps li {
    padding-right: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px 92px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
