:root {
  --paper: #f4f1ed;
  --paper-2: #ded6ce;
  --white: #fcfaf7;
  --ink: #1f1c19;
  --ink-soft: #39332e;
  --muted: #706962;
  --line: #d1c8bf;
  --accent: #7d5e45;
  --accent-soft: #ded0c3;
  --dark: #292521;
  --danger: #8c3b33;
  --max: 1400px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 18px 48px rgba(31, 28, 25, .12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: 72px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

/* Explicit framework placeholders. Remove placeholder-mode when client assets arrive. */
.placeholder-mode .image-tile,
.placeholder-mode .media-frame,
.placeholder-mode .case-hero {
  background: #b9aa9d;
}

.placeholder-mode .hero-media {
  background: #78695e;
}

.placeholder-mode .project-mosaic .image-tile:nth-child(3n),
.placeholder-mode .product-card:nth-child(3n) .media-frame,
.placeholder-mode .case-images .media-frame:nth-child(2n) {
  background: #8f7d6f;
}

.placeholder-mode .project-mosaic .image-tile:nth-child(4n),
.placeholder-mode .product-card:nth-child(4n) .media-frame {
  background: #d8cec5;
}

.placeholder-mode .hero-media img,
.placeholder-mode .image-tile img,
.placeholder-mode .media-frame img,
.placeholder-mode .case-hero img {
  opacity: 0;
}

.placeholder-mode .hero-media::before,
.placeholder-mode .image-tile::before,
.placeholder-mode .media-frame::before,
.placeholder-mode .case-hero::before {
  content: "IMAGE PLACEHOLDER";
  position: absolute;
  z-index: 3;
  top: auto;
  bottom: 18px;
  left: 18px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: rgba(44, 37, 32, .62);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  transform: none;
}

.placeholder-mode .hero-media::before {
  top: auto;
  right: 30px;
  bottom: 28px;
  left: auto;
  color: rgba(255, 255, 255, .72);
}

.placeholder-mode .hero-media::after {
  z-index: 1;
}

.placeholder-mode .brand,
.placeholder-mode .footer-brand {
  font-size: 0;
}

.placeholder-mode .brand::before,
.placeholder-mode .footer-brand::before {
  content: "Brand Name";
  font-size: 24px;
  font-weight: 650;
}

.placeholder-mode .footer-brand::before {
  font-size: 30px;
}

.placeholder-mode .brand small {
  font-size: 0;
}

.placeholder-mode .brand small::before {
  content: "Tagline placeholder";
  font-size: 9px;
}

.placeholder-mode .footer-note {
  font-size: 0;
}

.placeholder-mode .footer-note::before {
  content: "Footer brand description placeholder.";
  font-size: 13px;
}

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

button,
input,
select,
textarea {
  border-radius: 0;
  color: inherit;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.shell {
  width: min(var(--max), calc(100% - 128px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  min-height: 72px;
  border-bottom: 1px solid rgba(209, 200, 191, .7);
  background: rgba(244, 241, 237, .94);
  transition: min-height .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: rgba(209, 200, 191, .82);
  background: rgba(244, 241, 237, .88);
  box-shadow: 0 8px 26px rgba(31, 28, 25, .06);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 52px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav,
.utility-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav {
  position: relative;
  justify-content: center;
  --nav-line-left: 0px;
  --nav-line-width: 0px;
}

.utility-nav {
  justify-content: flex-end;
  position: relative;
  --utility-line-left: 0px;
  --utility-line-width: 0px;
}

.nav-link,
.utility-link {
  position: relative;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.utility-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-nav::after {
  content: "";
  position: absolute;
  left: var(--utility-line-left);
  bottom: 2px;
  width: var(--utility-line-width);
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.82);
  transform-origin: center;
  transition:
    left .34s cubic-bezier(.22, 1, .36, 1),
    width .34s cubic-bezier(.22, 1, .36, 1),
    opacity .18s var(--ease),
    transform .34s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.desktop-nav::after {
  content: "";
  position: absolute;
  left: var(--nav-line-left);
  bottom: 2px;
  width: var(--nav-line-width);
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.82);
  transform-origin: center;
  transition:
    left .34s cubic-bezier(.22, 1, .36, 1),
    width .34s cubic-bezier(.22, 1, .36, 1),
    opacity .18s var(--ease),
    transform .34s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.desktop-nav.has-indicator::after {
  opacity: 1;
  transform: scaleX(1);
}

.utility-nav.has-indicator::after {
  opacity: 1;
  transform: scaleX(1);
}

.cart-count {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 0;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 850;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 45;
  padding: 34px 24px 42px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity .28s var(--ease), transform .35s var(--ease);
}

.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
}

.eyebrow {
  display: block;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 400;
}

.display-title {
  margin: 20px 0 28px;
  font-size: clamp(56px, 5.5vw, 80px);
  line-height: .98;
}

.section-title {
  margin: 14px 0 0;
  font-size: clamp(40px, 4vw, 54px);
  line-height: 1.04;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 28, 25, .14);
}

.btn:active {
  transform: translateY(1px) scale(.985);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn-wide {
  width: 100%;
}

.text-link {
  min-height: 0;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.text-link span {
  transition: transform .25s var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 25, 21, .24);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-settle 1.4s var(--ease) forwards;
}

@keyframes hero-settle {
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 128px));
  margin: 0 auto;
  padding: 120px 0 clamp(64px, 8vw, 108px);
}

.hero .display-title {
  max-width: 680px;
}

.hero .eyebrow {
  color: #ead8c8;
}

.hero-copy {
  max-width: 430px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.72;
}

.page-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  align-items: end;
  gap: 80px;
}

.page-hero .display-title {
  max-width: 820px;
}

.section {
  padding: 112px 0;
}

.section-compact {
  padding: 78px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-white {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-head .section-title {
  max-width: 760px;
}

.project-mosaic {
  display: grid;
  grid-template-columns: .82fr 1.06fr 1.06fr;
  grid-template-rows: minmax(250px, 1fr) minmax(250px, 1fr);
  gap: 16px 20px;
  align-items: stretch;
}

.project-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 36px 44px 36px 0;
  border-top: 1px solid var(--line);
}

.project-intro h2 {
  max-width: 330px;
  margin: 22px 0 34px;
  font-family: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.06;
}

.image-tile,
.media-frame {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px rgba(31, 28, 25, .06);
}

.image-tile img,
.media-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .45s var(--ease);
}

a.image-tile:hover img,
.project-card:hover img,
.product-card:hover img {
  transform: scale(1.018);
}

a.image-tile,
.project-card {
  transition: transform .45s var(--ease);
}

a.image-tile:hover,
.project-card:hover {
  transform: translateY(-4px);
}

.image-tile-tall {
  grid-row: span 2;
}

.image-tile-wide {
  grid-column: span 2;
}

.image-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .92);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 680px;
}

.split-feature .media-frame {
  min-height: 680px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 112px);
}

