:root {
  color-scheme: light;
  --ink: #19231f;
  --muted: #626e67;
  --paper: #f4f1ea;
  --surface: #fbfaf6;
  --white: #ffffff;
  --forest: #213d34;
  --sage: #527568;
  --sage-soft: #dfe8e2;
  --brass: #c89545;
  --clay: #b75d3d;
  --line: #ddd8ce;
  --shadow: 0 24px 70px rgba(25, 35, 31, 0.14);
}

/* UI/UX upgrade layer: showroom feel, sticky navigation, mobile actions, and portfolio folders. */
.site-header,
.page-header {
  padding-top: 82px;
}

.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 40;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 26, 23, 0.42);
  backdrop-filter: blur(16px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

body.is-scrolled .nav,
.nav:focus-within,
.nav:hover {
  border-color: rgba(33, 61, 52, 0.18);
  background: rgba(17, 26, 23, 0.92);
  box-shadow: 0 18px 50px rgba(16, 25, 22, 0.2);
}

.nav-links a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.nav-links a.active {
  color: #f2c06c;
  border-bottom-color: #f2c06c;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 99px;
  background: #f2c06c;
}

.home-header {
  background-position: center 45%;
}

.home-header .hero {
  align-items: end;
  padding-bottom: 76px;
}

.home-header h1 {
  text-wrap: balance;
}

.hero-lead,
.page-lead {
  line-height: 1.58;
}

.button.primary {
  box-shadow: 0 14px 34px rgba(200, 149, 69, 0.28);
}

.button:focus-visible,
.album-filter:focus-visible,
.nav-toggle:focus-visible,
.mobile-contact-bar a:focus-visible,
.portfolio-folder:focus-visible {
  outline: 4px solid rgba(242, 192, 108, 0.5);
  outline-offset: 3px;
}

.showroom-band,
.testimonials-band {
  background: #fffdf8;
}

.process-band,
.sample-work-band {
  background: var(--paper);
}

.premium-card-grid,
.work-card-grid,
.testimonial-grid,
.portfolio-folder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.premium-card,
.testimonial-grid blockquote,
.portfolio-folder {
  border: 1px solid rgba(33, 61, 52, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(25, 35, 31, 0.08);
}

.premium-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.premium-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(25, 35, 31, 0.13);
}

.premium-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #1c2723;
  background: #f2c06c;
  font-weight: 950;
}

.premium-card p,
.work-card p,
.portfolio-folder p {
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(33, 61, 52, 0.12);
  border-radius: 8px;
  background: var(--surface);
}

.process-steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--forest);
  background: var(--sage-soft);
  font-weight: 950;
}

.process-steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(33, 61, 52, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(25, 35, 31, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(25, 35, 31, 0.14);
}

.work-card img,
.portfolio-folder img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-card:hover img,
.portfolio-folder:hover img {
  transform: scale(1.035);
}

.work-card div,
.portfolio-folder div {
  padding: 18px;
}

.work-card span,
.portfolio-folder span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card a {
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
  color: var(--forest);
  font-size: 1.08rem;
  line-height: 1.55;
}

.portfolio-folder-grid {
  margin: 0 0 26px;
}

.portfolio-folder {
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.portfolio-folder:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(25, 35, 31, 0.14);
}

.portfolio-folder.placeholder {
  grid-column: span 2;
  min-height: 220px;
  display: grid;
  align-content: center;
  padding: 28px;
}

.portfolio-folder.placeholder span,
.portfolio-folder.placeholder h3,
.portfolio-folder.placeholder p {
  margin: 0;
}

.lightbox {
  opacity: 1;
  animation: lightboxIn 160ms ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }
}

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

