:root {
  --ink: #102026;
  --ink-soft: #3f5155;
  --paper: #f7f3eb;
  --paper-clean: #fffdf8;
  --mist: #dfeae7;
  --sea: #0d6d76;
  --sea-deep: #073b43;
  --fern: #697a3e;
  --sun: #e4ad50;
  --coral: #b94733;
  --metal: #a9b0ad;
  --line: rgba(16, 32, 38, 0.16);
  --shadow: 0 24px 70px rgba(8, 26, 31, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 32, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper-clean), var(--paper));
  background-size: 38px 38px, auto;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open,
body.video-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper-clean);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 5vw;
  color: var(--paper-clean);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 40px rgba(15, 32, 38, 0.12);
  backdrop-filter: blur(16px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
  background: #050505;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(9, 39, 48, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(9, 36, 44, 0.18);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .site-nav,
.site-header.menu-active .site-nav {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--sun);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: relative;
}

.menu-lines::before {
  top: -7px;
}

.menu-lines::after {
  top: 5px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 118px 5vw 34px;
  overflow: hidden;
  color: var(--paper-clean);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 19, 23, 0.86) 0%, rgba(5, 28, 34, 0.55) 37%, rgba(5, 28, 34, 0.1) 72%),
    linear-gradient(0deg, rgba(6, 20, 24, 0.44), rgba(6, 20, 24, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  min-width: 0;
  padding-bottom: 40px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.workshop-section .eyebrow,
.contact-section .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: 68px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 25px;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font: inherit;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 18px 40px rgba(228, 173, 80, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f1c777;
}

.button-ghost {
  color: #fff;
  border-color: #050505;
  background: #050505;
}

.button-quiet {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.64);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--sea);
  box-shadow: 0 14px 30px rgba(13, 109, 118, 0.14);
}

.hero-promo {
  position: absolute;
  right: max(18px, 1.5vw);
  bottom: 166px;
  z-index: 3;
  width: min(380px, calc(100% - 10vw));
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--paper-clean);
  background:
    linear-gradient(145deg, rgba(7, 59, 67, 0.86), rgba(5, 28, 34, 0.72)),
    rgba(5, 28, 34, 0.76);
  box-shadow: 0 24px 70px rgba(4, 18, 22, 0.36);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.promo-ribbon {
  position: absolute;
  top: 22px;
  right: -46px;
  z-index: 1;
  width: 176px;
  padding: 7px 0;
  color: var(--paper-clean);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    var(--coral);
  box-shadow: 0 12px 30px rgba(93, 24, 18, 0.24);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(38deg);
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 5px 9px;
  border: 1px solid rgba(228, 173, 80, 0.58);
  border-radius: 6px;
  color: var(--ink);
  background: var(--sun);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-promo h2 {
  max-width: 11ch;
  font-size: 31px;
}

.promo-price {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.promo-was,
.promo-now {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
}

.promo-was span,
.promo-now span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-was del {
  color: rgba(255, 253, 248, 0.72);
  font-size: 20px;
  font-weight: 900;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
}

.promo-now {
  color: var(--ink);
  background: var(--sun);
}

.promo-now span {
  color: rgba(16, 32, 38, 0.72);
}

.promo-now strong {
  font-size: 31px;
  line-height: 1;
}

.promo-extra {
  margin: 14px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(228, 173, 80, 0.4);
  border-left: 4px solid var(--sun);
  border-radius: 8px;
  color: #fff6de;
  background: rgba(228, 173, 80, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.08);
  font-weight: 800;
  line-height: 1.45;
}

.promo-details {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.promo-details summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
}

.promo-details summary::marker {
  content: "";
}

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

.promo-details summary:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}

.promo-details summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.promo-details[open] summary::after {
  transform: rotate(225deg);
}

.promo-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 14px 14px 32px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.promo-details li::marker {
  color: var(--sun);
}

.promo-condition {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal[hidden] {
  display: none;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 22, 0.78);
  backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 56px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #041216;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.video-tour-player {
  display: block;
  width: 100%;
  max-height: calc(100vh - 56px);
  aspect-ratio: 16 / 9;
  background: #02090b;
}

.video-modal-status {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  color: var(--paper-clean);
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  color: var(--paper-clean);
  background: rgba(4, 18, 22, 0.72);
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.video-modal-close::before,
.video-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.video-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: rgba(228, 173, 80, 0.92);
  transform: translateY(-1px);
  outline: none;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1040px, 100%);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(7, 50, 58, 0.52);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 15px;
  font-weight: 900;
}

.hero-panel span {
  margin-top: 5px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.section-pad {
  padding: 96px 5vw;
}

.section-grid,
.custom-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 52px;
  align-items: center;
}

.section-copy p,
.gallery-heading p,
.custom-copy p,
.workshop-intro p,
.contact-copy p,
.design-note p {
  color: var(--ink-soft);
  font-size: 18px;
}

.image-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 18px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 3;
}

.image-stack img:last-child {
  aspect-ratio: 3 / 4;
  margin-bottom: -34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 78px;
}

.feature-card {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 44px rgba(21, 36, 39, 0.08);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  border-radius: 6px;
  color: var(--paper-clean);
  background: var(--sea);
  font-weight: 900;
  font-size: 13px;
}

.feature-card:nth-child(2) .feature-number {
  background: var(--fern);
}

.feature-card:nth-child(3) .feature-number {
  background: var(--coral);
}

.feature-card:nth-child(4) .feature-number {
  color: var(--ink);
  background: var(--sun);
}

