:root {
  --ink: #14211c;
  --ink-soft: #44574e;
  --muted: #52635b;
  --line: rgba(20, 33, 28, 0.12);
  --paper: #f3efe7;
  --paper-2: #e7e1d6;
  --white: #fbf9f5;
  --card: #fffcf8;
  --green: #0e6b52;
  --green-deep: #0a4a39;
  --blue: #1a6f9c;
  --blue-deep: #14567a;
  --mint: #d7efe6;
  --gold: #745832;
  --dark: #101816;
  --dark-2: #1b2822;
  --shadow: 0 22px 50px rgba(16, 24, 22, 0.14);
  --radius: 24px;
  --nav-h: 82px;
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.65;
  padding-top: var(--nav-h);
}

body.no-scroll { overflow: hidden; }

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

h1, h2, .service h3, .about h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  margin: 0 0 12px;
}

p { margin: 0 0 1rem; }

a { color: inherit; }

::selection {
  background: #b7e0d2;
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

[id] { scroll-margin-top: 104px; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--blue);
  color: white;
  padding: 8px 12px;
  z-index: 3000;
  border-radius: 8px;
  text-decoration: none;
}

.skip:focus { top: 10px; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--blue);
  z-index: 1200;
}

.section { padding: 96px 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

.sec-head .lede {
  max-width: 380px;
  margin: 0;
  color: var(--ink-soft);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.btn-brand,
.btn-ghost,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 560;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn-brand {
  background: var(--blue);
  color: #f4f8fb;
}

.btn-brand:hover {
  background: var(--blue-deep);
  color: white;
  transform: translateY(-1px);
}

.btn-brand:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-ghost:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.btn-line {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.btn-line:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: white;
}

.btn-brand.full { width: 100%; }

/* Navigation */
.site-nav {
  min-height: var(--nav-h);
  background: rgba(251, 249, 245, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(16, 24, 22, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--blue);
  color: #f4f8fb;
  display: grid;
  place-items: center;
  font-weight: 650;
  letter-spacing: -0.04em;
  flex: 0 0 44px;
}

.brand strong {
  display: block;
  font-weight: 640;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.site-nav .nav-link {
  color: var(--ink);
  font-weight: 500;
  padding: 8px 12px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--blue); }

.site-nav .navbar-nav { gap: 2px; }

.nav-cta { margin-left: 10px; padding: 12px 16px; }

.navbar-toggler {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.navbar-toggler:focus { box-shadow: none; }

.menu-ico,
.menu-ico::before,
.menu-ico::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.menu-ico::before,
.menu-ico::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-ico::before { top: -6px; }
.menu-ico::after { top: 6px; }

/* Hero */
.hero { padding: 28px 0 72px; }

.hero-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-copy { flex: 0.92; }

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  margin: 0 0 18px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 480;
  color: var(--blue);
}

.hero-copy > p {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.hero-facts {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}

.hero-facts li {
  flex: 1;
  padding: 0 16px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-facts li:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-facts strong { font-size: 1.02rem; }
.hero-facts span { color: var(--muted); font-size: 0.92rem; }

.hero-visual {
  flex: 1.08;
  position: relative;
}

.hero-frame {
  height: 680px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 42%;
}

.hero-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 249, 245, 0.94);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-float {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 196px;
  margin: 0;
}

.hero-float img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  border-radius: 16px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-float span {
  position: absolute;
  left: 14px;
  bottom: 16px;
  background: rgba(16, 24, 22, 0.75);
  color: white;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
  padding: 18px 0;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.marquee-group span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.marquee-group i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  display: block;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* Intro */
.intro-head {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 32px;
}

.intro-head > div {
  flex: 1.25;
  min-width: 0;
}

.intro-head h2 { margin: 0; }

.intro-head .lede {
  flex: 0 1 340px;
  max-width: 360px;
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.pair {
  display: flex;
  gap: 18px;
}

.pair figure {
  flex: 1;
  margin: 0;
}

.pair img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

.pair .pos-work { object-position: center 18%; }
.pair .pos-build { object-position: 78% 36%; }

.pair figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  color: var(--ink-soft);
}

.pair figcaption strong { color: var(--ink); }

.brands {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 28px;
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.brands strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.03em;
}

/* Services */
.services { background: var(--white); }

.service {
  height: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 111, 156, 0.35);
  box-shadow: var(--shadow);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.service-top i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #d6e8f3;
  color: var(--blue);
  font-size: 1.2rem;
}

.service-top span {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #c3cdc7;
}

.service:hover .service-top span { color: var(--blue); }

.service h3 {
  font-size: 1.7rem;
  margin: 0 0 10px;
}

.service p {
  margin: 0;
  color: var(--ink-soft);
}

/* Band */
.band {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
}

.band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 58%;
}

.band-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 14, 12, 0.82) 0%, rgba(8, 14, 12, 0.42) 48%, rgba(8, 14, 12, 0.12) 100%);
}