@media (max-width: 980px) {
  .site-header,
  .page-header {
    padding-top: 72px;
  }

  .nav {
    top: 8px;
    width: min(100% - 20px, 760px);
    padding: 10px 12px;
    flex-direction: row;
    align-items: center;
  }

  .brand small {
    max-width: 185px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(17, 26, 23, 0.96);
    box-shadow: 0 20px 60px rgba(16, 25, 22, 0.28);
  }

  .nav.is-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-links a {
    min-height: 46px;
    padding: 8px 10px;
    border: 0;
    border-radius: 7px;
  }

  .nav-links a.active {
    color: #141b18;
    background: #f2c06c;
  }

  .premium-card-grid,
  .work-card-grid,
  .portfolio-folder-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  h1,
  .page-hero h1,
  .home-header h1 {
    font-size: clamp(1.95rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .consent-banner {
    bottom: 84px;
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    padding: 14px;
  }

  .consent-banner p {
    display: none;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .consent-actions a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .premium-card-grid,
  .work-card-grid,
  .portfolio-folder-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .portfolio-folder.placeholder {
    grid-column: auto;
  }

  .work-card img,
  .portfolio-folder img {
    height: 260px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(33, 61, 52, 0.18);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 18px 48px rgba(16, 25, 22, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--forest);
    background: var(--surface);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact-bar a:first-child {
    color: #141b18;
    background: #f2c06c;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 7.2vw, 6.4rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.site-header {
  /* Replace this with the strongest real completed kitchen photo or a polished render when the final hero asset is ready. */
  --hero-image: url("assets/facebook/fb-profile-classic-kitchen.jpg?v=classic-20260523");
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 92vh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 25, 22, 0.92), rgba(16, 25, 22, 0.62) 47%, rgba(16, 25, 22, 0.2)),
    var(--hero-image) center / cover no-repeat;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(126deg, transparent 0 51%, rgba(255, 255, 255, 0.58) 51.1%, transparent 51.45%),
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(255, 255, 255, 0.58) 15px 18px, transparent 18px 30px);
  background-size:
    100% 100%,
    320px 98px;
  background-position:
    center,
    right 24px top 94px;
  background-repeat: no-repeat;
  opacity: 0.16;
}

.nav {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

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

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(92vh - 82px);
  margin: 0 auto;
  padding: 54px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 52px;
  align-items: center;
}

.hero-content {
  min-width: 0;
  max-width: 850px;
}

.hero-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.38rem);
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(16, 25, 22, 0.54);
  backdrop-filter: blur(12px);
}

