:root {
  --ink: #242122;
  --muted: #746f6d;
  --line: #e5ded8;
  --paper: #fbf8f5;
  --cream: #f2ece7;
  --stone: #b8b1ad;
  --brown: #555354;
  --orange: #c75b2a;
  --blue: #656766;
  --charcoal: #2d2b2b;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

.home-page {
  background: #faf7f2;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(20px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  position: relative;
}

.brand-logo {
  display: block;
  width: 92px;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .social-links {
  display: none;
}

.social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #1a1a1a;
  background: #ffffff;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  color: #ffffff;
  background: var(--ink);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link path {
  fill: currentColor;
  stroke: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 28px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding-block: 6px;
  transition: color 160ms ease, opacity 160ms ease;
  opacity: 0.88;
}

.site-nav a:hover {
  color: var(--orange);
  opacity: 1;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(199, 91, 42, 0.58);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--orange);
  opacity: 1;
}

.nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  color: #fff !important;
  background: var(--orange);
  border-color: #c75b2a;
  box-shadow: 0 10px 24px rgba(199, 91, 42, 0.18);
}

.nav-cta:hover {
  background: #b14f23;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  border: 1px solid rgba(36, 33, 34, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 122px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(252, 249, 244, 0.93) 0%, rgba(252, 249, 244, 0.72) 38%, rgba(252, 249, 244, 0.18) 78%),
    linear-gradient(0deg, rgba(36, 33, 34, 0.06), rgba(36, 33, 34, 0));
}

.hero-content {
  width: min(640px, 100%);
}

.home-page .hero-content h1 {
  color: var(--orange);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Infant", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 11ch;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(24px, 3.4vw, 40px);
}

h3 {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(17px, 1.45vw, 21px);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p {
  overflow-wrap: break-word;
}

.hero-content p:not(.eyebrow) {
  max-width: 34rem;
  margin: 18px 0 0;
  color: #7a7268;
  font-size: clamp(15px, 1.1vw, 16px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: "Spartan", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(199, 91, 42, 0.68);
  outline-offset: 3px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0, -10px, 0);
  }
}

