/* Artisan / artistic theme overrides (distinct from the electrician site) */

:root {
  --paper: #f4efe6;
  --paper2: rgba(255, 255, 255, 0.62);
  --paper3: rgba(255, 255, 255, 0.82);
  --ink: rgba(20, 17, 12, 0.96);
  --ink2: rgba(20, 17, 12, 0.72);
  --ink3: rgba(20, 17, 12, 0.52);
  --clay: #c56a3a;
  --sage: #3e6b55;
  --sun: #f1b54a;

  /* Re-map base tokens used across the existing CSS */
  --bg0: var(--paper);
  --bg1: #fbf9f3;
  --panel: var(--paper2);
  --panel2: var(--paper3);
  --border: rgba(20, 17, 12, 0.16);
  --text: var(--ink);
  --muted: var(--ink2);
  --muted2: var(--ink3);
  --shadow: 0 18px 55px rgba(15, 12, 8, 0.14);

  --blue: var(--sage);
  --cyan: #4aa47a;
  --amber: var(--sun);

  --radius: 18px;
  --radius2: 22px;
}

body {
  background: radial-gradient(900px 520px at 16% 8%, rgba(197, 106, 58, 0.09), transparent 62%),
    radial-gradient(820px 520px at 86% 18%, rgba(62, 107, 85, 0.10), transparent 62%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 60%, var(--bg0) 100%);
}

/* Replace the techy glow layers with paper texture + ink wash */
body::before {
  background: url("./assets/noise.svg");
  opacity: 0.18;
  mix-blend-mode: multiply;
}

body::after {
  background: radial-gradient(880px 720px at var(--scroll-glow-x) var(--scroll-glow-y), rgba(197, 106, 58, 0.12), transparent 62%),
    radial-gradient(820px 680px at 70% calc(var(--scroll-glow-y) + 10%), rgba(62, 107, 85, 0.12), transparent 62%);
  opacity: 0.26;
  mix-blend-mode: multiply;
}

.scroll-wow {
  background: radial-gradient(var(--wow-size) var(--wow-size) at var(--wow-x) var(--wow-y), rgba(20, 17, 12, 0.06), transparent 60%),
    url("./assets/noise.svg");
  background-size: auto, 220px 220px;
  background-position: 0 0, 0 var(--grid-y);
  opacity: 0.34;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-wow,
  body::after {
    opacity: 0.16;
  }
}

/* Typography: artisan = serif headlines + softer tracking */
h1,
h2,
h3 {
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  letter-spacing: -0.2px;
}

h1 {
  letter-spacing: -0.6px;
}

.brand-name {
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 900;
}

.text-glow {
  color: var(--ink);
  text-shadow: none;
  background: none;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.text-glow::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.06em;
  height: 0.58em;
  background: radial-gradient(120px 36px at 12% 40%, rgba(241, 181, 74, 0.42), transparent 70%),
    linear-gradient(90deg, rgba(197, 106, 58, 0.22), rgba(62, 107, 85, 0.20));
  border-radius: 32px 18px 28px 14px;
  transform: rotate(-1.1deg);
  filter: blur(0.2px);
  z-index: -1;
}

/* Header: remove glassmorphism */
.topbar {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(20, 17, 12, 0.14);
}
.topbar.is-scrolled {
  background: rgba(244, 239, 230, 0.97);
  box-shadow: 0 14px 34px rgba(15, 12, 8, 0.10);
}

.brand-mark {
  border-radius: 12px;
  border: 1px solid rgba(20, 17, 12, 0.18);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: none;
}

.pill {
  border-style: dashed;
  border-color: rgba(20, 17, 12, 0.18);
  background: rgba(255, 255, 255, 0.46);
}

/* Section titles: brush underline */
.section-head h2,
.band-head h2 {
  display: inline-block;
  position: relative;
}
.section-head h2::after,
.band-head h2::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: -0.18em;
  height: 0.38em;
  background: linear-gradient(90deg, rgba(241, 181, 74, 0.30), rgba(62, 107, 85, 0.24), rgba(197, 106, 58, 0.26));
  border-radius: 18px 10px 16px 9px;
  transform: rotate(-0.7deg);
  z-index: -1;
}