.hero-panel span {
  color: #f2c06c;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 12px 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel strong,
.hero-panel p,
.hero-panel span {
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-panel.is-changing strong,
.hero-panel.is-changing p,
.hero-panel.is-changing span {
  opacity: 0.18;
  transform: translateY(4px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #f2c06c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

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

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

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

.button.primary {
  color: #141b18;
  background: #f2c06c;
  border-color: #f2c06c;
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.secondary {
  color: var(--forest);
  background: var(--white);
  border-color: #cfd8d2;
}

.button.quiet {
  color: var(--forest);
  background: transparent;
  border-color: #cfd8d2;
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(33, 61, 52, 0.16);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 104px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 22px;
  border-right: 1px solid var(--line);
}

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

.trust-strip strong {
  color: var(--forest);
}

.trust-strip span {
  color: var(--muted);
}

.hub-band {
  background: var(--paper);
}

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

.hub-card {
  min-height: 190px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(33, 61, 52, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hub-card:hover {
  transform: translateY(-2px);
  border-color: rgba(82, 117, 104, 0.48);
  box-shadow: 0 18px 42px rgba(25, 35, 31, 0.12);
}

.hub-card.featured {
  color: var(--white);
  background: var(--forest);
}

.hub-card span {
  width: 34px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--forest);
  background: var(--sage-soft);
  font-weight: 900;
}

.hub-card.featured span {
  color: #141b18;
  background: #f2c06c;
}

.hub-card strong {
  font-size: 1.05rem;
  line-height: 1.16;
}

.hub-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hub-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.identity-band {
  padding-top: 58px;
  color: var(--white);
  background: #101312;
}

.identity-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 36px;
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(135deg, #151a18, #303633);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.identity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(129deg, transparent 0 49.5%, rgba(255, 255, 255, 0.66) 49.7%, transparent 50.05%),
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(255, 255, 255, 0.72) 13px 16px, transparent 16px 28px);
  background-size:
    100% 100%,
    92px 320px;
  background-position:
    center,
    right 28px center;
  background-repeat: no-repeat;
  opacity: 0.28;
}

.identity-copy,
.identity-details {
  position: relative;
  z-index: 1;
}

.identity-copy h2 {
  display: grid;
  gap: 2px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.82;
}

.identity-copy h2 span {
  font-weight: 900;
}

.identity-copy h2 em {
  color: rgba(255, 255, 255, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 3.1rem);
  font-weight: 400;
}

.identity-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.identity-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.identity-details div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.identity-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.identity-details dt {
  color: #f2c06c;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.identity-details a {
  color: var(--white);
  text-decoration: none;
}

.section {
  padding: 86px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 680px;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service-card,
.package,
.contact-card,
.owner-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card,
.package {
  padding: 24px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.service-card p,
.package p {
  color: var(--muted);
}

.service-card a,
.package-kicker {
  color: var(--sage);
  font-weight: 900;
}

.service-card a {
  margin-top: auto;
  text-decoration: none;
}

.card-number {
  width: 42px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 7px;
  color: var(--forest);
  background: var(--sage-soft);
  font-weight: 900;
}

.surface-band,
.gallery-band,
.materials-band,
.start-band,
.faq-band {
  background: var(--white);
}

.prep-band {
  background: #fff8eb;
}

.design-flow-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(25, 35, 31, 0.95), rgba(25, 35, 31, 0.78)),
    url("assets/facebook/fb-work-01.jpg") center / cover no-repeat;
}

.prep-layout,
.faq-layout,
.design-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}

.prep-list {
  display: grid;
  gap: 14px;
}

.prep-list article {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(200, 149, 69, 0.28);
  border-radius: 8px;
  background: var(--surface);
}

.prep-list strong {
  color: var(--forest);
}

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

.design-flow-layout .lead {
  color: rgba(255, 255, 255, 0.82);
}

.design-flow-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.design-flow-card ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: design-flow;
}

.design-flow-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.design-flow-card li:last-child {
  border-bottom: 0;
}

.design-flow-card li::before {
  counter-increment: design-flow;
  content: counter(design-flow);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 7px;
  color: #141b18;
  background: #f2c06c;
  font-weight: 900;
}

.design-flow-card strong {
  font-size: 1.08rem;
}

.design-flow-card span {
  color: rgba(255, 255, 255, 0.78);
}

.design-studio-band {
  background: var(--surface);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.studio-layout .lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.studio-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.studio-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 850;
}

.studio-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brass);
}

.studio-app {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(82, 117, 104, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.upload-zone {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px dashed rgba(82, 117, 104, 0.55);
  border-radius: 8px;
  color: var(--forest);
  background: #f7fbf8;
  cursor: pointer;
}

.upload-zone input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.upload-zone span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upload-zone strong {
  font-size: 1.15rem;
}

.upload-zone small {
  color: var(--muted);
}

.studio-preview {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(33, 61, 52, 0.9), rgba(82, 117, 104, 0.78)),
    url("assets/facebook/fb-profile-classic-kitchen.jpg") center / cover no-repeat;
}

.studio-preview img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.studio-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 25, 22, 0.56), rgba(16, 25, 22, 0.08)),
    linear-gradient(135deg, transparent 0 54%, rgba(255, 255, 255, 0.5) 54.1%, transparent 54.45%);
}

.studio-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  color: var(--white);
}

.studio-placeholder span,
.studio-overlay span,
.studio-result span {
  color: #f2c06c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-placeholder strong {
  max-width: 360px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.studio-overlay {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  max-width: min(330px, calc(100% - 36px));
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 25, 22, 0.74);
  backdrop-filter: blur(10px);
}

.studio-overlay strong {
  font-size: 1.35rem;
  line-height: 1.08;
}

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