.button-dark {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.button-light {
  background: rgba(255, 255, 255, 0.74);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #fffaf4;
}

.intro-strip div {
  min-height: 118px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.intro-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.section,
.portfolio,
.cta,
.videos,
.shop-look,
.reviews {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 42px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading h2 {
  max-width: 12.5ch;
  justify-self: start;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  align-self: start;
}

.section-heading.narrow {
  display: block;
  max-width: 860px;
  margin-inline: 0;
}

.section-heading.narrow .eyebrow {
  margin-bottom: 18px;
}

.section-link-row {
  display: flex;
  justify-content: flex-start;
  max-width: 1240px;
  margin: 24px auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fffaf4;
}

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-card span,
.process-list span {
  color: var(--orange);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-top: 76px;
}

.service-card p {
  margin: 18px 0 28px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.feature-card {
  background: var(--ink);
  color: #fff;
}

.feature-card p,
.feature-card span {
  color: #e5ded5;
}

.process {
  background: #efe7dc;
}

.signature-experience {
  background: #f7f0e7;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.experience-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.experience-grid span {
  color: var(--orange);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.experience-grid h3 {
  margin-top: 54px;
}

.experience-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1240px;
  background: rgba(85, 83, 84, 0.18);
}

.process-list article {
  min-height: 310px;
  padding: clamp(24px, 4vw, 40px);
  background: #f7f0e7;
}

.process-list h3 {
  margin-top: 70px;
}

.process-list p {
  margin: 18px 0 0;
  color: var(--muted);
}

.room-finder {
  background: #fffaf4;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

.room-grid a {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #ddd1c3;
}

.room-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.room-grid a:hover img {
  transform: scale(1.04);
}

.room-grid span {
  position: absolute;
  inset: auto 12px 12px;
  display: block;
  padding: 12px;
  background: rgba(251, 248, 243, 0.92);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

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

.portfolio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 34px;
}

.filter-group {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  background: #fffaf4;
}

.filter {
  min-height: 38px;
  padding: 8px 16px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.filter.is-active {
  color: #fff;
  background: var(--ink);
}

.filter:focus-visible {
  outline-offset: 1px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #ddd1c3;
  box-shadow: var(--shadow);
}

.project-card.wide {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  transition: transform 350ms ease;
}

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

.project-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(28, 25, 22, 0.82), rgba(28, 25, 22, 0));
}

.project-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

.project-card p {
  margin: 0 0 8px;
  color: #f1d7c8;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}

.project-card[hidden] {
  display: none;
}

.videos {
  background: #fffaf4;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

.video-grid-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.video-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 660px;
  background: #161412;
  object-fit: cover;
}

.video-grid div {
  padding: 22px;
}

.video-grid p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-actions {
  margin-top: 22px;
}

.styles-section {
  background: #efe7dc;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(85, 83, 84, 0.16);
}

.style-grid article {
  min-height: 260px;
  padding: clamp(20px, 2.6vw, 28px);
  background: #fffaf4;
}

.swatches {
  display: flex;
  height: 42px;
  margin-bottom: 42px;
}

.swatches span {
  flex: 1;
}

.style-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.shop-look {
  display: grid;
  grid-template-columns: minmax(300px, 0.54fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #fffaf4;
}

.shop-copy {
  position: sticky;
  top: 112px;
}

.shop-copy p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 16px;
}

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

.product-board article {
  background: #fff;
  border: 1px solid var(--line);
}

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

.product-board h3,
.product-board p {
  padding-inline: 20px;
}

.product-board h3 {
  margin-top: 20px;
}

.product-board p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.designers {
  background: #efe7dc;
}

.designers .section-heading,
.designers .section-link-row {
  justify-content: center;
}

.designers .section-heading {
  text-align: center;
}

.designers .section-heading h2,
.designers .section-heading p:not(.eyebrow) {
  margin-inline: auto;
}

.designers .section-heading h2 {
  max-width: 13.6ch;
}

.designers .section-heading p:not(.eyebrow) {
  max-width: 38rem;
}

.designer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.designer-grid article {
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.designer-grid article.brand-panel {
  display: flex;
  flex-direction: column;
}

.designer-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.designer-grid img.logo-card {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 28px 32px 20px;
  background: #fff;
  object-position: center;
}

.designer-grid article.brand-panel .logo-card {
  min-height: 220px;
}

.designer-grid div {
  padding: 24px;
  text-align: left;
}

.designer-grid p {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.designer-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--charcoal);
  color: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.review-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  background: #343331;
}

.review-grid p {
  margin: 0;
  color: #f5f0e8;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.18;
}

.review-grid span {
  display: block;
  margin-top: 26px;
  color: #d9cbbd;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: #fffaf4;
}

.about-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.about-copy {
  max-width: 620px;
}

.about-copy p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 16px;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.about-points article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.about-points h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1;
}

.about-points p {
  margin: 0;
}

.about-collage {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 16px;
  background: linear-gradient(180deg, #f4eee6 0%, #fbf8f3 100%);
}

.about-image-large {
  position: absolute;
  inset: 0 0 0 22%;
}

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

.about-image-arch {
  position: absolute;
  left: 0;
  top: 18%;
  width: min(320px, 44%);
  height: 58%;
  border: 2px solid rgba(36, 33, 34, 0.16);
  border-radius: 180px 180px 22px 22px;
  background: #fffaf4;
  z-index: 2;
}

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

.about-image-small {
  position: absolute;
  right: 8%;
  bottom: 7%;
  width: min(200px, 28%);
  aspect-ratio: 1 / 1.15;
  z-index: 3;
}

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

blockquote {
  margin: 34px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--orange);
  color: var(--brown);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.guarantee {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  background: #f1e6d8;
}

.guarantee p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.faq {
  background: #fffaf4;
}

.faq-list {
  max-width: 980px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  background: #fffaf4;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  max-width: 760px;
  margin: -8px 0 24px;
  color: var(--muted);
}

.transformation {
  background: #f6ede3;
}

.transformation-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.transformation-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.transformation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.transformation-media {
  overflow: hidden;
  min-height: 100%;
}

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

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1260px;
  margin: 24px auto 0;
  background: rgba(85, 83, 84, 0.14);
}

.journey-grid article {
  min-height: 240px;
  padding: clamp(22px, 3vw, 30px);
  background: #fffaf4;
}

.journey-grid span {
  color: var(--orange);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.journey-grid h3 {
  margin-top: 54px;
}

.journey-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  color: #fff;
  background: var(--charcoal);
}

.cta h2 {
  max-width: 720px;
}

.cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #e5ded5;
  font-size: 16px;
}

.contact-direct {
  display: grid;
  gap: 6px;
  margin-top: 26px;
}

.contact-direct span {
  color: #c9beb1;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct a {
  color: #fff;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fffaf4;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #5d5958;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

.contact-form button {
  margin-top: 4px;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: clamp(54px, 7vw, 84px) clamp(20px, 5vw, 72px);
  background: #161616;
  color: #fff;
  text-align: center;
}

.site-footer .brand-logo {
  width: 96px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(20px, 3vw, 40px);
  font-family: "Spartan", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: #fff;
}

.site-footer .footer-socials {
  gap: 14px;
}

.site-footer .social-link {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: transparent;
}

.site-footer .social-link:hover {
  background: #fff;
  color: #161616;
  border-color: #fff;
}

.footer-copy {
  margin: 6px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
}

.footer-credit {
  margin: 0;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
}

/* Newsletter popup */
.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.newsletter-popup[hidden] {
  display: none;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
}

.newsletter-modal {
  position: relative;
  width: min(460px, 100%);
  padding: clamp(34px, 5vw, 52px);
  background: #fff;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  animation: nlPop 280ms ease;
}

@keyframes nlPop {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.newsletter-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 30px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
}

.newsletter-modal h2 {
  margin: 6px 0 12px;
  font-size: clamp(28px, 4vw, 38px);
}

.newsletter-modal p:not(.eyebrow) {
  margin: 0 auto 22px;
  max-width: 40ch;
  color: var(--muted);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--ink);
}

.start-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 132px clamp(20px, 5vw, 72px) 54px;
  background: linear-gradient(180deg, #fffaf4 0%, #f5ecdf 100%);
}

.start-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.start-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
}

.start-hero-media {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.start-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.start-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 8vw, 110px);
  background: #f5ecdf;
}

.start-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 28px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.start-steps {
  display: grid;
  gap: 10px;
}

.start-step {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fffaf4;
  text-align: left;
  cursor: pointer;
}

.start-step.is-active {
  border-color: var(--ink);
  color: var(--ink);
  background: #f4ede4;
}

.start-step span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.start-form {
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.start-panel {
  display: none;
}

.start-panel.is-active {
  display: block;
}

.start-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.start-fields label {
  display: grid;
  gap: 8px;
  color: #5d5958;
  font-size: 13px;
  font-weight: 800;
}

.start-fields input,
.start-fields select,
.start-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

.field-wide {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.choice-card {
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

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

.choice-card span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-top: 0;
  background: #fff;
  font-weight: 800;
}

.choice-card input:checked + img {
  outline: 3px solid rgba(199, 91, 42, 0.6);
  outline-offset: -3px;
}

.choice-card input:checked + img + span {
  border-color: var(--orange);
  color: var(--orange);
}

.start-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.start-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--orange);
  font-weight: 700;
}

.ideas-hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  isolation: isolate;
}

.ideas-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.ideas-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 0.96) 0%, rgba(251, 248, 243, 0.8) 38%, rgba(251, 248, 243, 0.18) 76%),
    linear-gradient(0deg, rgba(36, 33, 34, 0.18), rgba(36, 33, 34, 0));
}

.ideas-hero-content {
  width: min(760px, 100%);
}

.ideas-hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #5d5958;
  font-size: 16px;
}

.ideas-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(320px, 1fr);
  gap: 22px 38px;
  align-items: end;
  padding: 42px clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: #fffaf4;
}

.ideas-intro h2 {
  font-size: clamp(26px, 3.4vw, 42px);
}

.ideas-search {
  align-self: end;
}

.ideas-search label {
  display: grid;
  gap: 8px;
  color: #5d5958;
  font-size: 13px;
  font-weight: 850;
}

