:root {
  color-scheme: dark;
  --ink: #f7f2ea;
  --muted: #c9c0b5;
  --soft: #a99d8e;
  --paper: #fffaf2;
  --paper-ink: #171513;
  --paper-muted: #665e54;
  --charcoal: #11100e;
  --charcoal-2: #191714;
  --espresso: #2b2018;
  --gold: #d8a84d;
  --amber: #f3c56a;
  --sage: #a7b49b;
  --teal: #1f5d5b;
  --line: rgba(255, 250, 242, 0.15);
  --line-dark: rgba(23, 21, 19, 0.14);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--paper-ink);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.92), rgba(17, 16, 14, 0.62) 68%, transparent);
  transition: background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 16, 14, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 168, 77, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(243, 197, 106, 0.42), transparent 35%),
    rgba(17, 16, 14, 0.74);
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.4rem);
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -0.34rem;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
  content: "";
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0.78rem 1rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease;
}

.nav-cta,
.btn-primary {
  background: var(--amber);
  color: #18120c;
  box-shadow: 0 16px 34px rgba(216, 168, 77, 0.18);
}

.btn-secondary {
  border-color: rgba(255, 250, 242, 0.34);
  background: rgba(255, 250, 242, 0.08);
  color: var(--ink);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.58) 0%, rgba(17, 16, 14, 0.18) 42%, rgba(17, 16, 14, 0.82) 100%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.28) 0%, rgba(17, 16, 14, 0.12) 42%, rgba(17, 16, 14, 0.98) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 8rem 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
}

.hero-copy {
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  max-width: min(780px, 100%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.8rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-lede {
  max-width: min(700px, 100%);
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1.12rem, 2.4vw, 1.55rem);
  line-height: 1.35;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.hero-proof div {
  border-top: 1px solid rgba(255, 250, 242, 0.22);
  padding-top: 0.85rem;
}

.hero-proof dt {
  margin-bottom: 0.28rem;
  color: var(--paper);
  font-weight: 850;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.92rem;
}

.hero-card {
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  min-width: 0;
}

.hero-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

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

.card-label {
  margin-bottom: 0.6rem;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.text-link {
  color: var(--amber);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.trust-bar {
  background: var(--paper);
  color: var(--paper-ink);
  border-bottom: 1px solid var(--line-dark);
}

.trust-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.trust-inner span {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  color: var(--paper-muted);
  font-size: 0.86rem;
  font-weight: 780;
  background: rgba(31, 93, 91, 0.05);
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(4.3rem, 8vw, 7.6rem) 0;
}

.intro-grid,
.split-section,
.area-section,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: center;
}

.intro-grid h2,
.section-heading h2,
.split-copy h2,
.area-copy h2,
.quote-copy h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.intro-copy p:last-child,
.split-copy p:last-child,
.area-copy p:last-child,
.quote-copy p:last-child {
  margin-bottom: 0;
}

.service-section,
.package-section,
.faq-section {
  width: 100%;
  max-width: none;
  background: var(--paper);
  color: var(--paper-ink);
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  padding-right: max(16px, calc((100% - var(--max)) / 2));
}

.service-section .eyebrow,
.package-section .eyebrow,
.faq-section .eyebrow {
  color: var(--teal);
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}

.section-heading p {
  max-width: 760px;
  color: var(--paper-muted);
  font-size: 1.06rem;
}

.compact {
  max-width: 700px;
}

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

.service-card,
.package-card,
.why-grid article,
.addon-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

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

.feature-card {
  grid-column: span 2;
  background:
    linear-gradient(140deg, rgba(31, 93, 91, 0.12), rgba(216, 168, 77, 0.1)),
    #fffdf8;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: auto;
  color: var(--paper-muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.number {
  color: var(--teal);
}

.service-card h3,
.package-card h3,
.why-grid h3 {
  margin: 1.9rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

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

ul {
  padding-left: 1.1rem;
  margin: auto 0 0;
  color: var(--paper-muted);
}

li + li {
  margin-top: 0.38rem;
}

.ai-section {
  align-items: stretch;
}

.split-copy {
  align-self: center;
}

.split-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.workflow-panel {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(216, 168, 77, 0.12), transparent 48%),
    linear-gradient(20deg, rgba(31, 93, 91, 0.26), transparent 60%),
    rgba(255, 250, 242, 0.07);
  box-shadow: var(--shadow);
}

.workflow-step {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 250, 242, 0.13);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.52);
  padding: 1rem;
}

.workflow-step span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.workflow-step strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.22;
}

.add-ons {
  padding-top: 0;
}

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

.addon-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(150deg, rgba(167, 180, 155, 0.13), rgba(216, 168, 77, 0.09)),
    rgba(255, 250, 242, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.addon-card span {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.addon-card strong {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.22;
}

.area-section {
  align-items: center;
}

.area-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 34% 35%, rgba(216, 168, 77, 0.22), transparent 16%),
    radial-gradient(circle at 55% 54%, rgba(31, 93, 91, 0.44), transparent 20%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.08), rgba(17, 16, 14, 0.72)),
    #14120f;
  box-shadow: var(--shadow);
}

.area-map::before,
.area-map::after {
  position: absolute;
  inset: 15% 20%;
  border: 1px solid rgba(255, 250, 242, 0.13);
  border-radius: 48% 52% 47% 53%;
  content: "";
}

.area-map::after {
  inset: 28% 30% 22% 16%;
  transform: rotate(-20deg);
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  background: var(--charcoal);
  box-shadow: 0 0 0 12px rgba(216, 168, 77, 0.12);
}

.santa-cruz {
  left: 38%;
  top: 56%;
}

.monterey {
  left: 33%;
  top: 66%;
}

.silicon {
  left: 58%;
  top: 52%;
}

.bay {
  left: 52%;
  top: 34%;
}

.map-label {
  position: absolute;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.label-one {
  left: 43%;
  top: 54%;
}

.label-two {
  left: 38%;
  top: 68%;
}

.label-three {
  left: 62%;
  top: 49%;
}

.label-four {
  left: 56%;
  top: 31%;
}

.area-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  color: var(--muted);
  background: rgba(255, 250, 242, 0.05);
  font-size: 0.88rem;
  font-weight: 760;
}

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

.why-grid article {
  background: rgba(255, 250, 242, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.why-grid span {
  color: var(--sage);
  font-weight: 850;
}

.why-grid p {
  color: var(--muted);
}

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

.package-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.featured-package {
  background:
    linear-gradient(160deg, rgba(31, 93, 91, 0.13), rgba(216, 168, 77, 0.12)),
    #fffdf8;
  border-color: rgba(31, 93, 91, 0.28);
}

.package-label {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 5vw, 4.4rem);
  align-items: start;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 168, 77, 0.18), rgba(31, 93, 91, 0.28)),
    #151310;
  color: var(--paper);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.brief-copy {
  display: grid;
  gap: 1.1rem;
}

.brief-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.brief-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.76);
  font-size: 1.06rem;
}