.studio-controls label {
  display: grid;
  gap: 7px;
}

.studio-result {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
}

.studio-result strong {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.studio-result p {
  color: rgba(255, 255, 255, 0.78);
}

.studio-result .button {
  width: fit-content;
}

.visual-consent-panel,
.visual-preview-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(33, 61, 52, 0.14);
  border-radius: 10px;
  padding: 14px;
  background: #fffdf8;
}

.visual-consent-panel p,
.visual-disclaimer {
  margin: 0;
  color: rgba(33, 45, 39, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.visual-consent-panel label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #26342f;
  font-weight: 750;
  line-height: 1.4;
}

.visual-preview-head,
.visual-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visual-preview-head span {
  display: block;
  color: #b8874f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-preview-head strong {
  color: #213d34;
  font-size: 1.04rem;
}

#visual-preview-canvas {
  width: 100%;
  height: auto;
  border: 1px solid rgba(33, 61, 52, 0.12);
  border-radius: 8px;
  background: #f8f4ed;
}

.moodboard-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(33, 61, 52, 0.14);
  border-radius: 10px;
  background: #fffaf1;
}

.moodboard-preview span {
  display: block;
  margin-bottom: 6px;
  color: #8c6a3d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.moodboard-preview strong {
  display: block;
  color: #213d34;
  font-size: 1rem;
}

#moodboard-canvas {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(33, 61, 52, 0.16);
  background: #fffdf8;
}

.cpt-photo-tool {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(33, 61, 52, 0.14);
  border-radius: 12px;
  background: #fffaf1;
  font-size: 0.92rem;
}

.cpt-tool-warning {
  color: #72502c;
  font-weight: 700;
}

.cpt-photo-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cpt-photo-preview figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 61, 52, 0.14);
  border-radius: 10px;
  background: #ffffff;
}

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

.cpt-photo-preview figcaption {
  padding: 8px;
  color: #4c5852;
  font-size: 0.76rem;
}

.cpt-voice-button {
  min-width: 48px;
  border: 1px solid rgba(33, 61, 52, 0.18);
  border-radius: 999px;
  background: #fffaf1;
  color: #213d34;
  font-weight: 800;
}

.cpt-voice-button.is-listening {
  background: #213d34;
  color: #fffdf8;
}

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

.admin-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(25, 35, 31, 0.08);
}

.admin-card span {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-card strong {
  display: block;
  margin: 5px 0 8px;
  color: var(--forest);
  font-size: 1.05rem;
}

.admin-card p {
  margin: 4px 0;
  color: rgba(33, 45, 39, 0.78);
}

.admin-note-label {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
}

.admin-note-label textarea {
  min-height: 82px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

.admin-actions {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-actions button {
  min-height: 42px;
  border: 1px solid rgba(33, 61, 52, 0.16);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--forest);
  background: #fffdf8;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.admin-actions button:first-child:not(:disabled) {
  color: #141b18;
  background: var(--bronze-soft);
}

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

.material-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.material-card.featured {
  border-color: rgba(82, 117, 104, 0.45);
  box-shadow: var(--shadow);
}

.material-tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--forest);
  background: var(--sage-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.material-card strong {
  color: var(--forest);
}

.price-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
}

.price-guide h3 {
  color: var(--white);
}

.price-guide p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.price-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list dt {
  font-weight: 900;
}

.price-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.start-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 234, 0.96)),
    url("assets/facebook/fb-work-03.jpg") center / cover no-repeat;
}

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

.path-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(82, 117, 104, 0.24);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.92);
}

.path-card.featured {
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

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

.path-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.path-card .button {
  align-self: end;
  width: fit-content;
  margin-top: auto;
}

.path-kicker {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 7px;
  color: var(--forest);
  background: var(--sage-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.path-card.featured .path-kicker {
  color: #141b18;
  background: #f2c06c;
}

.area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(82, 117, 104, 0.22);
  border-radius: 8px;
  background: var(--surface);
}

.area-strip strong {
  margin-right: 4px;
  color: var(--forest);
}

.area-strip span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--sage-soft);
  font-size: 0.92rem;
  font-weight: 850;
}