.ideas-search input {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.idea-filter-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.idea-filter {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.idea-filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.ideas-page {
  padding: clamp(38px, 5vw, 72px) clamp(20px, 5vw, 72px) clamp(70px, 9vw, 118px);
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.idea-card,
.idea-cta {
  min-height: 360px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.idea-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.idea-card[hidden] {
  display: none;
}

.idea-card:focus-visible {
  outline: 3px solid rgba(199, 91, 42, 0.72);
  outline-offset: 4px;
}

.idea-card-large {
  grid-column: span 2;
}

.idea-card-tall {
  grid-row: span 2;
  min-height: 738px;
}

.idea-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 340ms ease;
}

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

.idea-card:hover h2 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.idea-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(0deg, rgba(29, 27, 25, 0.82), rgba(29, 27, 25, 0));
}

.idea-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
  color: #fff;
}

.idea-card p {
  margin: 0 0 8px;
  color: #f1d7c8;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.idea-card h2 {
  max-width: 620px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.08;
}

.idea-card span {
  display: block;
  margin-top: 12px;
  color: #eadfd2;
  font-weight: 700;
}

.idea-cta {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #efe7dc;
}

.idea-cta h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.idea-cta p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
}

.ideas-empty {
  max-width: 1320px;
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fffaf4;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.ideas-modal {
  width: min(1180px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  background: transparent;
}

.ideas-modal::backdrop {
  background: rgba(20, 18, 16, 0.72);
  backdrop-filter: blur(8px);
}

.ideas-modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: 0;
  overflow: hidden;
  background: #fffaf4;
  box-shadow: 0 32px 100px rgba(26, 20, 15, 0.28);
}

.ideas-modal-media {
  min-height: 620px;
  background: #e8ded1;
}

.ideas-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.ideas-modal-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.ideas-modal-copy h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.ideas-modal-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.ideas-modal-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.ideas-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 30px;
}

.ideas-thumb {
  padding: 0;
  border: 2px solid transparent;
  background: #efe7dc;
  cursor: pointer;
}

.ideas-thumb.is-active {
  border-color: var(--orange);
}

.ideas-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ideas-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(20, 18, 16, 0.4);
  cursor: pointer;
}

.ideas-cta-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 6vw, 86px) clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: #fff;
}

.ideas-cta-band h2 {
  max-width: 800px;
  font-size: clamp(28px, 4vw, 48px);
}

.home-page .hero {
  min-height: 82vh;
}

.home-page .section,
.home-page .portfolio,
.home-page .cta {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

.simple-story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: #fffdf9;
}

.simple-story-copy {
  max-width: 560px;
}

.simple-story-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-values article {
  padding: 18px 18px 16px;
  border: 1px solid rgba(229, 222, 213, 0.92);
  background: rgba(255, 255, 255, 0.82);
}

.about-values span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.simple-story-media {
  overflow: hidden;
  border: 1px solid rgba(229, 222, 213, 0.86);
}

.simple-story-media img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.home-page .service-grid {
  gap: 18px;
  border: 0;
  background: transparent;
}

.home-page .service-card,
.home-page .service-card:last-child {
  min-height: 280px;
  border: 1px solid rgba(229, 222, 213, 0.92);
  border-right: 1px solid rgba(229, 222, 213, 0.92);
  background: #fff;
}

.home-page .service-card h3 {
  margin-top: 52px;
}

.home-page .portfolio {
  background: #f6f1ea;
}

.home-page .portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr);
  gap: 12px;
  justify-content: flex-start;
}

.portfolio-summary {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.home-page .portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-page .project-card,
.home-page .project-card.wide {
  min-height: 420px;
  grid-column: span 1;
  border-radius: 4px;
  box-shadow: none;
}

.home-page .process {
  background: #fffdf9;
}

.home-page .process-list {
  gap: 18px;
  background: transparent;
}

.home-page .process-list article {
  min-height: 220px;
  border: 1px solid rgba(229, 222, 213, 0.92);
  background: #fff;
}

.home-page .process-list h3 {
  margin-top: 48px;
}

.home-page .cta {
  background: #2d2b2b;
}

@media (max-width: 1040px) {
  h1 {
    font-size: clamp(32px, 5vw, 54px);
  }

  h2 {
    font-size: clamp(23px, 3vw, 34px);
  }

  h3 {
    font-size: clamp(16px, 1.5vw, 19px);
  }

  .hero-content p:not(.eyebrow),
  .ideas-hero-content p:not(.eyebrow),
  .start-hero-copy p:not(.eyebrow),
  .shop-copy p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .cta p:not(.eyebrow) {
    font-size: 15px;
  }

  .contact-direct a {
    font-size: clamp(21px, 2vw, 27px);
  }

  .service-grid,
  .experience-grid,
  .process-list,
  .journey-grid,
  .choice-grid,
  .room-grid,
  .video-grid,
  .style-grid,
  .designer-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-grid article,
  .process-list article,
  .journey-grid article {
    min-height: 198px;
    padding: 22px 20px;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card h3,
  .process-list h3,
  .journey-grid h3 {
    margin-top: 44px;
  }

  .experience-grid h3 {
    margin-top: 28px;
  }

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

  .room-grid a,
  .room-grid img {
    min-height: 340px;
  }

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

  .start-fields {
    grid-template-columns: 1fr;
  }

  .ideas-modal-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 18;
    background: rgba(24, 21, 18, 0.28);
  }

  h1 {
    max-width: 10.2ch;
    font-size: clamp(30px, 6.4vw, 46px);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(22px, 4.2vw, 31px);
    line-height: 1.04;
  }

  h3 {
    font-size: 18px;
  }

  .site-nav {
    font-size: 12px;
  }

  .hero-content p:not(.eyebrow),
  .ideas-hero-content p:not(.eyebrow),
  .start-hero-copy p:not(.eyebrow),
  .shop-copy p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .cta p:not(.eyebrow),
  .section-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .review-grid p {
    font-size: 19px;
  }

  .brand-cluster {
    gap: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: min(300px, 82vw);
    min-height: calc(100svh - 78px);
    display: grid;
    gap: 0;
    align-content: start;
    padding: 26px 22px 28px;
    background: linear-gradient(180deg, #fff7f1, #fbf8f5);
    border-right: 1px solid rgba(199, 91, 42, 0.2);
    border-bottom: 1px solid rgba(199, 91, 42, 0.18);
    box-shadow: 18px 0 40px rgba(36, 33, 34, 0.08);
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 220ms ease;
    overflow-y: auto;
    z-index: 21;
  }

  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
    color: var(--orange);
  }

  .nav-cta {
    display: inline-flex;
    justify-content: flex-start;
    margin-top: 16px;
    padding: 12px 16px !important;
  }

  .hero {
    min-height: 86vh;
    padding-top: 112px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(251, 248, 243, 0.96), rgba(251, 248, 243, 0.72)),
      linear-gradient(0deg, rgba(36, 33, 34, 0.16), rgba(36, 33, 34, 0));
  }

  .intro-strip,
  .simple-story,
  .start-hero,
  .start-shell,
  .signature-experience,
  .section-heading,
  .transformation-card,
  .ideas-intro,
  .about,
  .guarantee,
  .shop-look,
  .reviews,
  .cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

  .home-page .hero {
    min-height: 78vh;
    padding-top: 118px;
  }

  .simple-story-media img {
    min-height: 380px;
  }

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

  .portfolio-head,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
  }

  .shop-copy {
    position: static;
  }

  .start-sidebar {
    position: static;
  }

  .ideas-hero {
    min-height: 64vh;
    padding-top: 112px;
  }

  .ideas-hero::after {
    background:
      linear-gradient(90deg, rgba(251, 248, 243, 0.96), rgba(251, 248, 243, 0.76)),
      linear-gradient(0deg, rgba(36, 33, 34, 0.16), rgba(36, 33, 34, 0));
  }

  .idea-filter-row,
  .ideas-cta-band {
    display: grid;
  }

  .ideas-modal {
    width: min(960px, calc(100vw - 20px));
  }
}