/* Buttons: ink + paper, more "atelier" */
.btn {
  border-color: rgba(20, 17, 12, 0.16);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(15, 12, 8, 0.08);
}
.btn:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(20, 17, 12, 0.22);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(20, 17, 12, 0.96), rgba(20, 17, 12, 0.88));
  border-color: rgba(20, 17, 12, 0.22);
  color: rgba(244, 239, 230, 0.96);
  box-shadow: 0 26px 65px rgba(15, 12, 8, 0.20);
}
.btn-primary:hover {
  background: linear-gradient(180deg, rgba(20, 17, 12, 1), rgba(20, 17, 12, 0.92));
  border-color: rgba(20, 17, 12, 0.26);
}

.btn-ghost {
  background: transparent;
  border-style: dashed;
}

.nav-cta {
  border-style: dashed;
  border-color: rgba(20, 17, 12, 0.20);
  background: rgba(255, 255, 255, 0.56);
}

/* Photo upload (artisan styling) */
.upload-thumb {
  border-color: rgba(20, 17, 12, 0.18);
  background: rgba(255, 255, 255, 0.60);
}
.upload-more {
  border-color: rgba(20, 17, 12, 0.20);
}
.upload-ui {
  border-color: rgba(20, 17, 12, 0.22);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 55px rgba(15, 12, 8, 0.10);
}
.upload-icon {
  border-color: rgba(20, 17, 12, 0.18);
  background: radial-gradient(240px 140px at 20% 20%, rgba(241, 181, 74, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.62);
}
.upload-sub {
  color: rgba(20, 17, 12, 0.62);
}
.upload-count {
  border-color: rgba(20, 17, 12, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.wa-qr {
  border-color: rgba(20, 17, 12, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

/* Hero layout: replace the right “tech card” with an artisan collage */
.hero-bg {
  background: none;
  animation: none;
}

.hero.has-hero-photo::before {
  background: linear-gradient(90deg, rgba(244, 239, 230, 0.94) 0%, rgba(244, 239, 230, 0.90) 50%, rgba(244, 239, 230, 0.64) 100%);
}

.hero-inner {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.hero-copy {
  max-width: 72ch;
}

.hero-actions {
  margin-top: 16px;
}

.micro {
  margin-top: 12px;
}

.hero-sub {
  font-weight: 900;
}

/* Reduce text presence (more visual) */
.lead {
  display: none;
}

.atelier {
  margin-top: 10px;
}
.atelier-list {
  margin-top: 8px;
  font-size: 13px;
}
.atelier-list li {
  margin: 6px 0;
}

/* Sticky scroll story (desktop wow) */
.scroll-story {
  padding: 28px 0 0;
}
.story-stage {
  height: 160vh;
  position: relative;
}
.story-sticky {
  position: sticky;
  top: 110px;
  height: 540px;
  border-radius: 26px 20px 28px 18px;
  border: 1px dashed rgba(20, 17, 12, 0.22);
  background: radial-gradient(920px 520px at 20% 20%, rgba(241, 181, 74, 0.18), transparent 60%),
    radial-gradient(920px 520px at 82% 22%, rgba(62, 107, 85, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.36);
  box-shadow: 0 30px 90px rgba(15, 12, 8, 0.16);
  overflow: hidden;
}
.story-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/noise.svg");
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.story-stack {
  position: absolute;
  inset: 0;
}
.story-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 86%);
  transform: translate3d(-50%, -50%, 0);
  border-radius: 22px 18px 24px 16px;
  border: 1px solid rgba(20, 17, 12, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 70px rgba(15, 12, 8, 0.18);
  overflow: hidden;
  will-change: transform;
}
.story-card img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.story-card::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%);
  transform: translateX(var(--sheen-x));
  opacity: 0.10;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.story-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(241, 181, 74, 0.95);
  opacity: calc(0.25 + var(--story-p, 0) * 0.55);
  box-shadow: 0 0 0 10px rgba(241, 181, 74, 0.10), 0 0 60px rgba(241, 181, 74, 0.22);
  transform: translate3d(0, 0, 0) scale(calc(0.9 + var(--story-p, 0) * 0.3));
}
.spark.s1 {
  left: 12%;
  top: 24%;
}
.spark.s2 {
  left: 82%;
  top: 34%;
  background: rgba(62, 107, 85, 0.95);
  box-shadow: 0 0 0 10px rgba(62, 107, 85, 0.10), 0 0 60px rgba(62, 107, 85, 0.22);
}
.spark.s3 {
  left: 22%;
  top: 74%;
  background: rgba(197, 106, 58, 0.92);
  box-shadow: 0 0 0 10px rgba(197, 106, 58, 0.10), 0 0 60px rgba(197, 106, 58, 0.22);
}

@media (max-width: 900px) {
  .scroll-story {
    display: none;
  }
}

.hero-art {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.collage {
  position: relative;
  min-height: 290px;
}

.polaroid {
  position: absolute;
  width: min(340px, 72%);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 17, 12, 0.18);
  box-shadow: 0 22px 55px rgba(15, 12, 8, 0.14);
  border-radius: 20px 16px 22px 14px;
  padding: 10px 10px 14px;
  transform: translate3d(0, var(--py, 0px), 0) rotate(var(--r, -2deg));
  will-change: transform;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px 12px 18px 10px;
  filter: saturate(1.05) contrast(1.03);
}
.polaroid-cap {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 820;
  color: rgba(20, 17, 12, 0.80);
}
.polaroid-tape {
  position: absolute;
  top: -10px;
  left: 34%;
  width: 92px;
  height: 26px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(20, 17, 12, 0.12);
  border-radius: 8px;
  transform: rotate(-6deg);
  box-shadow: 0 10px 22px rgba(15, 12, 8, 0.08);
}
.polaroid.p1 {
  top: 0;
  left: 0;
  --r: -2.8deg;
}
.polaroid.p2 {
  top: 34px;
  right: 0;
  --r: 2.2deg;
}
.polaroid.p3 {
  bottom: -6px;
  left: 14%;
  width: min(380px, 78%);
  --r: -0.6deg;
}

/* Scroll story: make it clearly different from the electric site */
.story-sticky {
  border-style: dashed;
  border-width: 1px;
  background: radial-gradient(840px 520px at 18% 16%, rgba(241, 181, 74, 0.16), transparent 60%),
    radial-gradient(820px 520px at 82% 22%, rgba(62, 107, 85, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.34);
}
.story-card {
  width: min(420px, 82%);
  border-radius: 22px 14px 24px 16px;
}
.story-card img {
  filter: saturate(1.02) contrast(1.03);
}

.atelier {
  border: 1px dashed rgba(20, 17, 12, 0.20);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 22px 18px 24px 16px;
  padding: 14px 14px;
  box-shadow: 0 18px 55px rgba(15, 12, 8, 0.10);
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
}
.atelier-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.atelier-title {
  font-weight: 900;
  font-size: 16px;
}
.atelier-chip {
  font-size: 12px;
  color: rgba(20, 17, 12, 0.70);
  border: 1px solid rgba(20, 17, 12, 0.16);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.52);
}
.atelier-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(20, 17, 12, 0.78);
}
.atelier-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .collage {
    min-height: 300px;
  }
}

/* Cards & sections: more paper / less glass */
.card,
.section-card,
.contact-card,
.form,
.legal {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(20, 17, 12, 0.16);
  box-shadow: 0 18px 55px rgba(15, 12, 8, 0.12);
}

.card {
  border-radius: 22px 18px 24px 16px;
}
.card::after {
  display: none;
}

.band-proof {
  background: rgba(255, 255, 255, 0.38);
}

.band-dark {
  background: #1b1712;
  color: rgba(244, 239, 230, 0.94);
  position: relative;
  overflow: hidden;
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/noise.svg");
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.badge {
  border-style: dashed;
  border-color: rgba(244, 239, 230, 0.18);
  background: rgba(244, 239, 230, 0.06);
}
.badge::before {
  background: rgba(241, 181, 74, 0.95);
}

/* Badges on light background */
.badges-light {
  margin-top: 2px;
}
.badges-light .badge {
  background: rgba(255, 255, 255, 0.58);
  border: 1px dashed rgba(20, 17, 12, 0.20);
  color: rgba(20, 17, 12, 0.86);
  box-shadow: 0 12px 30px rgba(15, 12, 8, 0.08);
}
.badges-light .badge::before {
  background: rgba(241, 181, 74, 0.95);
}

/* Gallery: “polaroid wall” vibe */
.gallery-card {
  border-radius: 20px 16px 22px 14px;
  border-color: rgba(20, 17, 12, 0.16);
  background: rgba(255, 255, 255, 0.72);
}
.gallery-card::after {
  display: none;
}
.gallery-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 16px;
  width: 82px;
  height: 24px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(20, 17, 12, 0.12);
  border-radius: 7px;
  transform: rotate(-7deg);
  box-shadow: 0 10px 22px rgba(15, 12, 8, 0.08);
  pointer-events: none;
}
.gallery-card:nth-child(2n)::before {
  left: auto;
  right: 16px;
  transform: rotate(6deg);
}

/* Reviews: handwritten note feel */
.review {
  border-radius: 20px 16px 22px 14px;
  border-style: dashed;
}
.review::after {
  display: none;
}
.review-service {
  color: rgba(241, 181, 74, 0.92);
}

/* Premium refresh: high-contrast editorial hero + mobile-first polish */
.topbar {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(244, 239, 230, 0.10);
  color: rgba(244, 239, 230, 0.94);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}
.topbar:not(.is-scrolled) .brand,
.topbar:not(.is-scrolled) .brand-sub,
.topbar:not(.is-scrolled) .nav-link {
  color: rgba(244, 239, 230, 0.88);
}
.topbar:not(.is-scrolled) .brand-name {
  color: rgba(255, 250, 240, 0.98);
}
.topbar:not(.is-scrolled) .brand-mark {
  background: rgba(244, 239, 230, 0.10);
  border-color: rgba(244, 239, 230, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
}
.topbar:not(.is-scrolled) .nav-link:hover,
.topbar:not(.is-scrolled) .nav-link.active {
  color: #fff8ea;
  background: rgba(244, 239, 230, 0.12);
}
.topbar:not(.is-scrolled) .nav-link.active::after {
  background: linear-gradient(90deg, rgba(200, 169, 110, 0.95), rgba(197, 106, 58, 0.90));
}
.topbar:not(.is-scrolled) .nav-cta {
  color: #fff8ea;
  border-color: rgba(200, 169, 110, 0.45);
  background: rgba(200, 169, 110, 0.18);
}
.topbar:not(.is-scrolled) .nav-toggle {
  color: rgba(244, 239, 230, 0.94);
  border-color: rgba(244, 239, 230, 0.22);
  background: rgba(244, 239, 230, 0.10);
}
.topbar:not(.is-scrolled) .nav-toggle-lines::before,
.topbar:not(.is-scrolled) .nav-toggle-lines::after {
  background: rgba(244, 239, 230, 0.94);
}
.topbar.is-scrolled {
  background: rgba(244, 239, 230, 0.96);
  color: var(--ink);
  border-bottom-color: rgba(20, 17, 12, 0.14);
  box-shadow: 0 14px 34px rgba(15, 12, 8, 0.12);
}

.hero {
  min-height: min(820px, 100svh);
  padding: clamp(128px, 16vh, 178px) 0 58px;
  isolation: isolate;
  background-color: #1a1512;
  color: rgba(244, 239, 230, 0.94);
}
.hero.has-hero-photo {
  background-position: center right;
}
.hero.has-hero-photo::before {
  background:
    linear-gradient(90deg, rgba(26, 21, 18, 0.96) 0%, rgba(26, 21, 18, 0.88) 42%, rgba(26, 21, 18, 0.48) 78%, rgba(26, 21, 18, 0.34) 100%),
    radial-gradient(860px 620px at 24% 22%, rgba(200, 169, 110, 0.22), transparent 62%),
    radial-gradient(680px 520px at 88% 14%, rgba(197, 106, 58, 0.18), transparent 60%),
    url("./assets/noise.svg");
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(244, 239, 230, 0.92));
  pointer-events: none;
  z-index: 0;
}
.hero .pill {
  color: rgba(244, 239, 230, 0.90);
  border-color: rgba(244, 239, 230, 0.22);
  background: rgba(244, 239, 230, 0.10);
  backdrop-filter: blur(12px);
}
.hero-copy {
  max-width: 78ch;
}
.hero h1 {
  max-width: 11ch;
  font-size: clamp(56px, 9vw, 88px);
  line-height: 0.92;
  letter-spacing: -1.9px;
  color: #fff9ed;
  text-wrap: balance;
}
.hero h1 .text-glow {
  color: #c8a96e;
  font-size: 1.12em;
  font-style: italic;
  line-height: 0.86;
  text-shadow: 0 26px 70px rgba(200, 169, 110, 0.34);
}
.hero h1 .text-glow::after {
  display: none;
}
.hero-sub {
  max-width: 48ch;
  margin-top: 22px;
  color: rgba(244, 239, 230, 0.78);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 470;
  line-height: 1.55;
  letter-spacing: -0.15px;
}
.hero-actions {
  gap: 12px;
  margin-top: 28px;
}
.hero-actions .btn {
  min-height: 52px;
  padding: 14px 19px;
  border-radius: 999px;
}
.hero-actions .btn-primary {
  color: #1a1512;
  background: linear-gradient(180deg, #fff8ea, #dfd2ba);
  border-color: rgba(255, 248, 234, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}
.hero-actions .btn-primary:hover {
  background: linear-gradient(180deg, #fffdf5, #eadcc4);
  border-color: rgba(255, 248, 234, 0.75);
}
.hero-actions .btn-ghost {
  color: #fff8ea;
  border-style: solid;
  border-color: rgba(200, 169, 110, 0.46);
  background: linear-gradient(180deg, rgba(197, 106, 58, 0.98), rgba(159, 74, 43, 0.96));
  box-shadow: 0 26px 70px rgba(197, 106, 58, 0.24);
}
.hero-actions .btn-ghost:hover {
  background: linear-gradient(180deg, rgba(211, 121, 71, 1), rgba(171, 82, 48, 1));
  border-color: rgba(200, 169, 110, 0.62);
}
.hero .micro {
  color: rgba(244, 239, 230, 0.62);
}
.hero .micro-link {
  color: rgba(255, 248, 234, 0.94);
  text-decoration-color: rgba(200, 169, 110, 0.62);
}
.hero-art {
  margin-top: clamp(26px, 5vw, 54px);
}
.hero .polaroid,
.hero .atelier {
  background: rgba(244, 239, 230, 0.88);
  border-color: rgba(244, 239, 230, 0.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}
.hero .atelier {
  background: rgba(244, 239, 230, 0.12);
  color: rgba(244, 239, 230, 0.90);
  border-style: solid;
  backdrop-filter: blur(20px) saturate(1.05);
}
.hero .atelier-list {
  color: rgba(244, 239, 230, 0.76);
}
.hero .atelier-chip,
.hero .mini-link {
  color: rgba(255, 248, 234, 0.90);
}

@media (max-width: 900px) {
  .topbar-inner {
    padding: 12px 0;
  }
  .hero {
    min-height: auto;
    padding: 112px 0 42px;
  }
  .hero.has-hero-photo {
    background-position: 64% center;
  }
  .hero.has-hero-photo::before {
    background:
      linear-gradient(180deg, rgba(26, 21, 18, 0.95) 0%, rgba(26, 21, 18, 0.89) 50%, rgba(26, 21, 18, 0.76) 100%),
      radial-gradient(620px 520px at 28% 18%, rgba(200, 169, 110, 0.20), transparent 62%),
      url("./assets/noise.svg");
  }
  .hero h1 {
    max-width: 9ch;
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: -1.4px;
  }
  .hero-sub {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 17px;
  }
  .hero-art {
    margin-top: 30px;
  }
  .atelier {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .brand-sub {
    display: none;
  }
  .brand-mark,
  .brand-logo {
    width: 36px;
    height: 36px;
  }
  .nav-menu {
    left: 16px;
    right: 16px;
    top: 62px;
    min-width: 0;
    border-color: rgba(244, 239, 230, 0.20);
    background: rgba(26, 21, 18, 0.94);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  }
  .topbar.is-scrolled .nav-menu {
    border-color: rgba(20, 17, 12, 0.14);
    background: rgba(244, 239, 230, 0.98);
  }
  .nav-menu .nav-link {
    color: rgba(244, 239, 230, 0.90);
    min-height: 44px;
  }
  .topbar.is-scrolled .nav-menu .nav-link {
    color: var(--ink);
  }
  .nav-menu .nav-cta {
    justify-content: center;
    color: #fff8ea;
    background: linear-gradient(180deg, rgba(197, 106, 58, 1), rgba(159, 74, 43, 1));
    border-color: rgba(200, 169, 110, 0.48);
  }
  .hero {
    padding-top: 104px;
  }
  .kicker {
    gap: 8px;
  }
  .hero .pill {
    padding: 7px 9px;
    font-size: 12px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .collage {
    min-height: 240px;
  }
  .polaroid {
    width: min(280px, 76%);
    padding: 8px 8px 12px;
  }
  .polaroid.p2 {
    top: 48px;
  }
  .hero .atelier {
    border-radius: 20px;
    padding: 13px;
  }
  .mobile-cta {
    grid-template-columns: 1fr 1fr 0.9fr;
    border-color: rgba(20, 17, 12, 0.14);
    background: rgba(244, 239, 230, 0.95);
    box-shadow: 0 18px 60px rgba(15, 12, 8, 0.22);
  }
  .mobile-cta .btn {
    min-height: 48px;
    border-radius: 999px;
  }
  .mobile-cta .btn-ghost[href="#contact"] {
    color: #fff8ea;
    border-style: solid;
    border-color: rgba(197, 106, 58, 0.40);
    background: linear-gradient(180deg, rgba(197, 106, 58, 1), rgba(159, 74, 43, 1));
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(44px, 15.4vw, 62px);
  }
  .hero-sub {
    font-size: 16px;
  }
  .mobile-cta {
    left: 8px;
    right: 8px;
    gap: 7px;
    padding: 8px;
  }
  .mobile-cta .btn {
    padding: 11px 7px;
    font-size: 13px;
  }
}

/* Second pass: remove scroll dead zones, restore light rhythm, and make content fail-open. */
.scroll-story {
  display: none;
}

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

.band-proof,
#engagements,
#services,
#apropos,
#contact,
.legal-bottom {
  background:
    radial-gradient(720px 420px at 12% 0%, rgba(200, 169, 110, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(251, 249, 243, 0.96), rgba(244, 239, 230, 0.98));
  color: var(--ink);
}

#process {
  background:
    radial-gradient(720px 520px at 14% 20%, rgba(200, 169, 110, 0.16), transparent 62%),
    radial-gradient(680px 520px at 86% 18%, rgba(197, 106, 58, 0.13), transparent 60%),
    #1b1712;
  color: rgba(244, 239, 230, 0.94);
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  border-bottom: 1px solid rgba(244, 239, 230, 0.10);
}
#process .section-sub,
#process .step-body p {
  color: rgba(244, 239, 230, 0.70);
}
#process .step {
  background: rgba(244, 239, 230, 0.08);
  border-color: rgba(244, 239, 230, 0.14);
}

.gallery {
  align-items: start;
}
.gallery-card {
  align-self: start;
  display: grid;
  grid-template-rows: auto auto;
  background: rgba(255, 255, 255, 0.82);
  overflow: visible;
  transform: none !important;
  will-change: auto;
  z-index: 0;
}
.gallery-media {
  min-height: 0;
  overflow: hidden;
  border-radius: 20px 16px 0 0;
}
.gallery-body {
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 7px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}
.gallery-card {
  cursor: zoom-in;
}
.gallery-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.28), 0 18px 55px rgba(15, 12, 8, 0.12);
}
.gallery-card:hover .gallery-open {
  transform: translateY(0);
  opacity: 1;
}
.gallery-credit {
  margin-top: 0;
  color: rgba(20, 17, 12, 0.46);
  font-size: 11px;
}
.gallery-open {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff8ea;
  background: linear-gradient(180deg, rgba(197, 106, 58, 1), rgba(159, 74, 43, 1));
  font-size: 12px;
  font-weight: 850;
  opacity: 1;
  transform: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

body.lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  background:
    radial-gradient(900px 620px at 20% 10%, rgba(200, 169, 110, 0.20), transparent 62%),
    rgba(15, 12, 8, 0.88);
  backdrop-filter: blur(18px);
}
.gallery-lightbox[hidden] {
  display: none;
}
.gallery-lightbox-frame {
  width: min(1180px, 100%);
  max-height: min(840px, calc(100svh - 72px));
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 28px 20px 30px 18px;
  background: rgba(244, 239, 230, 0.10);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.44);
  overflow: hidden;
}
.gallery-lightbox-img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 180px);
  display: block;
  object-fit: contain;
  background: #1b1712;
}
.gallery-lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: rgba(244, 239, 230, 0.92);
  background: rgba(26, 21, 18, 0.78);
}
.gallery-lightbox-title {
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1;
}
.gallery-lightbox-location,
.gallery-lightbox-credit {
  margin-top: 6px;
  color: rgba(244, 239, 230, 0.64);
  font-size: 13px;
}
.gallery-lightbox-credit {
  margin-top: 0;
  align-self: end;
  white-space: nowrap;
}
.gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 201;
  border: 1px solid rgba(244, 239, 230, 0.24);
  border-radius: 999px;
  padding: 11px 14px;
  color: #fff8ea;
  background: rgba(26, 21, 18, 0.70);
  cursor: pointer;
  font-weight: 850;
}