.brief-copy .btn {
  width: fit-content;
}

.brief-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.16);
}

.brief-board article {
  display: grid;
  gap: 0.7rem;
  min-height: 224px;
  padding: 1.25rem;
  background: rgba(17, 16, 14, 0.78);
}

.brief-board span {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brief-board h3,
.brief-board p {
  margin: 0;
}

.brief-board p {
  color: rgba(255, 250, 242, 0.68);
}

.shoot-hold-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 5vw, 4.4rem);
  align-items: start;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 93, 91, 0.24), rgba(216, 168, 77, 0.12)),
    rgba(255, 250, 242, 0.06);
  box-shadow: var(--shadow);
}

.shoot-hold-copy {
  display: grid;
  gap: 1.1rem;
}

.shoot-hold-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.shoot-hold-copy p:not(.eyebrow) {
  color: rgba(255, 250, 242, 0.76);
  font-size: 1.06rem;
}

.shoot-hold-copy .btn {
  width: fit-content;
}

.shoot-hold-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.16);
}

.shoot-hold-board article {
  display: grid;
  gap: 0.7rem;
  min-height: 224px;
  padding: 1.25rem;
  background: rgba(17, 16, 14, 0.78);
}

.shoot-hold-board span {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shoot-hold-board h3,
.shoot-hold-board p {
  margin: 0;
}

.shoot-hold-board p {
  color: rgba(255, 250, 242, 0.68);
}

.delivery-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  border-block: 1px solid rgba(255, 250, 242, 0.12);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 168, 77, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(31, 93, 91, 0.22), rgba(17, 16, 14, 0)),
    var(--charcoal-2);
}

.delivery-copy {
  display: grid;
  gap: 1rem;
}

.delivery-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 0.8rem;
}

.delivery-options,
.delivery-output {
  display: grid;
  gap: 0.7rem;
}