.feature-copy .section-title {
  max-width: 560px;
  margin-bottom: 24px;
}

.feature-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.75;
}

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

.product-grid.compact-grid {
  max-width: 720px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
  transition: transform .45s var(--ease);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card .media-frame {
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 650;
}

.product-meta,
.price {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.price {
  margin-top: 7px;
  color: var(--ink);
  font-weight: 700;
}

.statement {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.statement-quote {
  margin: 0;
  font-family: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.06;
}

.statement-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.studio-band {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  background: var(--dark);
  color: var(--white);
}

.studio-band .feature-copy {
  min-height: 560px;
}

.studio-band .media-frame {
  min-height: 560px;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.filter-button {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.result-count {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.product-card.is-hidden {
  display: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: 70px;
  padding: 72px 0 100px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.product-gallery .media-frame {
  aspect-ratio: 4 / 5;
}

.product-gallery .media-frame:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 11;
}

.product-info {
  align-self: start;
  position: sticky;
  top: 102px;
}

.product-info h1 {
  margin: 16px 0 18px;
  font-size: 54px;
  line-height: 1;
}

.product-info .price {
  margin: 0 0 28px;
  font-size: 18px;
}

.product-info p {
  color: var(--muted);
  line-height: 1.75;
}

.option-block {
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.option-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.swatches {
  display: flex;
  gap: 12px;
}

.swatch {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  background: #d9d1c5;
  cursor: pointer;
}

.swatch:nth-child(2) { background: #8a6b55; }
.swatch:nth-child(3) { background: #302821; }

.swatch.is-active {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.accordion {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}

.accordion-item.is-open .accordion-panel {
  max-height: 180px;
  padding-bottom: 22px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 54px 22px;
}

.project-card {
  grid-column: span 6;
}

.project-card:nth-child(3n + 1) {
  grid-column: span 7;
}

.project-card:nth-child(3n + 2) {
  grid-column: span 5;
  margin-top: 72px;
}

.project-card .media-frame {
  aspect-ratio: 16 / 11;
}

.project-card h2 {
  margin: 18px 0 8px;
  font-size: 28px;
}

.project-card p {
  color: var(--muted);
  line-height: 1.6;
}

.case-hero {
  position: relative;
  overflow: hidden;
  height: 72vh;
  min-height: 600px;
}

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

.case-summary {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fact {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.fact small {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.35;
}

.case-images {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.case-images .media-frame {
  min-height: 560px;
}

.about-grid,
.contact-grid,
.account-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.about-grid .media-frame {
  min-height: 620px;
}

.about-copy {
  align-self: center;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  padding-top: 22px;
  border-top: 1px solid currentColor;
}

.value-item h3 {
  font-size: 28px;
}

.value-item p {
  color: rgba(255, 255, 255, .64);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 26px;
  align-content: start;
}

.contact-line {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-line small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .56);
  padding: 16px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

.form-field input,
.form-field select {
  height: 54px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}

.form-status {
  min-height: 22px;
  color: var(--accent);
  font-size: 12px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  gap: 70px;
  align-items: start;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item .media-frame {
  aspect-ratio: 1;
}

.cart-item h2 {
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 36px 44px 36px;
  height: 38px;
  margin-top: 14px;
  border: 1px solid var(--line);
}

.quantity-control button,
.quantity-control span {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.quantity-control button {
  cursor: pointer;
}

.cart-summary {
  position: sticky;
  top: 100px;
  padding: 30px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 17px 0;
  color: var(--muted);
}

.summary-line.total {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.empty-cart {
  padding: 70px 0;
  text-align: center;
}

.account-panel {
  padding: 38px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.account-panel .form-field {
  margin: 24px 0;
}

.account-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px;
  padding: 42px;
  background: var(--dark);
  color: var(--white);
}

.account-aside p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.newsletter h2 {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter p {
  margin: 0;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  width: min(470px, 100%);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-right: 0;
  background: transparent;
  outline: none;
}

.site-footer {
  padding: 82px 0 38px;
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 56px;
  padding-bottom: 68px;
}

.footer-brand {
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.footer-note {
  max-width: 270px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-col h3 {
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 12px 0;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .45);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: 340px;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s var(--ease), transform .3s var(--ease);
}

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .9s var(--ease);
}

.reveal.reveal-left {
  transform: translateX(-16px);
}

.reveal.reveal-right {
  transform: translateX(16px);
}

.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: .06s; }
.delay-2 { transition-delay: .12s; }
.delay-3 { transition-delay: .18s; }

@media (max-width: 1100px) {
  .shell {
    width: min(var(--max), calc(100% - 48px));
  }

  .hero-content {
    width: min(var(--max), calc(100% - 48px));
  }

  .desktop-nav {
    gap: 20px;
  }

  .utility-nav .utility-link:not(.cart-link) {
    display: none;
  }

  .display-title {
    font-size: 62px;
  }

  .project-mosaic {
    grid-template-columns: .9fr 1.1fr;
    grid-template-rows: 280px 280px 280px;
  }

  .image-tile-tall {
    grid-row: span 1;
  }

  .image-tile-wide {
    grid-column: span 1;
  }

  .split-feature,
  .studio-band,
  .product-detail,
  .about-grid,
  .contact-grid,
  .account-grid,
  .cart-layout {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .feature-copy {
    padding: 52px;
  }

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

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

@media (max-width: 820px) {
  body {
    padding-top: 64px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 64px;
  }

  .mobile-panel {
    inset: 64px 0 auto;
  }

  .reveal.reveal-left,
  .reveal.reveal-right {
    transform: translateY(14px);
  }

  .reveal.reveal-left.in-view,
  .reveal.reveal-right.in-view {
    transform: translateY(0);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
  }

  .utility-nav {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 120px 0 58px;
  }

  .display-title {
    font-size: 52px;
  }

  .section-title {
    font-size: 42px;
  }

  .page-hero-grid,
  .statement,
  .split-feature,
  .studio-band,
  .product-detail,
  .case-summary,
  .about-grid,
  .contact-grid,
  .account-grid,
  .cart-layout,
  .newsletter {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-hero {
    padding: 88px 0 56px;
  }

  .section {
    padding: 74px 0;
  }

  .project-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto repeat(3, 230px);
  }

  .project-intro {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .split-feature .media-frame,
  .studio-band .media-frame,
  .studio-band .feature-copy {
    min-height: 470px;
  }

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

  .product-info,
  .cart-summary {
    position: static;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card:nth-child(3n + 1),
  .project-card:nth-child(3n + 2) {
    grid-column: auto;
    margin-top: 0;
  }

  .case-hero {
    min-height: 480px;
    height: 62vh;
  }

  .case-images {
    grid-template-columns: 1fr;
  }

  .case-images .media-frame {
    min-height: 430px;
  }

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

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

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 32px);
  }

  .hero-content {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 21px;
  }

  .placeholder-mode .brand::before {
    font-size: 21px;
  }

  .brand small {
    display: none;
  }

  .utility-nav {
    gap: 0;
  }

  .cart-link .utility-icon,
  .cart-count {
    display: none;
  }

  .menu-toggle {
    width: 36px;
    flex-basis: 36px;
  }

  .placeholder-mode .hero-media::before {
    right: auto;
    bottom: 18px;
    left: 16px;
  }

  .display-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .section-head,
  .collection-toolbar,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(5, 260px);
  }

  .project-intro {
    grid-column: auto;
  }

  .project-intro h2 {
    font-size: 32px;
  }

  .feature-copy {
    padding: 46px 22px;
  }

  .product-grid {
    gap: 28px 12px;
  }

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

  .product-gallery .media-frame:first-child {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .product-info h1 {
    font-size: 42px;
  }

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

  .case-copy {
    font-size: 27px;
  }

  .cart-item {
    grid-template-columns: 90px 1fr;
  }

  .cart-item > .price {
    grid-column: 2;
  }

  .newsletter-form {
    display: grid;
  }

  .newsletter-form input {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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