@media (max-width: 620px) {
  h1 {
    max-width: 9.8ch;
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 0.94;
  }

  h2 {
    max-width: 12ch;
    font-size: clamp(21px, 6.2vw, 28px);
    line-height: 1;
  }

  h3 {
    font-size: 17px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .brand-cluster {
    max-width: calc(100% - 56px);
  }

  .brand {
    gap: 8px;
    max-width: 100%;
  }

  .social-links {
    display: none;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 16px;
  }

  .site-nav {
    width: min(280px, 84vw);
    min-height: calc(100svh - 72px);
    padding: 22px 18px 24px;
  }

  .brand-logo {
    width: 68px;
  }

  .brand-copy small {
    font-size: 11px;
    max-width: 11ch;
    line-height: 1.12;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 38px;
  }

  .home-page .hero {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  .home-page .hero-content {
    width: min(100%, 23rem);
  }

  .simple-story-media img {
    min-height: 300px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .site-footer {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

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

  .site-footer p {
    max-width: 100%;
    margin-top: 8px;
    font-size: 13px;
  }

  .site-footer .brand-copy small {
    display: none;
  }

  .site-footer .footer-socials {
    margin-top: 10px;
  }

  .hero-content p:not(.eyebrow),
  .ideas-hero-content p:not(.eyebrow),
  .start-hero-copy p:not(.eyebrow),
  .shop-copy p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .cta p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .faq-list summary,
  .faq-list p {
    font-size: 14px;
  }

  .review-grid p {
    font-size: 18px;
  }

  .hero-content,
  .ideas-hero-content,
  .start-hero-copy,
  .section-heading > div:first-child,
  .transformation-copy,
  .ideas-cta-band > div,
  .cta-copy,
  .about-copy {
    width: min(100%, 24.75rem);
    margin-inline: auto;
  }

  .section-heading,
  .portfolio-head,
  .ideas-intro,
  .reviews-heading,
  .ideas-cta-band,
  .section-link-row {
    justify-items: stretch;
  }

  .section-heading.narrow {
    margin-inline: auto;
  }

  .hero-content .eyebrow,
  .ideas-hero-content .eyebrow,
  .start-hero-copy .eyebrow,
  .section-heading .eyebrow,
  .transformation-copy .eyebrow,
  .ideas-cta-band .eyebrow,
  .cta-copy .eyebrow,
  .about-copy .eyebrow,
  .reviews-heading .eyebrow,
  .ideas-intro .eyebrow,
  .portfolio-head .eyebrow {
    text-align: center;
  }

  .hero-content h1,
  .ideas-hero-content h1,
  .start-hero-copy h1,
  .section-heading h2,
  .transformation-copy h2,
  .ideas-cta-band h2,
  .cta h2,
  .about-copy h2 {
    max-width: 14.2ch;
    margin-inline: auto;
    text-align: center;
    line-height: 0.98;
    text-wrap: pretty;
  }

  .section-heading h2,
  .transformation-copy h2,
  .ideas-cta-band h2,
  .cta h2,
  .about-copy h2 {
    max-width: 15ch;
  }

  .start-hero-copy h1 {
    max-width: 11.8ch;
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 0.97;
  }

  .hero-content p:not(.eyebrow),
  .ideas-hero-content p:not(.eyebrow),
  .start-hero-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .transformation-copy p:not(.eyebrow),
  .ideas-cta-band p:not(.eyebrow),
  .cta-copy p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .portfolio-head p:not(.eyebrow),
  .reviews-heading p:not(.eyebrow) {
    max-width: 21.75rem;
    margin-inline: auto;
    text-align: left;
  }

  .designers .section-heading {
    text-align: center;
  }

  .designers .section-heading p:not(.eyebrow) {
    max-width: 22rem;
    margin-inline: auto;
    text-align: center;
  }

  .contact-direct a {
    font-size: 24px;
  }

  .hero-actions,
  .filter-group,
  .transformation-actions,
  .section-actions {
    width: 100%;
  }

  .hero-actions,
  .transformation-actions,
  .section-actions {
    justify-content: flex-start;
  }

  .section-link-row {
    justify-content: center;
  }

  .button,
  .filter {
    flex: 1 1 auto;
  }

  .section,
  .portfolio,
  .videos,
  .ideas-page,
  .shop-look,
  .reviews,
  .cta {
    padding-inline: 18px;
  }

  .footer-links {
    gap: 22px 20px;
  }

  .footer-links h3 {
    margin-bottom: 10px;
  }

  .footer-links a {
    margin-top: 8px;
  }

  .service-card,
  .experience-grid article,
  .process-list article,
  .journey-grid article,
  .review-grid article,
  .style-grid article {
    min-height: auto;
    padding: 18px 16px;
  }

  .service-card h3,
  .experience-grid h3,
  .process-list h3,
  .journey-grid h3 {
    margin-top: 18px;
  }

  .service-card p,
  .experience-grid p,
  .process-list p,
  .journey-grid p,
  .style-grid p {
    margin-top: 10px;
  }

  .swatches {
    height: 34px;
    margin-bottom: 24px;
  }

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

  .project-card.wide {
    grid-column: auto;
  }

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

  .designer-grid article.brand-panel .logo-card {
    min-height: 170px;
    padding: 20px 22px 14px;
  }

  .start-actions {
    display: grid;
  }

  .idea-card-large,
  .idea-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .idea-card,
  .idea-card img {
    min-height: 340px;
  }

  .idea-filter {
    width: 100%;
  }

  .ideas-modal {
    width: calc(100vw - 12px);
  }

  .ideas-modal-close {
    top: 12px;
    right: 12px;
  }

  .ideas-modal-media,
  .ideas-modal-media img {
    min-height: 300px;
  }

  .ideas-modal-controls,
  .ideas-modal-thumbs {
    grid-template-columns: 1fr;
  }

  .ideas-modal-controls {
    display: grid;
  }

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

  .project-card,
  .project-card img {
    min-height: 330px;
  }

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

@media (max-width: 420px) {
  .brand-logo {
    width: 62px;
  }

  .brand-copy small {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* VivaBella-inspired homepage refresh */
.vb-inspired {
  --ink: #242122;
  --muted: #746f6d;
  --line: #e5ded8;
  --paper: #fbf8f5;
  --cream: #f2ece7;
  --stone: #b8b1ad;
  --brown: #555354;
  --orange: #c75b2a;
  --blue: #656766;
  --charcoal: #2d2b2b;
  --shadow: 0 18px 48px rgba(36, 33, 34, 0.1);
  background: #fbf8f5;
  font-family: "Spartan", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.vb-inspired h1,
.vb-inspired h2,
.vb-inspired blockquote,
.vb-inspired .review-grid p,
.vb-inspired .contact-direct a,
.vb-inspired .about-points h3,
.vb-inspired .intro-strip strong {
  font-family: "Cormorant Infant", Georgia, serif;
  font-weight: 500;
}

.vb-inspired .site-header {
  min-height: 96px;
  padding: 18px clamp(22px, 4vw, 62px);
  background: linear-gradient(180deg, rgba(199, 91, 42, 0.13), rgba(255, 253, 249, 0.98) 76%);
  border-top: 0;
  border-bottom: 1px solid rgba(199, 91, 42, 0.28);
  box-shadow: 0 10px 34px rgba(199, 91, 42, 0.08);
}

.home-page .site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(199, 91, 42, 0.15), rgba(255, 253, 249, 0.98) 78%);
  border-bottom: 1px solid rgba(199, 91, 42, 0.28);
}

.vb-inspired .brand {
  gap: 16px;
}

.vb-inspired .brand-logo {
  width: 104px;
}

.home-page .brand-logo {
  width: 92px;
}

.vb-inspired .brand-copy strong {
  color: var(--orange);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  white-space: nowrap;
}

.vb-inspired .site-nav {
  gap: clamp(14px, 1.45vw, 24px);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-page .site-nav {
  justify-content: flex-end;
}

.vb-inspired .site-nav a {
  opacity: 1;
}

.vb-inspired .site-nav a:hover,
.vb-inspired .site-nav a[aria-current="page"] {
  color: #8f3f1d;
}

.vb-inspired .hero {
  min-height: 92vh;
  align-items: end;
  padding: 156px clamp(22px, 6vw, 92px) clamp(52px, 8vw, 108px);
  background: #efe8df;
}

.vb-inspired .hero-media {
  inset: 96px clamp(18px, 4vw, 54px) 0 clamp(18px, 4vw, 54px);
}

.vb-inspired .hero-media img {
  filter: saturate(0.9) contrast(0.98);
  object-position: center 46%;
}

.vb-inspired .hero::after {
  inset: 96px clamp(18px, 4vw, 54px) 0 clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(36, 33, 34, 0.58) 0%, rgba(36, 33, 34, 0.25) 42%, rgba(36, 33, 34, 0.02) 100%),
    linear-gradient(0deg, rgba(36, 33, 34, 0.44), rgba(36, 33, 34, 0.04) 58%);
}

.vb-inspired .hero-content {
  max-width: 680px;
  color: #fffaf4;
}

.vb-inspired .home-page .hero-content h1,
.vb-inspired .hero-content h1,
.vb-inspired .hero-content p:not(.eyebrow) {
  color: #fffaf4;
}

.vb-inspired h1 {
  max-width: 12ch;
  font-size: clamp(46px, 7.5vw, 106px);
  line-height: 0.86;
}

.vb-inspired h2 {
  font-size: clamp(35px, 5vw, 66px);
  line-height: 0.92;
}

.vb-inspired h3 {
  font-weight: 500;
  letter-spacing: 0;
}

.vb-inspired .eyebrow {
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.vb-inspired .hero .eyebrow {
  color: #f2ded0;
}

.vb-inspired .hero-content p:not(.eyebrow) {
  max-width: 36rem;
  font-size: 15px;
  line-height: 1.85;
}

.vb-inspired .button {
  min-height: 48px;
  padding: 14px 24px;
  border-color: currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vb-inspired .button-dark {
  background: var(--orange);
  border-color: var(--orange);
}

.vb-inspired .button-light {
  background: rgba(255, 253, 249, 0.88);
  color: #242122;
}

.vb-inspired .intro-strip {
  max-width: 1180px;
  margin: -48px auto 0;
  position: relative;
  z-index: 3;
  border: 0;
  background: #fffdf9;
  box-shadow: var(--shadow);
}

.vb-inspired .intro-strip div {
  min-height: 142px;
  padding: 34px clamp(20px, 4vw, 48px);
}

.vb-inspired .intro-strip strong {
  color: var(--orange);
  font-size: clamp(42px, 5vw, 64px);
}

.vb-inspired .intro-strip span {
  max-width: 20ch;
  color: #746f6d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vb-inspired .section,
.vb-inspired .portfolio,
.vb-inspired .cta,
.vb-inspired .videos,
.vb-inspired .shop-look,
.vb-inspired .reviews {
  padding-top: clamp(86px, 10vw, 150px);
  padding-bottom: clamp(86px, 10vw, 150px);
}

.vb-inspired .section-heading {
  align-items: center;
}

.vb-inspired .section-heading h2 {
  max-width: 13ch;
}

.vb-inspired .signature-experience,
.vb-inspired .room-finder,
.vb-inspired .videos,
.vb-inspired .about,
.vb-inspired .faq {
  background: #fffdf9;
}

.vb-inspired .services,
.vb-inspired .styles-section,
.vb-inspired .transformation {
  background: #f1e8df;
}

.vb-inspired .service-grid,
.vb-inspired .experience-grid,
.vb-inspired .process-list,
.vb-inspired .style-grid,
.vb-inspired .journey-grid {
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: none;
}

.vb-inspired .service-card,
.vb-inspired .experience-grid article,
.vb-inspired .process-list article,
.vb-inspired .style-grid article,
.vb-inspired .journey-grid article {
  background: #fffdf9;
  box-shadow: none;
}

.vb-inspired .service-card h3,
.vb-inspired .experience-grid h3,
.vb-inspired .process-list h3,
.vb-inspired .journey-grid h3 {
  margin-top: 82px;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 34px);
}

.vb-inspired .feature-card {
  background: #2d2b2b;
}

.vb-inspired .room-grid,
.vb-inspired .portfolio-grid {
  gap: 24px;
}

.vb-inspired .room-grid a,
.vb-inspired .project-card {
  box-shadow: none;
}

.vb-inspired .room-grid span {
  inset: auto 0 0;
  padding: 18px 12px;
  background: rgba(255, 253, 249, 0.94);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vb-inspired .portfolio-head {
  align-items: center;
}

.vb-inspired .portfolio-head h2 {
  max-width: 14ch;
}

.vb-inspired .filter-group {
  border: 0;
  background: transparent;
}

.vb-inspired .filter {
  border-bottom: 1px solid transparent;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vb-inspired .filter.is-active {
  color: var(--orange);
  background: transparent;
  border-color: var(--orange);
}

.vb-inspired .project-card::after {
  height: 58%;
}

.vb-inspired .project-card p,
.vb-inspired .video-grid p,
.vb-inspired .designer-grid p {
  color: #d9c2ae;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.vb-inspired .shop-look {
  background: #fffdf9;
}

.vb-inspired .product-board article,
.vb-inspired .designer-grid article,
.vb-inspired .video-grid article {
  border: 0;
  box-shadow: none;
  background: #f6efe8;
}

.vb-inspired .reviews,
.vb-inspired .cta {
  background: #2d2b2b;
}

.vb-inspired .review-grid article {
  background: #383535;
}

.vb-inspired .about-collage {
  background: #f1e8df;
}

.vb-inspired .contact-form {
  background: #fffdf9;
}

.vb-inspired .site-footer {
  background: #161616;
}

@media (max-width: 1080px) {
  .vb-inspired .site-header {
    min-height: 84px;
  }

  .vb-inspired .hero-media,
  .vb-inspired .hero::after {
    top: 84px;
  }

  .vb-inspired .site-nav {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 760px) {
  .vb-inspired .hero {
    min-height: 82vh;
    padding-top: 128px;
  }

  .vb-inspired .hero-media,
  .vb-inspired .hero::after {
    inset: 84px 0 0;
  }

  .vb-inspired h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .vb-inspired .intro-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .vb-inspired .intro-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vb-inspired .brand-copy strong {
    display: none;
  }
}

/* ============================================================
   VivaBella-style homepage layout
   ============================================================ */
.vb-hero {
  margin-top: 96px;
  height: clamp(520px, 82vh, 900px);
  overflow: hidden;
  background: var(--cream);
}

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

.vb-inspired .ideas-hero {
  min-height: clamp(440px, 72vh, 720px);
  align-items: end;
  padding: 138px clamp(20px, 6vw, 86px) clamp(52px, 8vw, 96px);
}

.vb-inspired .ideas-hero::after {
  background:
    linear-gradient(90deg, rgba(36, 33, 34, 0.62), rgba(36, 33, 34, 0.18) 56%, rgba(36, 33, 34, 0.02)),
    linear-gradient(0deg, rgba(61, 61, 61, 0.34), rgba(61, 61, 61, 0.02));
}

.vb-inspired .ideas-hero-content {
  width: min(760px, 100%);
  color: #fffaf4;
}

.vb-inspired .ideas-hero-content h1 {
  max-width: 12ch;
  color: #fffaf4;
  font-size: clamp(46px, 7.5vw, 92px);
  line-height: 0.9;
}

.vb-inspired .ideas-hero-content p:not(.eyebrow) {
  color: #fff3ec;
}

.vb-page-title {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(150px, 18vw, 230px) clamp(20px, 5vw, 60px) clamp(54px, 8vw, 90px);
  text-align: center;
}

.vb-page-title h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.86;
}

.vb-page-title p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.9;
}

.vb-about-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 60px) clamp(54px, 8vw, 100px);
}

.vb-about-image {
  overflow: hidden;
  background: var(--cream);
}

.vb-about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.vb-about-copy {
  display: grid;
  gap: 22px;
  max-width: 680px;
}

.vb-about-copy .eyebrow {
  margin-bottom: 2px;
}

.vb-about-copy p:not(.eyebrow),
.vb-story-copy p,
.vb-mission p {
  margin: 0;
  color: #5f5751;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.95;
}

.vb-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 86px) clamp(20px, 5vw, 60px);
}

.vb-story-media {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(14px, 2vw, 26px);
  align-items: end;
}

.vb-story-media img {
  width: 100%;
  object-fit: cover;
  background: var(--cream);
}

.vb-story-media img:first-child {
  aspect-ratio: 3 / 4;
}

.vb-story-media img:last-child {
  aspect-ratio: 4 / 5;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.vb-story-copy h2 {
  margin: 0 0 24px;
  max-width: 10ch;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 600;
}

.vb-story-copy p + p {
  margin-top: 22px;
}

.vb-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 80px) clamp(20px, 5vw, 60px) clamp(78px, 10vw, 140px);
  gap: 1px;
}

.vb-mission article {
  min-height: 280px;
  padding: clamp(30px, 5vw, 58px);
  background: #f3ece5;
}

.vb-mission span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
}

.vb-process-page {
  display: grid;
  gap: clamp(54px, 8vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 60px);
}

.vb-process-step {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.vb-process-step:nth-child(even) .vb-process-image {
  order: 2;
}

.vb-process-image {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}

.vb-process-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  background: var(--cream);
  transition: transform 700ms ease;
}

.vb-process-step:hover .vb-process-image img {
  transform: none;
}

.vb-process-copy span,
.vb-press-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vb-process-copy h2 {
  margin: 0 0 18px;
  max-width: 11ch;
  font-size: clamp(38px, 5vw, 68px);
}

.vb-process-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.9;
}

.vb-press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(78px, 10vw, 140px);
}

.vb-press-card {
  background: #fffdf9;
}

.vb-press-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.vb-press-card div {
  padding: 24px 0 0;
}

.vb-press-card h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 0.98;
}

