:root {
  --bg: #f7f4eb;
  --paper: #fffdf7;
  --ink: #191a14;
  --muted: #65675c;
  --line: #d9d4c4;
  --soft: #ece7d8;
  --sage: #d8ddc9;
  --olive: #59633e;
  --olive-dark: #29301f;
  --olive-ink: #1d2317;
  --brass: #b58a3a;
  --brass-soft: #dcc38d;
  --stone: #dfd8c8;
  --walnut: #6f4b2c;
  --radius: 8px;
  --shadow: 0 22px 52px rgba(25, 26, 20, 0.14);
  --soft-shadow: 0 14px 38px rgba(25, 26, 20, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(41, 48, 31, 0.96);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 253, 247, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(255, 253, 247, 0.78);
  text-decoration: none;
}

.nav a:hover {
  color: var(--brass-soft);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--brass);
  color: var(--olive-ink);
  border: 1px solid var(--brass);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: 58px 5vw 56px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  width: 100%;
  max-width: 650px;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--olive-ink);
}

.hero p {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions,
.article-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: rgba(255, 253, 247, 0.36);
  color: var(--olive-ink);
  border-color: var(--line);
}

.button.olive {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.button.compact {
  min-height: 44px;
  padding: 0 16px;
  font-size: 11px;
}

.button:hover,
.header-action:hover,
.product-card a:hover {
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 10px solid var(--paper);
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 253, 247, 0.72);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.note {
  border-top: 1px solid rgba(89, 99, 62, 0.28);
  padding-top: 16px;
}

.note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 112px) 5vw;
}

.section > .section-head,
.section > .grid,
.section > .product-grid,
.section > .split,
.section > .pin-grid,
.section > .room-grid,
.section > .room-layout,
.section > .pin-strip {
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
}

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

.section.dark {
  background: var(--olive-dark);
  color: #fff;
}

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

.section-head h2,
.article h1,
.page-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--olive-ink);
}

.section-head p,
.page-title p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.dark .section-head h2 {
  color: var(--paper);
}

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