.delivery-choice {
  min-height: 54px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.delivery-choice:hover,
.delivery-choice:focus-visible,
.delivery-choice.is-active {
  color: var(--paper-ink);
  background: var(--amber);
  border-color: var(--amber);
  outline: none;
}

.delivery-output {
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  box-shadow: var(--shadow);
}

.delivery-output span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.delivery-output h3,
.delivery-output p {
  margin: 0;
}

.delivery-output p,
.delivery-output li {
  color: rgba(255, 250, 242, 0.72);
}

.delivery-output ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-output li {
  padding-left: 0.8rem;
  border-left: 2px solid var(--sage);
}

.delivery-output .btn {
  width: fit-content;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  color: var(--paper-ink);
  font-weight: 850;
}

details p {
  margin: 0.8rem 0 0;
  color: var(--paper-muted);
}

.quote-section {
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.quote-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-options {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-options a {
  width: fit-content;
  color: var(--amber);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label,
legend {
  color: rgba(255, 250, 242, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.72);
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(216, 168, 77, 0.16);
}

select option {
  background: var(--charcoal);
}

fieldset {
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 250, 242, 0.15);
  border-radius: var(--radius);
  padding: 1rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 1rem;
  margin-top: 0.8rem;
}

.checkbox-grid label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  font-weight: 650;
}

.checkbox-grid input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--amber);
}

.shot-builder > span {
  color: var(--paper);
  font-weight: 800;
}

.shot-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shot-chip-row button {
  min-height: 40px;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  color: var(--paper);
  font-weight: 800;
}

.shot-chip-row button:hover,
.shot-chip-row button:focus-visible,
.shot-chip-row button.is-active {
  border-color: var(--amber);
  background: rgba(216, 168, 77, 0.18);
  outline: none;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--sage);
  font-size: 0.92rem;
}

.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 2rem 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
  font-size: 1.1rem;
}

.site-footer p {
  margin: 0.5rem 0 0;
  max-width: 520px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
  font-weight: 780;
}

.site-footer a:hover {
  color: var(--amber);
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 16, 14, 0.97);
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 0.85rem 0.9rem;
  }

  .nav-cta {
    margin-top: 0.4rem;
  }

  .hero-inner,
  .intro-grid,
  .split-section,
  .area-section,
  .brief-section,
  .shoot-hold-section,
  .delivery-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .quote-copy {
    position: static;
  }

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

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

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

@media (max-width: 760px) {
  .header-inner,
  .trust-inner,
  .section,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 41% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 16, 14, 0.22) 0%, rgba(17, 16, 14, 0.3) 24%, rgba(17, 16, 14, 0.94) 72%, rgba(17, 16, 14, 1) 100%),
      linear-gradient(90deg, rgba(17, 16, 14, 0.45), rgba(17, 16, 14, 0.12));
  }

  .hero-inner {
    width: min(100% - 24px, var(--max));
    min-height: 100svh;
    padding: 7rem 0 2rem;
    align-content: end;
  }

  h1 {
    font-size: clamp(2.7rem, 11.5vw, 3.05rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .hero-lede {
    font-size: clamp(1.02rem, 4.4vw, 1.18rem);
  }

  .hero-card h2 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .hero-proof,
  .service-grid,
  .package-grid,
  .brief-board,
  .shoot-hold-board,
  .delivery-grid,
  .why-grid,
  .addon-grid,
  .two-col,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: auto;
  }

  .service-card,
  .package-card,
  .addon-card {
    min-height: auto;
  }

  .area-map {
    min-height: 340px;
  }

  .map-label {
    font-size: 0.7rem;
  }

  .label-three {
    left: 51%;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .header-inner,
  .hero-inner,
  .trust-inner,
  .section,
  .site-footer {
    width: min(100% - 24px, 366px);
    margin-left: 12px;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* === Phase 2 upgrade: sticky mobile CTA (self-contained, namespaced) === */
.mcta{position:fixed;left:0;right:0;bottom:0;z-index:9000;display:none;gap:10px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom,0px));
  background:rgba(13,16,22,.93);border-top:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  transform:translateY(120%);transition:transform 220ms ease;font-family:inherit}
.mcta.visible{transform:translateY(0)}
.mcta a{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:50px;border-radius:10px;font-weight:700;font-size:.95rem;text-decoration:none;line-height:1}
.mcta .mcta-call{flex:0 0 112px;color:#fff;background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.26)}
.mcta .mcta-go{flex:1;color:#0c0f14;background:#fff;border:1px solid #fff}
.mcta svg{flex:none}
@media(max-width:768px){.mcta{display:flex}}
@media(prefers-reduced-motion:reduce){.mcta{transition:none}}