.assistant-band {
  background:
    linear-gradient(90deg, rgba(33, 61, 52, 0.95), rgba(33, 61, 52, 0.82)),
    url("assets/facebook/fb-profile-classic-kitchen.jpg?v=classic-20260523") center / cover no-repeat;
  color: var(--white);
}

.assistant-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
  gap: 44px;
  align-items: center;
}

.assistant-layout .lead {
  color: rgba(255, 255, 255, 0.78);
}

.assistant-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.1);
  backdrop-filter: blur(12px);
}

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

.assistant-prompts button,
.album-filter {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.assistant-prompts button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.assistant-prompts button.active,
.assistant-prompts button:hover {
  color: #141b18;
  background: #f2c06c;
  border-color: #f2c06c;
}

.assistant-answer {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(10, 18, 15, 0.34);
}

.assistant-answer span {
  color: #f2c06c;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assistant-answer strong {
  font-size: 1.28rem;
  line-height: 1.14;
}

.assistant-answer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.assistant-link {
  color: #f2c06c;
  font-weight: 900;
  text-decoration: none;
}

.package.featured {
  border-color: rgba(82, 117, 104, 0.55);
  box-shadow: var(--shadow);
}

.package-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 54px;
  align-items: start;
}

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

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  background: var(--forest);
  font-weight: 900;
}

.steps strong,
.steps span {
  grid-column: 2;
}

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

.tool-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #e8eee9, #f4f1ea);
}

.paperflow-band {
  background: var(--white);
}

.paperflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.paperflow-layout .lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.paperflow-steps {
  display: grid;
  gap: 14px;
}

.paperflow-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.paperflow-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 7px;
  color: var(--forest);
  background: var(--sage-soft);
  font-weight: 900;
}

.paperflow-steps h3,
.paperflow-steps p {
  grid-column: 2;
}

.paperflow-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.tool-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.tool-copy {
  position: sticky;
  top: 24px;
}

.tool-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.owner-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
  background: #fff8eb;
}

.owner-note strong {
  color: var(--forest);
}

.owner-note span {
  color: var(--muted);
}

.estimator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(82, 117, 104, 0.26);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.span-2 {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 850;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd4ce;
  border-radius: 7px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 149, 69, 0.25);
  border-color: var(--brass);
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(82, 117, 104, 0.22);
  border-radius: 8px;
  background: #f7fbf8;
}

.privacy-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--sage);
}

.privacy-consent span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.privacy-consent a {
  color: var(--clay);
  font-weight: 900;
}

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

.segmented label {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #cbd4ce;
  border-radius: 7px;
  padding: 9px 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  text-align: center;
}

.segmented input {
  width: 14px;
  min-height: 14px;
  accent-color: var(--sage);
}

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

.check-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd4ce;
  border-radius: 7px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.check-grid input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 auto;
  accent-color: var(--sage);
}

.quote-output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
}

.quote-output span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 850;
}

.quote-output strong {
  font-size: clamp(1.45rem, 3vw, 2.18rem);
}

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

.automation-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(82, 117, 104, 0.22);
  border-radius: 8px;
  background: var(--white);
}

.automation-card.subtle {
  background: #fff8eb;
}

.lead-card {
  background: #f7fbf8;
}

.automation-kicker {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.automation-card strong {
  color: var(--forest);
}

.automation-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.smart-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.smart-checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.48em;
  border-radius: 999px;
  background: var(--brass);
}

.album-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 22px;
}

.album-filter {
  color: var(--forest);
  background: var(--surface);
  border-color: rgba(82, 117, 104, 0.24);
}

.album-filter.active,
.album-filter:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.gallery-item[hidden],
.album-roadmap[hidden] {
  display: none;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--forest);
  cursor: zoom-in;
}