.band-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 80px 0;
}

.band .eyebrow { color: #ead9bc; }

.band h2 { color: white; }

.band p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 36rem;
}

/* Process */
.process-grid {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.steps {
  flex: 1.15;
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

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

.step .num {
  flex: 0 0 52px;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--blue);
  line-height: 1;
  padding-top: 2px;
}

.step h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
}

.process-photo {
  flex: 0.85;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.process-photo figcaption { color: var(--muted); font-size: 0.92rem; }

/* Gallery */
.gallery-sec { background: #fbf9f5; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.s7 { grid-column: span 7; }
.s6 { grid-column: span 6; }
.s5 { grid-column: span 5; }
.s4 { grid-column: span 4; }

.shot {
  position: relative;
  display: block;
  width: 100%;
  min-height: 320px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
  color: white;
  text-align: left;
}

.shot.tall { min-height: 540px; }

.shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.shot:hover img { transform: scale(1.045); }

.pos-top { object-position: center 18%; }
.pos-ac { object-position: center 30%; }
.pos-room { object-position: center 46%; }
.pos-build { object-position: 80% 32%; }

.shot-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 56px 16px 14px;
  background: linear-gradient(transparent, rgba(6, 10, 8, 0.82));
}

.shot-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ead9bc;
}

.shot-meta strong { font-weight: 560; }

.shot-note {
  min-height: 320px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  color: var(--ink);
}

.shot-note p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2vw, 2.15rem);
  line-height: 1.15;
  margin: 0;
}

.shot-note a { align-self: flex-start; }

/* About */
.about-grid {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about-copy { flex: 1; }

.about-copy > p { color: var(--ink-soft); max-width: 38rem; }

.ticks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.ticks li::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--green);
  margin-top: 0.75em;
  flex: 0 0 18px;
}

.about-visual {
  flex: 1;
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 28px;
}

.about-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(251, 249, 245, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-card strong { font-size: 1.05rem; }
.about-card span { color: var(--ink-soft); font-size: 0.95rem; }

/* FAQ */
.faq { background: var(--white); }

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

.accordion-button {
  font-family: var(--sans);
  font-size: 1.14rem;
  font-weight: 560;
  color: var(--ink);
  background: transparent;
  padding: 22px 4px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--green-deep);
  background: transparent;
  box-shadow: none;
}

.accordion-button:focus { box-shadow: none; }

.accordion-body {
  padding: 0 4px 22px;
  color: var(--ink-soft);
  max-width: 46rem;
}

.accordion h3 {
  font-family: var(--sans);
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0;
  line-height: inherit;
}

/* Contact */
.contact { background: #e4eef5; }

.contact-grid {
  display: flex;
  gap: 22px;
  align-items: stretch;
}

.contact-aside,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.contact-aside { flex: 0.86; }

.contact-card {
  flex: 1.14;
  padding: 28px 26px 26px;
}

.contact-aside img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 38%;
}

.contact-details {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details h2 { font-size: clamp(2rem, 3vw, 2.8rem); }

.contact-details > p { color: var(--ink-soft); margin: 0; }

.contact-list {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.contact-list span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--blue); }

.field { margin-bottom: 14px; position: relative; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.field .form-control,
.field .form-select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbf9f5;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  box-shadow: none;
}

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

.field .form-control:focus,
.field .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14, 107, 82, 0.15);
}

.field .is-invalid {
  border-color: #9c4036;
}

.field-error {
  min-height: 1.15em;
  margin: 4px 0 0;
  color: #9c4036;
  font-size: 0.8rem;
}