.vb-press-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.vb-press-title h1 {
  max-width: none;
}

.vb-press-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(300px, 0.84fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(70px, 9vw, 120px);
}

.vb-press-feature-media {
  border: 1px solid var(--line);
  background: #fffdf9;
}

.vb-press-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
}

.vb-press-feature-copy {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.vb-press-feature-copy blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.vb-press-author {
  margin: -4px 0 14px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vb-press-notes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(78px, 10vw, 140px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vb-press-notes article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px) clamp(18px, 3vw, 32px);
  border-right: 1px solid var(--line);
}

.vb-press-notes article:last-child {
  border-right: 0;
}

.vb-press-notes span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vb-press-notes h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.98;
}

.vb-press-notes p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.vb-video-page {
  padding-top: 0;
  background: #fffdf9;
}

.vb-video-page .video-grid article {
  background: #f5f0e8;
}

.vb-contact-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(150px, 18vw, 220px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.vb-contact-title h1,
.vb-contact-title h2 {
  margin: 0;
  max-width: none;
  color: var(--charcoal);
  font-size: clamp(34px, 5.6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
}

.vb-contact-title h2 {
  margin-top: 8px;
  color: var(--brown);
  opacity: 0.82;
}

.vb-contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.9;
}

.vb-contact-details {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.vb-contact-details h3 {
  margin: 0 0 8px;
  color: var(--charcoal);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
}

.vb-contact-details p {
  margin: 0;
}

.vb-work-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(130px, 15vw, 190px) clamp(20px, 5vw, 60px) clamp(60px, 9vw, 110px);
}

.vb-work-hero-media {
  overflow: hidden;
  background: var(--cream);
}

.vb-work-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.vb-work-hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.86;
}