.gallery-item:focus-visible {
  outline: 4px solid rgba(200, 149, 69, 0.55);
  outline-offset: 4px;
}

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

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

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

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 16px 16px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(25, 35, 31, 0), rgba(25, 35, 31, 0.88));
}

.album-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.album-roadmap article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(82, 117, 104, 0.22);
  border-radius: 8px;
  background: var(--surface);
}

.album-roadmap strong {
  color: var(--forest);
}

.album-roadmap span {
  color: var(--muted);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  padding: 34px;
  color: var(--white);
  background: rgba(12, 18, 16, 0.9);
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 78vh;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.lightbox p {
  max-width: min(760px, 92vw);
  margin: 18px 0 0;
  text-align: center;
  font-weight: 900;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.consent-banner {
  position: fixed;
  z-index: 30;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: min(980px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 25, 22, 0.95);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 4px;
}

.consent-banner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.consent-actions a {
  color: #f2c06c;
  font-weight: 850;
  text-decoration: none;
}

.contact-band {
  background: #e8eee9;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--forest);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 40px;
  align-items: center;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.32rem);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 24px;
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  color: var(--forest);
  font-size: 1.35rem;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  width: fit-content;
  margin-top: 8px;
  color: var(--clay);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 0.96), rgba(244, 241, 234, 0.72)),
    url("assets/facebook/fb-work-08.jpg") center / cover no-repeat;
}

.thanks-wrap {
  min-height: 100vh;
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.thanks-panel {
  max-width: 740px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(82, 117, 104, 0.22);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  color: var(--forest);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.legal-wrap {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.legal-panel {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(82, 117, 104, 0.2);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-panel h1 {
  color: var(--forest);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.legal-panel h2 {
  margin-top: 28px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
}

.legal-panel a:not(.button) {
  color: var(--clay);
  font-weight: 900;
}

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

.footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--forest);
  font-weight: 850;
  text-decoration: none;
}

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

.home-header {
  min-height: 64vh;
}

.home-header .hero {
  min-height: calc(64vh - 82px);
  padding: 34px 0 50px;
}

.home-header h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5.7vw, 5.35rem);
}

.home-intro {
  background: var(--surface);
}

.intro-grid,
.split-layout,
.route-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-services .service-card {
  min-height: 260px;
}

.home-route-band {
  background: var(--paper);
}

.route-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
}

.route-card {
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(82, 117, 104, 0.24);
  border-radius: 8px;
  background: var(--surface);
}

.route-card.featured {
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

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

.route-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.route-card .button {
  align-self: end;
  width: fit-content;
  margin-top: auto;
}

.route-card.featured .path-kicker {
  color: #141b18;
  background: #f2c06c;
}

.compact-contact {
  padding-top: 74px;
}

.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 25, 22, 0.94), rgba(16, 25, 22, 0.66) 52%, rgba(16, 25, 22, 0.28)),
    var(--page-image, url("assets/facebook/fb-profile-classic-kitchen.jpg")) center / cover no-repeat;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(126deg, transparent 0 55%, rgba(255, 255, 255, 0.44) 55.1%, transparent 55.5%),
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(255, 255, 255, 0.42) 15px 18px, transparent 18px 30px);
  background-size:
    100% 100%,
    300px 86px;
  background-position:
    center,
    right 18px top 86px;
  background-repeat: no-repeat;
  opacity: 0.12;
}

.kitchen-page {
  --page-image: url("assets/facebook/fb-profile-classic-kitchen.jpg");
}

.wardrobe-page {
  --page-image: url("assets/facebook/fb-extra-04.jpg");
}

.custom-page {
  --page-image: url("assets/facebook/fb-extra-12.jpg");
}

.gallery-page {
  --page-image: url("assets/facebook/fb-work-08.jpg");
}

.brief-page {
  --page-image: url("assets/facebook/fb-cover.jpg");
}

.materials-page {
  --page-image: url("assets/facebook/fb-work-03.jpg");
}