.form-note,
.form-alert {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 10px 0 0;
}

.form-alert:empty { display: none; }

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.turnstile-wrap {
  min-height: 0;
  margin: 2px 0 16px;
}

.turnstile-wrap:empty,
.turnstile-wrap[hidden] {
  display: none;
}

.form-success {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.form-success[hidden],
form[hidden] { display: none; }

.form-success i {
  font-size: 2rem;
  color: var(--green);
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
}

.form-success p { color: var(--ink-soft); }

/* Footer */
.site-footer {
  background: #fbf9f5;
  color: var(--ink);
  padding: 64px 0 28px;
}

.foot-title {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.site-footer .brand strong { color: var(--ink); }
.site-footer .brand small { color: var(--muted); }

.foot-lead {
  color: var(--ink-soft);
  max-width: 28rem;
  margin-top: 16px;
}

.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--blue); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 12, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 88px 36px;
}

.lightbox.is-open { display: flex; }

.lb-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lb-figure img {
  max-height: calc(100vh - 180px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto;
}

.lb-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #e7ece9;
  font-size: 0.95rem;
}

.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

.lb-btn:hover { background: rgba(255, 255, 255, 0.2); }

/* Floating controls */
.wa,
.to-top {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1020;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 24, 22, 0.2);
}

.wa {
  bottom: 18px;
  background: #1f8f4e;
  color: white;
  font-size: 1.45rem;
}

.wa:hover { color: white; background: #187a41; }

.to-top {
  bottom: 82px;
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
}

.mobile-bar { display: none; }

@media (max-width: 1199.98px) {
  .hero-grid { gap: 32px; }
  .hero-frame { height: 580px; }
  .about-visual img { height: 520px; }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(251, 249, 245, 0.98);
    padding: 8px 0 16px;
  }

  .nav-cta {
    margin: 8px 0 0;
    width: fit-content;
  }

  .hero-grid,
  .intro-head,
  .process-grid,
  .about-grid,
  .contact-grid,
  .sec-head {
    flex-direction: column;
    align-items: stretch;
  }

  .hero { padding-top: 12px; }
  .hero-frame { height: 480px; }
  .sec-head .lede { max-width: none; }
  .section { padding: 76px 0; }
  .band { min-height: 520px; }
  .band img { object-position: 58% 72%; }
  .band-shade {
    background: linear-gradient(180deg, rgba(8, 14, 12, 0.2) 0%, rgba(8, 14, 12, 0.82) 70%);
  }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .s7, .s6, .s5, .s4 { grid-column: auto; }
  .s7 { grid-column: span 2; }
  .shot.tall { min-height: 420px; }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    display: flex;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 249, 245, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-bar a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 10px;
    font-weight: 620;
  }

  .mobile-bar .quote {
    border: 1px solid var(--blue);
    background: transparent;
    color: var(--blue);
  }

  .mobile-bar .call {
    background: var(--blue);
    color: white;
  }

  body { padding-bottom: 74px; }
  .wa { display: none; }
  .to-top { bottom: 88px; }
  .site-footer { padding-bottom: 24px; }
}

@media (max-width: 767.98px) {
  .pair { flex-direction: column; }
  .pair img { height: 280px; }
  .hero-facts { flex-direction: column; gap: 14px; }
  .hero-facts li {
    border-left: 0;
    padding: 0 0 0 14px;
    border-left: 2px solid var(--green);
  }
  .process-photo img { min-height: 280px; height: 320px; }
  .about-visual img { height: 420px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .s7 { grid-column: auto; }
  .shot, .shot.tall, .shot-note { min-height: 260px; }
  .lightbox { padding: 64px 16px 24px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-figure figcaption { flex-direction: column; gap: 4px; }
}

@media (max-width: 575.98px) {
  .eyebrow { letter-spacing: 0.1em; font-size: 0.68rem; }
  .hero h1 { font-size: 2.7rem; }
  .hero-frame { height: 420px; border-radius: 20px; }
  .hero-float { width: 118px; }
  .hero-float img { height: 150px; }
  .hero-chip {
    font-size: 0.75rem;
    max-width: calc(100% - 28px);
    white-space: nowrap;
  }
  .contact-card { padding: 20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .shot img { transition: none; }
}