.vb-work-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.9;
}

.vb-work-service {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 84px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 60px);
  border-block: 1px solid var(--line);
}

.vb-work-service h2,
.vb-work-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 0.9;
}

.vb-work-service > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.95;
}

.vb-work-expectations {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 60px);
}

.vb-work-heading {
  margin-bottom: clamp(34px, 5vw, 66px);
}

.vb-work-stage-grid {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.vb-work-stage-grid article {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  padding-bottom: clamp(24px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.vb-work-stage-grid article:last-child {
  border-bottom: 0;
}

.vb-work-stage-grid img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  background: var(--cream);
}

.vb-work-stage-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vb-work-stage-grid span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vb-work-stage-grid h3 {
  margin: 14px 0 18px;
  color: var(--charcoal);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 600;
  line-height: 0.95;
}

.vb-work-stage-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.vb-contact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto clamp(76px, 10vw, 130px);
  padding-inline: clamp(20px, 5vw, 60px);
}

.vb-contact-band article {
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
  background: #f4ede6;
}

.vb-contact-band h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
}

.vb-contact-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.vb-inspired .start-shell {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 96px);
  background: transparent;
}

.vb-inspired .start-sidebar,
.vb-inspired .start-form {
  box-shadow: none;
  border: 1px solid var(--line);
  background: #fffdf9;
}