.feature-card h3 {
  font-size: 23px;
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.gallery-section {
  background:
    linear-gradient(135deg, rgba(13, 109, 118, 0.15), rgba(228, 173, 80, 0.08)),
    var(--mist);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 36px;
}

.gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 900px) 164px;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.gallery-stage {
  position: relative;
  height: clamp(340px, 44vw, 460px);
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sea-deep);
  box-shadow: var(--shadow);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 180ms ease, transform 360ms ease;
}

.gallery-stage.is-changing img {
  opacity: 0.28;
  transform: scale(1.025);
}

.gallery-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--paper-clean);
  background: rgba(4, 24, 29, 0.72);
  backdrop-filter: blur(18px);
}

.gallery-caption p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-caption h3 {
  max-width: 760px;
  font-size: 28px;
}

.gallery-caption span {
  font-weight: 900;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: var(--paper-clean);
  background: rgba(5, 28, 34, 0.64);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 160ms ease, transform 160ms ease;
}

.gallery-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-prev {
  left: 20px;
}

.gallery-prev::before {
  transform: rotate(225deg);
}

.gallery-next {
  right: 20px;
}

.gallery-next::before {
  transform: rotate(45deg);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: var(--sea);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.gallery-controls {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
  align-self: stretch;
}

.gallery-tab {
  min-height: 86px;
  border: 1px solid rgba(16, 32, 38, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.62);
  font: 900 16px var(--font-body);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gallery-tab:hover,
.gallery-tab:focus-visible,
.gallery-tab.is-active {
  color: var(--paper-clean);
  background: var(--sea-deep);
  outline: none;
  transform: translateX(-4px);
}

.custom-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(247, 243, 235, 0.98)),
    var(--paper);
}

.choice-list,
.note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.choice-list span,
.note-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper-clean);
  font-weight: 800;
  font-size: 14px;
}

.design-board {
  display: grid;
  gap: 18px;
}

.design-board img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-clean);
  box-shadow: var(--shadow);
}

.design-note {
  padding: 24px;
  border-left: 5px solid var(--sun);
  background: rgba(255, 253, 248, 0.72);
}

.design-note strong {
  display: block;
  font-size: 18px;
}

.design-note p {
  margin: 8px 0 0;
}

.swatch-panel {
  display: grid;
  grid-template-columns: 0.7fr 220px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 64px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-clean);
  box-shadow: 0 18px 46px rgba(17, 35, 39, 0.08);
}

.swatch-panel h3 {
  font-size: 30px;
}

.swatch-panel img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

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

.swatches span {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.swatches span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.workshop-section {
  color: var(--paper-clean);
  background:
    linear-gradient(135deg, rgba(7, 59, 67, 0.96), rgba(16, 32, 38, 0.96)),
    var(--sea-deep);
}

.workshop-intro {
  width: min(760px, 100%);
}

.workshop-intro p {
  color: rgba(255, 253, 248, 0.78);
}

.workshop-details {
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.workshop-details summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  font-weight: 900;
  cursor: pointer;
}

.workshop-details summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.workshop-details[open] summary::after {
  transform: rotate(225deg);
}

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

.manufacture-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.manufacture-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.manufacture-grid figcaption {
  padding: 12px 14px;
  color: rgba(255, 253, 248, 0.86);
  font-weight: 800;
  font-size: 14px;
}

.contact-section {
  background: var(--paper-clean);
}

.contact-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 10px 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 5vw;
  color: var(--paper-clean);
  background: var(--ink);
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 26px;
}

.site-footer span {
  color: rgba(255, 253, 248, 0.74);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

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

  .gallery-shell {
    grid-template-columns: 1fr;
    max-width: 900px;
  }

  .gallery-controls {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: none;
  }

  .gallery-tab {
    min-height: 58px;
  }

  .gallery-tab:hover,
  .gallery-tab:focus-visible,
  .gallery-tab.is-active {
    transform: translateY(-2px);
  }

  .swatch-panel {
    grid-template-columns: 1fr 190px;
  }

  .swatches {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-promo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(620px, 100%);
    margin: 0 0 18px;
  }

  .hero-promo h2 {
    max-width: 16ch;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: grid;
    gap: 4px;
    padding: 10px;
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-header.menu-active .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 20px 24px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 27, 34, 0.52), rgba(5, 27, 34, 0.88)),
      linear-gradient(90deg, rgba(5, 27, 34, 0.3), rgba(5, 27, 34, 0.1));
  }

  h1 {
    max-width: 10ch;
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-content,
  .hero-promo {
    align-self: stretch;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

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

  .hero-panel {
    align-self: stretch;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-top: 4px;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
    aspect-ratio: 4 / 3;
  }

  .gallery-stage {
    height: clamp(300px, 58vw, 390px);
  }

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

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

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

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-content {
    padding-bottom: 20px;
  }

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

  .button {
    width: 100%;
  }

  .promo-price {
    grid-template-columns: 1fr;
  }

  .hero-promo h2 {
    max-width: 100%;
    font-size: 27px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal-dialog,
  .video-tour-player {
    max-height: calc(100vh - 24px);
  }

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

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

  .feature-card {
    min-height: auto;
  }

  .gallery-stage {
    height: 300px;
  }

  .gallery-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .gallery-caption h3 {
    font-size: 21px;
  }

  .gallery-arrow {
    top: 42%;
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 12px;
  }

  .gallery-next {
    right: 12px;
  }

  .design-board img {
    padding: 12px;
  }

  .site-footer {
    display: grid;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