.guide-card,
.product-card,
.pin-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.guide-card:hover,
.product-card:hover,
.pin-card:hover {
  border-color: rgba(181, 138, 58, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.guide-card a {
  display: grid;
  min-height: 100%;
  text-decoration: none;
}

.guide-image {
  height: 260px;
  overflow: hidden;
  background: var(--stone);
}

.guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.guide-card:hover img {
  transform: scale(1.035);
}

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

.impact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.impact-card:hover {
  border-color: rgba(181, 138, 58, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.impact-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.impact-card a::after {
  content: "Find on Amazon";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 44px);
  min-height: 44px;
  margin: 0 22px 22px;
  color: var(--paper);
  background: var(--olive-dark);
  border: 1px solid var(--olive-dark);
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(41, 48, 31, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.impact-card a:focus-visible {
  outline: 3px solid rgba(181, 138, 58, 0.32);
  outline-offset: -3px;
}

.impact-card:hover a::after,
.impact-card a:focus-visible::after {
  color: var(--olive-ink);
  background: var(--brass);
  border-color: var(--brass);
}

.impact-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.impact-card:hover img {
  transform: scale(1.035);
}

.impact-body {
  display: grid;
  align-content: start;
  padding: 22px;
}

.impact-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.impact-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.impact-proof {
  display: block;
  margin-top: 16px;
  color: var(--olive-ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.guide-body,
.product-card,
.pin-card {
  padding: 24px;
}

.label {
  display: block;
  margin-bottom: 12px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guide-card h3,
.product-card h3,
.pin-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.guide-card p,
.product-card p,
.pin-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.lab {
  background: var(--paper);
}

.product-card {
  position: relative;
  min-height: 250px;
  border-top: 4px solid var(--olive);
}

.product-card:nth-child(3n + 2) {
  border-top-color: var(--brass);
}

.product-card:nth-child(3n) {
  border-top-color: var(--walnut);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--olive-ink);
  border: 1px solid rgba(89, 99, 62, 0.34);
  background: rgba(216, 221, 201, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.transformations {
  background: var(--paper);
}

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

.transformation-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.comparison-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-labels {
  position: absolute;
  inset: 16px 16px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.comparison-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--paper);
  background: rgba(32, 35, 28, 0.72);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.transformation-body {
  padding: 24px;
}

.transformation-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.transformation-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.formula-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.formula-list li {
  position: relative;
  padding-left: 18px;
  color: var(--olive-ink);
  font-size: 14px;
  font-weight: 700;
}

.formula-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brass);
}

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

.room-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease;
}

.room-card:hover {
  transform: translateY(-2px);
  border-color: var(--brass-soft);
}

.room-card a {
  display: grid;
  min-height: 100%;
  text-decoration: none;
}

.room-card-body {
  padding: 24px;
}

.room-card-image {
  height: 220px;
  overflow: hidden;
  background: var(--sage);
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.035);
}

.room-card h3,
.look-block h3,
.room-sidebar h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.room-card h3 {
  font-size: 34px;
}

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

.room-swatch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  min-height: 160px;
  padding: 14px;
  gap: 10px;
  background: var(--sage);
}

.room-swatch span {
  display: flex;
  min-height: 76px;
  align-items: end;
  padding: 10px;
  color: var(--paper);
  background: rgba(41, 48, 31, 0.86);
  border: 1px solid rgba(255, 253, 247, 0.18);
  font-family: var(--serif);
  font-size: 18px;
}

.room-swatch.living-room {
  background: linear-gradient(135deg, #d8ddc9, #c1a673 52%, #29301f);
}

.room-swatch.bedroom {
  background: linear-gradient(135deg, #f7f4eb, #59633e 58%, #b58a3a);
}

.room-swatch.kitchen {
  background: linear-gradient(135deg, #fffdf7, #6f4b2c 54%, #191a14);
}

.room-swatch.bathroom {
  background: linear-gradient(135deg, #ece7d8, #d8ddc9 56%, #59633e);
}

.room-page {
  background: var(--paper);
}

.room-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.room-sidebar {
  position: sticky;
  top: 96px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.room-sidebar h2 {
  font-size: 46px;
  color: var(--olive-ink);
}

.room-sidebar p {
  color: var(--muted);
}

.room-quick-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.room-quick-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(89, 99, 62, 0.22);
  color: var(--muted);
  font-size: 14px;
}

.room-quick-list strong {
  color: var(--olive-ink);
}

.look-list {
  display: grid;
  gap: 22px;
}

.look-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.look-block h3 {
  font-size: 42px;
  color: var(--olive-ink);
}

.look-block p {
  color: var(--muted);
}

.look-image {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
  border: 8px solid var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(25, 26, 20, 0.12);
}

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

.style-notes {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.shop-list.compact {
  align-content: start;
  gap: 12px;
  margin-top: 0;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(236, 231, 216, 0.74));
  border: 1px solid rgba(181, 138, 58, 0.44);
  border-top: 4px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.shop-list.compact::before {
  content: "Shop this look";
  color: var(--olive-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-list.compact::after {
  content: "Amazon searches open in a new tab.";
  color: var(--muted);
  font-size: 12px;
}

.shop-list.compact .shop-link {
  padding: 14px;
  background: rgba(255, 253, 247, 0.94);
  border-color: rgba(89, 99, 62, 0.2);
}

.product-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.pin-strip .pin-card {
  min-height: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split h2 {
  margin: 0;
  color: var(--olive-ink);
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
}

.split p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  border: 10px solid var(--paper);
  box-shadow: var(--shadow);
}

.rule-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.rule-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.rule-list b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  background: var(--paper);
  color: var(--olive);
}

.rule-list span {
  color: var(--muted);
}

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

.pin-card {
  min-height: 320px;
  background: var(--paper);
  color: var(--ink);
}

.pin-preview {
  display: flex;
  align-items: end;
  min-height: 180px;
  margin: -24px -24px 20px;
  padding: 18px;
  background: var(--sage);
  border-bottom: 1px solid var(--line);
}

.pin-preview span {
  max-width: 180px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.02;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 42px 5vw;
  background: var(--olive-dark);
  color: #fff;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: end;
}

.small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.page-title {
  padding: clamp(48px, 7vw, 86px) 5vw 36px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.article {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 5vw 96px;
}

.article h1 {
  margin-bottom: 20px;
}

.article .intro {
  color: var(--muted);
  font-size: 21px;
}

.article figure {
  margin: 38px 0;
}

.article figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
}

.article h2 {
  margin-top: 44px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
}

.article h3 {
  margin-top: 28px;
  font-size: 18px;
}

.article ul {
  padding-left: 20px;
}

.article li {
  margin: 8px 0;
}

.callout {
  margin: 34px 0;
  padding: 22px;
  background: var(--soft);
  border-left: 4px solid var(--olive);
}

.shop-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.shop-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.shop-link:hover,
.shop-link:focus-visible {
  background: #fff;
  border-color: rgba(181, 138, 58, 0.68);
  box-shadow: 0 12px 28px rgba(25, 26, 20, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.shop-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(181, 138, 58, 0.25), 0 12px 28px rgba(25, 26, 20, 0.12);
}

.shop-link strong {
  display: block;
  min-width: 0;
  color: var(--olive-ink);
}

.shop-link span {
  color: var(--muted);
  font-size: 14px;
}

.shop-link em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--olive-dark);
  border: 1px solid var(--olive-dark);
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(41, 48, 31, 0.16);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.shop-link:hover em,
.shop-link:focus-visible em {
  color: var(--olive-ink);
  background: var(--brass);
  border-color: var(--brass);
}

.disclosure {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1050px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    max-height: none;
    min-height: auto;
  }

  .hero h1 {
    font-size: 72px;
  }

  .section-head h2,
  .article h1,
  .page-title h1 {
    font-size: 54px;
  }

  .split h2 {
    font-size: 50px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

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

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

  .room-layout,
  .look-block {
    grid-template-columns: 1fr;
  }

  .room-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: start;
    flex-direction: column;
    gap: 14px;
    min-height: auto;
    padding: 18px 5vw;
    position: relative;
  }

  .brand {
    font-size: 30px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    gap: 4px 8px;
    padding-bottom: 0;
    font-size: 10px;
  }

  .nav a {
    min-height: 44px;
    min-width: 44px;
  }

  .header-action {
    display: none;
  }

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

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 42px;
    line-height: 1;
  }

  .hero p {
    max-width: 340px;
    font-size: 18px;
  }

  .hero-actions {
    max-width: 340px;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .hero-media {
    border-width: 6px;
  }

  .hero-media::after {
    inset: 10px;
  }

  .hero-notes,
  .grid,
  .before-after-grid,
  .impact-grid,
  .product-grid,
  .room-grid,
  .pin-grid,
  .pin-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .section-head h2,
  .article h1,
  .page-title h1,
  .split h2 {
    font-size: 42px;
  }

  .guide-image {
    height: 220px;
  }

  .room-card-image {
    height: 240px;
  }

  .transformation-card h3 {
    font-size: 28px;
  }

  .comparison-labels {
    inset: 12px 12px auto;
  }

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

  .shop-link {
    grid-template-columns: 1fr;
  }

  .shop-link em {
    width: 100%;
  }

  .shop-list.compact {
    padding: 12px;
  }
}


/* --- Receipt: brand signature ("looks like X, costs Y") --- */
.receipt {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 3px solid #b8935a;
  padding: 10px 16px;
  margin: 18px 0 6px;
}
.receipt-looks {
  opacity: 0.65;
  text-decoration: line-through;
  text-decoration-color: #b8935a;
}
.receipt-costs {
  font-weight: 600;
  font-size: 1rem;
}
.receipt-costs em {
  font-style: normal;
  color: #96743d;
}

/* --- Hero video (desktop) / static image (mobile) --- */
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.hero-fallback { display: none; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
@media (max-width: 820px) {
  .hero-video { display: none; }
  .hero-fallback { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-fallback { display: block; }
}