.vb-portfolio {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--line);
}

.home-page .vb-portfolio {
  border-top: 0;
  max-width: 1120px;
  padding-top: clamp(86px, 10vw, 132px);
  padding-bottom: clamp(76px, 9vw, 118px);
}

.vb-portfolio-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.vb-portfolio-head h2 {
  max-width: 5.2ch;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 600;
  line-height: 0.86;
}

.vb-viewall {
  flex: 0 0 auto;
  font-family: "Spartan", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: opacity 160ms ease;
}

.vb-viewall:hover {
  opacity: 0.6;
}

.vb-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(44px, 7vw, 96px);
}

.vb-project {
  display: flex;
  flex-direction: column;
}

.vb-project-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 0.86 / 1;
  background: var(--cream);
}

.vb-portfolio-page .vb-project-media {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}

.vb-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.vb-project-media:hover img {
  transform: scale(1.05);
}

.vb-project h2 {
  margin: 28px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 0.95;
}

.vb-project-kicker {
  margin: 24px 0 10px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vb-project-kicker + h2 {
  margin-top: 0;
}

.vb-project p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 44ch;
}

.vb-project-sections {
  display: grid;
  gap: clamp(72px, 10vw, 132px);
}

.vb-project-block {
  display: grid;
  grid-template-columns: minmax(230px, 0.26fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.vb-project-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.vb-project-block-copy {
  position: sticky;
  top: 118px;
}

.vb-project-block-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.92;
}

.vb-project-block-copy p:not(.vb-project-kicker) {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.vb-project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.vb-project-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  background: var(--cream);
}

.vb-project-gallery img:only-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.vb-project-gallery img:first-child:nth-last-child(3) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.vb-portfolio-films {
  max-width: 1210px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px) clamp(70px, 9vw, 120px);
}

.vb-portfolio-films-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 68px);
}

.vb-portfolio-films-head h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 600;
  line-height: 0.9;
}

.vb-portfolio-films-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
}

.vb-portfolio-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}

.vb-portfolio-video-grid figure {
  margin: 0;
}

.vb-portfolio-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  background: #111;
}

.vb-portfolio-video-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Spartan", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.vb-readmore {
  margin-top: auto;
  align-self: flex-start;
  font-family: "Spartan", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  transition: background 160ms ease, color 160ms ease;
}

.vb-readmore:hover {
  background: transparent;
  color: var(--orange);
}