.contact-page {
  --page-image: url("assets/facebook/fb-profile-classic-kitchen.jpg");
}

.page-hero {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 46px;
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.4vw, 5.25rem);
}

.page-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.page-hero-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(22, 31, 28, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.page-hero-card strong {
  margin-bottom: 4px;
  font-size: 1.25rem;
}

.page-hero-card span {
  color: rgba(255, 255, 255, 0.78);
}

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

.service-detail-card {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(82, 117, 104, 0.24);
  border-radius: 8px;
  background: var(--surface);
}

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

.decision-list {
  display: grid;
  gap: 14px;
}

.decision-list article {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.decision-list strong {
  color: var(--forest);
}

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

.page-cta {
  background: var(--forest);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: var(--white);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .button {
  flex: 0 0 auto;
}

.page-gallery {
  padding-top: 74px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    background-position: 58% center;
  }

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

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 4px;
  }

  .hero,
  .page-hero,
  .two-col,
  .tool-shell,
  .contact-layout,
  .intro-grid,
  .split-layout,
  .route-grid,
  .assistant-layout,
  .prep-layout,
  .faq-layout,
  .design-flow-layout,
  .identity-card,
  .paperflow-layout,
  .studio-layout,
  .materials-grid,
  .album-roadmap,
  .path-grid,
  .price-guide,
  .service-grid,
  .service-detail-grid,
  .package-grid,
  .gallery-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding-top: 36px;
    align-items: start;
  }

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

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

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

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .tool-copy {
    position: static;
  }

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

  .span-2 {
    grid-column: auto;
  }

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

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

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

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

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

  .studio-controls,
  .consent-banner {
    grid-template-columns: 1fr;
  }

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

  .assistant-prompts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 66px;
  }

  h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.55rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .section,
  .tool-section {
    padding: 60px 0;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }

  .nav-links a {
    font-size: 0.92rem;
  }

  .hero {
    gap: 28px;
    width: min(350px, calc(100vw - 32px));
    max-width: min(350px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: auto;
  }

  .home-header .hero {
    min-height: auto;
  }

  .page-hero {
    gap: 28px;
    width: min(350px, calc(100vw - 32px));
    max-width: min(350px, calc(100vw - 32px));
    margin-left: 16px;
    margin-right: auto;
    padding-bottom: 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.55rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-content,
  .hero-panel,
  .hero-lead {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .form-actions,
  .contact-actions,
  .thanks-actions,
  .footer-links,
  .footer,
  .quote-output {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .path-card .button {
    width: 100%;
  }

  .route-card .button,
  .cta-panel .button {
    width: 100%;
  }

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

  .hub-grid,
  .studio-controls {
    grid-template-columns: 1fr;
  }

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

  .studio-preview,
  .studio-preview img {
    min-height: 280px;
  }

  .studio-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .studio-result .button,
  .consent-actions .button {
    width: 100%;
  }

  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 76px;
    width: min(370px, calc(100vw - 20px));
  }

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

  .mobile-action-bar {
    position: fixed;
    z-index: 20;
    left: 10px;
    right: auto;
    bottom: 10px;
    width: min(370px, calc(100vw - 20px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(33, 61, 52, 0.18);
    border-radius: 8px;
    background: var(--forest);
    box-shadow: 0 18px 40px rgba(25, 35, 31, 0.28);
  }

  .mobile-action-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* Final UI/UX override layer kept at the end so it wins over the base responsive rules. */
.site-header,
.page-header {
  padding-top: 82px;
}

.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 40;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 26, 23, 0.42);
  backdrop-filter: blur(16px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

body.is-scrolled .nav,
.nav:focus-within,
.nav:hover {
  border-color: rgba(33, 61, 52, 0.18);
  background: rgba(17, 26, 23, 0.92);
  box-shadow: 0 18px 50px rgba(16, 25, 22, 0.2);
}

.nav-links a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.nav-links a.active {
  color: #f2c06c;
  border-bottom-color: #f2c06c;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px auto;
  border-radius: 99px;
  background: #f2c06c;
}

.home-header {
  background-position: center 45%;
}

.home-header .hero {
  align-items: end;
  padding-bottom: 76px;
}

.home-header h1 {
  text-wrap: balance;
}

.hero-lead,
.page-lead {
  line-height: 1.58;
}

.button.primary {
  box-shadow: 0 14px 34px rgba(200, 149, 69, 0.28);
}

.button:focus-visible,
.album-filter:focus-visible,
.nav-toggle:focus-visible,
.mobile-contact-bar a:focus-visible,
.portfolio-folder:focus-visible {
  outline: 4px solid rgba(242, 192, 108, 0.5);
  outline-offset: 3px;
}

.showroom-band,
.testimonials-band {
  background: #fffdf8;
}

.process-band,
.sample-work-band {
  background: var(--paper);
}

.premium-card-grid,
.work-card-grid,
.testimonial-grid,
.portfolio-folder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.premium-card,
.testimonial-grid blockquote,
.portfolio-folder {
  border: 1px solid rgba(33, 61, 52, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(25, 35, 31, 0.08);
}

.premium-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.premium-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(25, 35, 31, 0.13);
}

.premium-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #1c2723;
  background: #f2c06c;
  font-weight: 950;
}

.premium-card p,
.work-card p,
.portfolio-folder p {
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(33, 61, 52, 0.12);
  border-radius: 8px;
  background: var(--surface);
}

.process-steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--forest);
  background: var(--sage-soft);
  font-weight: 950;
}

.process-steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(33, 61, 52, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(25, 35, 31, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(25, 35, 31, 0.14);
}

.work-card img,
.portfolio-folder img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-card:hover img,
.portfolio-folder:hover img {
  transform: scale(1.035);
}

.work-card div,
.portfolio-folder div {
  padding: 18px;
}

.work-card span,
.portfolio-folder span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card a {
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
  color: var(--forest);
  font-size: 1.08rem;
  line-height: 1.55;
}

.portfolio-folder-grid {
  margin: 0 0 26px;
}

.portfolio-folder {
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.portfolio-folder:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(25, 35, 31, 0.14);
}

.portfolio-folder.placeholder {
  grid-column: span 2;
  min-height: 220px;
  display: grid;
  align-content: center;
  padding: 28px;
}

.portfolio-folder.placeholder span,
.portfolio-folder.placeholder h3,
.portfolio-folder.placeholder p {
  margin: 0;
}

.lightbox {
  opacity: 1;
  animation: lightboxIn 160ms ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }
}

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

@media (max-width: 980px) {
  .site-header,
  .page-header {
    padding-top: 72px;
  }

  .nav {
    top: 8px;
    width: min(100% - 20px, 760px);
    padding: 10px 12px;
    flex-direction: row;
    align-items: center;
  }

  .brand small {
    max-width: 185px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(17, 26, 23, 0.96);
    box-shadow: 0 20px 60px rgba(16, 25, 22, 0.28);
  }

  .nav.is-open .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-links a {
    min-height: 46px;
    padding: 8px 10px;
    border: 0;
    border-radius: 7px;
  }

  .nav-links a.active {
    color: #141b18;
    background: #f2c06c;
  }

  .premium-card-grid,
  .work-card-grid,
  .portfolio-folder-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  h1,
  .page-hero h1,
  .home-header h1 {
    font-size: clamp(1.95rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .consent-banner {
    bottom: 84px;
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    padding: 14px;
  }

  .consent-banner p {
    display: none;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .consent-actions a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }

  .premium-card-grid,
  .work-card-grid,
  .portfolio-folder-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .portfolio-folder.placeholder {
    grid-column: auto;
  }

  .work-card img,
  .portfolio-folder img {
    height: 260px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(33, 61, 52, 0.18);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 18px 48px rgba(16, 25, 22, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: var(--forest);
    background: var(--surface);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact-bar a:first-child {
    color: #141b18;
    background: #f2c06c;
  }
}