.commitments {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.commitment-card {
  min-height: 210px;
  padding: 20px;
  border-radius: 24px 18px 26px 16px;
  border: 1px solid rgba(20, 17, 12, 0.14);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 55px rgba(15, 12, 8, 0.10);
  position: relative;
  overflow: hidden;
}
.commitment-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% 18%;
  height: 120px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.22), transparent 62%);
  pointer-events: none;
}
.commitment-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #1b1712;
  background: linear-gradient(180deg, #e1c889, #c8a96e);
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 14px 34px rgba(200, 169, 110, 0.22);
}
.commitment-card h3 {
  margin: 18px 0 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: -0.5px;
}
.commitment-card p {
  margin: 12px 0 0;
  color: rgba(20, 17, 12, 0.66);
  line-height: 1.55;
}

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

@media (max-width: 720px) {
  .commitments {
    grid-template-columns: 1fr;
  }
  .commitment-card {
    min-height: 0;
    padding: 18px;
  }
  #process .steps {
    gap: 12px;
  }
  .gallery-lightbox-caption {
    display: grid;
  }
  .gallery-lightbox-credit {
    white-space: normal;
  }
  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* Conversion pass: calmer header, terracotta accents, stronger local proof. */
.topbar,
.topbar:not(.is-scrolled),
.topbar.is-scrolled {
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(12px) saturate(1.05);
  border-bottom: 1px solid rgba(20, 17, 12, 0.08);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(15, 12, 8, 0.07);
}
.topbar:not(.is-scrolled) .brand,
.topbar:not(.is-scrolled) .brand-sub,
.topbar:not(.is-scrolled) .nav-link,
.topbar:not(.is-scrolled) .brand-name {
  color: var(--ink);
}
.topbar:not(.is-scrolled) .brand-mark,
.topbar.is-scrolled .brand-mark {
  background: rgba(248, 242, 234, 0.92);
  border-color: rgba(182, 100, 61, 0.22);
  box-shadow: none;
}
.topbar:not(.is-scrolled) .nav-link:hover,
.topbar:not(.is-scrolled) .nav-link.active,
.topbar.is-scrolled .nav-link:hover,
.topbar.is-scrolled .nav-link.active {
  color: var(--ink);
  background: rgba(182, 100, 61, 0.10);
}
.topbar:not(.is-scrolled) .nav-link.active::after,
.topbar.is-scrolled .nav-link.active::after {
  background: linear-gradient(90deg, rgba(182, 100, 61, 0.95), rgba(200, 169, 110, 0.90));
}
.topbar:not(.is-scrolled) .nav-cta,
.topbar.is-scrolled .nav-cta {
  color: #fff8ea;
  border-color: rgba(182, 100, 61, 0.28);
  background: linear-gradient(180deg, rgba(197, 106, 58, 1), rgba(159, 74, 43, 1));
}
.topbar:not(.is-scrolled) .nav-toggle,
.topbar.is-scrolled .nav-toggle {
  color: var(--ink);
  border-color: rgba(20, 17, 12, 0.14);
  background: rgba(255, 255, 255, 0.72);
}
.topbar:not(.is-scrolled) .nav-toggle-lines::before,
.topbar:not(.is-scrolled) .nav-toggle-lines::after,
.topbar.is-scrolled .nav-toggle-lines::before,
.topbar.is-scrolled .nav-toggle-lines::after {
  background: rgba(20, 17, 12, 0.82);
}