.vb-curated {
  padding: clamp(86px, 11vw, 150px) clamp(20px, 5vw, 60px);
  text-align: center;
  background: #f7f2ec;
}

.vb-curated-logo {
  width: clamp(110px, 12vw, 170px);
  height: auto;
  margin: 0 auto 26px;
}

.vb-curated h2 {
  margin: 0 auto 30px;
  max-width: 15ch;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 0.9;
}

.vb-home-links {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 60px);
}

.vb-home-links-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.9;
}

.vb-home-link-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.vb-home-link-list a {
  display: grid;
  grid-template-columns: 52px minmax(150px, 0.42fr) minmax(220px, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: baseline;
  padding: clamp(22px, 3vw, 34px);
  color: var(--charcoal);
  background: #fffdf9;
  border: 0;
  text-align: left;
  transition: color 160ms ease, background 160ms ease;
}

.vb-home-link-list a:hover {
  color: var(--orange);
  background: #f8f1eb;
}

.vb-home-link-list small {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.vb-home-link-list span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vb-home-link-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.vb-template-contact {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(112px, 14vw, 184px) clamp(20px, 5vw, 60px) clamp(82px, 10vw, 140px);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(199, 91, 42, 0.14) calc(50% - 1px), rgba(199, 91, 42, 0.14) 50%, transparent 50%),
    #fbf8f3;
}

.vb-contact-brandline {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.vb-template-contact-title h2 {
  max-width: none;
  margin: 0 auto 8px;
  color: var(--charcoal);
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.vb-template-contact-title h2:nth-child(even) {
  color: var(--brown);
  opacity: 0.9;
}

.vb-template-contact-intro {
  max-width: 760px;
  margin: 34px auto clamp(58px, 8vw, 104px);
  color: var(--muted);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(15px, 1.18vw, 18px);
  text-align: center;
  line-height: 1.95;
}

.vb-template-contact-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(360px, 0.9fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.vb-template-contact-details {
  display: grid;
  gap: 52px;
}

.vb-template-contact-details h3 {
  margin: 0 0 26px;
  padding-bottom: 24px;
  border-bottom: 3px solid rgba(85, 83, 84, 0.42);
  color: var(--orange);
  font-family: "Spartan", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.vb-template-contact-details p {
  margin: 0;
  color: var(--brown);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.vb-template-form {
  display: grid;
  gap: 14px;
  padding: 0;
  background: transparent;
}

.vb-template-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.vb-template-form label {
  display: grid;
}

.vb-template-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.vb-template-form input,
.vb-template-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(85, 83, 84, 0.34);
  padding: 20px 14px;
  background: #fffaf4;
  color: var(--charcoal);
  font-family: "Spartan", Arial, sans-serif;
  font-size: 14px;
}

.vb-template-form input::placeholder,
.vb-template-form textarea::placeholder {
  color: rgba(61, 61, 61, 0.58);
}

.vb-template-form textarea {
  min-height: 184px;
  resize: vertical;
}

.vb-template-form input:focus,
.vb-template-form textarea:focus {
  outline: 2px solid rgba(199, 91, 42, 0.34);
  outline-offset: 0;
}

.vb-template-form button {
  justify-self: start;
  min-width: 220px;
  margin-top: 48px;
  border-color: rgba(199, 91, 42, 0.38);
  background: #fffaf4;
  color: var(--brown);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.vb-template-form button:hover {
  background: var(--orange);
  color: #fff;
}

.vb-inquiry {
  padding: clamp(92px, 12vw, 164px) clamp(20px, 5vw, 60px);
  text-align: center;
  background: var(--charcoal);
  color: #fff;
}

.vb-inquiry h3 {
  margin: 0 auto 28px;
  font-family: "Cormorant Infant", Georgia, serif;
  max-width: 8ch;
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 600;
  line-height: 0.86;
  color: #fff;
}

.vb-inquiry .eyebrow {
  color: #f1c4ad;
}

.vb-inquiry .button-dark {
  background: #fff;
  color: #161616;
  border-color: #fff;
}

.vb-inquiry .button-dark:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 1020px) {
  .vb-press-feature {
    grid-template-columns: 1fr;
  }

  .vb-project-block {
    grid-template-columns: 1fr;
  }

  .vb-project-block-copy {
    position: static;
  }

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

  .vb-press-notes article:nth-child(2) {
    border-right: 0;
  }

  .vb-press-notes article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .vb-about-intro,
  .vb-story,
  .vb-mission,
  .vb-process-step,
  .vb-contact-hero,
  .vb-work-hero,
  .vb-work-service,
  .vb-work-stage-grid article,
  .vb-contact-band,
  .vb-template-contact-body {
    grid-template-columns: 1fr;
  }

  .vb-template-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vb-story-media {
    grid-template-columns: 1fr;
  }

  .vb-story-media img:last-child {
    margin-bottom: 0;
  }

  .vb-process-step:nth-child(even) .vb-process-image {
    order: 0;
  }

  .vb-press-grid {
    grid-template-columns: 1fr;
  }

  .vb-press-notes {
    grid-template-columns: 1fr;
  }

  .vb-press-notes article,
  .vb-press-notes article:nth-child(2) {
    border-right: 0;
  }

  .vb-press-notes article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .vb-portfolio-video-grid {
    grid-template-columns: 1fr;
  }

  .vb-project-gallery img,
  .vb-project-gallery img:only-child,
  .vb-project-gallery img:first-child:nth-last-child(3) {
    grid-column: auto;
  }

  .vb-project-gallery img,
  .vb-project-gallery img:only-child,
  .vb-project-gallery img:first-child:nth-last-child(3),
  .vb-portfolio-video-grid video {
    aspect-ratio: 4 / 3;
  }

  .vb-home-links {
    grid-template-columns: 1fr;
  }

  .vb-home-link-list a {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vb-portfolio-head {
    flex-direction: column;
    gap: 12px;
  }
}

/* Legal / policy pages */
.legal-page main {
  padding-top: 78px;
}

.legal-section {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 40px) clamp(70px, 9vw, 120px);
}

.legal-section h1 {
  margin: 6px 0 28px;
  font-size: clamp(40px, 7vw, 68px);
}

.legal-section h2 {
  margin: 36px 0 10px;
  font-size: clamp(24px, 3vw, 30px);
}

.legal-section p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-section a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