.brand-name {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 850;
}

.dot,
.badge::before {
  background: radial-gradient(circle at 30% 30%, #d88a5a, #b6643d);
  box-shadow: 0 0 0 4px rgba(182, 100, 61, 0.10);
}
.step-num {
  color: rgba(197, 106, 58, 0.96);
}

.case-study {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 18px;
  padding: 22px;
  border-radius: 26px 18px 28px 16px;
  border: 1px solid rgba(20, 17, 12, 0.13);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 55px rgba(15, 12, 8, 0.10);
}
.case-kicker {
  color: rgba(182, 100, 61, 0.94);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-study h3 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 0.98;
}
.case-study p {
  margin: 12px 0 0;
  color: rgba(20, 17, 12, 0.68);
  line-height: 1.58;
}
.case-study dl {
  margin: 0;
  display: grid;
  gap: 10px;
}
.case-study dl div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(244, 239, 230, 0.70);
}
.case-study dt {
  color: rgba(20, 17, 12, 0.46);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-study dd {
  margin: 5px 0 0;
  font-weight: 850;
}

.hero-actions .btn-primary,
.mobile-cta .btn-primary {
  color: #fff8ea;
  background: linear-gradient(180deg, rgba(197, 106, 58, 1), rgba(159, 74, 43, 1));
  border-color: rgba(200, 169, 110, 0.36);
}
.hero-actions .btn-ghost {
  color: #1a1512;
  background: linear-gradient(180deg, #fff8ea, #dfd2ba);
  border-color: rgba(255, 248, 234, 0.58);
}

@media (max-width: 720px) {
  .nav-menu {
    background: rgba(255, 250, 245, 0.98);
    border-color: rgba(20, 17, 12, 0.12);
  }
  .nav-menu .nav-link {
    color: var(--ink);
  }
  .case-study {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .mobile-cta {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

