@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --black: #050505;
  --black-soft: #0b0a08;
  --surface: #12110f;
  --surface-raised: #1b1813;
  --cream: #f8f1e7;
  --cream-deep: #e9dcc9;
  --ink: #17130f;
  --muted: #afa394;
  --muted-dark: #64584a;
  --gold: #cda85a;
  --gold-bright: #f3d990;
  --green: #173d35;
  --pacific: #1b6970;
  --clay: #a85f48;
  --rose: #7d4758;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(21, 18, 13, 0.14);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --container: 1180px;
  --radius: 8px;
  --header-height: 78px;
  --font-sans: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(205, 168, 90, 0.08), transparent 28%),
    linear-gradient(248deg, rgba(27, 105, 112, 0.06), transparent 36%),
    linear-gradient(180deg, #fbf7f1, var(--cream) 56%, var(--cream-deep));
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--gold-bright);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow-content {
  max-width: 860px;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 96px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, #f8f3eb, #eee3d3);
  color: var(--ink);
}

.section-gold {
  background:
    linear-gradient(180deg, #f8f0df, #eadac0);
  color: var(--ink);
}

.section-light {
  background:
    linear-gradient(180deg, #fbf7f1, #f1e7d8);
  color: var(--ink);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  max-width: 720px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-light .eyebrow,
.section-light .card-kicker,
.section-gold .eyebrow,
.section-gold .card-kicker {
  color: #72541e;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.25rem, 5.2vw, 4.35rem);
}

h2 {
  max-width: 900px;
  font-size: clamp(2.3rem, 3.9vw, 3rem);
}

h3 {
  font-size: 1.48rem;
}

p {
  margin: 16px 0 0;
  color: inherit;
  line-height: 1.68;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.76);
}

.section-light p,
.section-dark p,
.section-gold p {
  color: rgba(21, 18, 13, 0.72);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.78);
  padding: 0 clamp(20px, 4vw, 54px);
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(205, 168, 90, 0.28);
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.brand-logo {
  width: 86px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(205, 168, 90, 0.58);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(205, 168, 90, 0.32), rgba(255, 255, 255, 0.035)),
    var(--surface);
  color: var(--gold-bright);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 11px 12px;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-group.is-active > .nav-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-dropdown-toggle {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  margin-left: -8px;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-group:hover .nav-dropdown-toggle::before,
.nav-group:focus-within .nav-dropdown-toggle::before,
.nav-group.is-dropdown-open .nav-dropdown-toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 250px;
  max-width: 320px;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(5, 5, 5, 0.97);
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown a {
  display: block;
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.25;
}

.nav-dropdown a:hover {
  background: rgba(205, 168, 90, 0.16);
  color: #fff;
  transform: none;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-dropdown-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .nav-phone {
  color: var(--gold-bright);
}

.site-nav .nav-cta {
  margin-left: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(205, 168, 90, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: #fff;
  color: var(--ink);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  padding: 136px 0 76px;
}

.page-hero {
  min-height: 520px;
  scroll-margin-top: 0;
}

.legal-hero {
  min-height: 420px;
  background:
    linear-gradient(126deg, rgba(205, 168, 90, 0.18), transparent 34%),
    linear-gradient(240deg, rgba(27, 105, 112, 0.12), transparent 36%),
    linear-gradient(145deg, var(--black), var(--surface));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.74) 46%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.08) 48%),
    linear-gradient(130deg, rgba(205, 168, 90, 0.18), transparent 36%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(248, 241, 231, 0.96));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.hero h1,
.page-hero h1 {
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.62;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold-bright);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 860;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 520ms ease;
}

.button-primary:hover::after {
  transform: translateX(120%);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.button-quiet {
  border-color: transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.section-light .button-secondary,
.section-dark .button-secondary,
.section-gold .button-secondary,
.contact-card .button-secondary {
  border-color: var(--line-dark);
  background: rgba(21, 18, 13, 0.05);
  color: var(--ink);
}

.section-light .button-quiet,
.section-dark .button-quiet,
.section-gold .button-quiet {
  color: rgba(21, 18, 13, 0.72);
}

.trust-section {
  padding: 26px 0 66px;
  background:
    linear-gradient(180deg, rgba(248, 241, 231, 0), #f3eadc 44%),
    var(--cream);
}

.home-trust-line {
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.34);
}

.home-trust-line .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.home-trust-line span {
  padding: 20px 18px;
  color: rgba(21, 18, 13, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.home-trust-line span + span {
  border-left: 1px solid var(--line-dark);
}

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

.trust-card {
  position: relative;
  min-height: 118px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46)),
    linear-gradient(180deg, rgba(27, 105, 112, 0.055), transparent);
  padding: 20px;
  overflow: hidden;
}

.trust-card strong {
  display: block;
  color: #72541e;
  font-size: 1.36rem;
  line-height: 1.15;
}

.trust-card span {
  display: block;
  margin-top: 8px;
  color: rgba(21, 18, 13, 0.66);
  line-height: 1.5;
}

.card-grid,
.feature-grid,
.packages-grid,
.reviews-grid,
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.feature-card,
.package-card,
.review-card,
.contact-card,
.faq-list details {
  border-radius: var(--radius);
}

.info-card,
.feature-card,
.package-card,
.review-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(27, 105, 112, 0.06), transparent);
  box-shadow: var(--shadow);
  padding: clamp(22px, 2.2vw, 28px);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.trust-card,
.contact-card {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.info-card::before,
.package-card::before,
.review-card::before,
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 215, 138, 0.72), transparent);
}

.info-card:hover,
.feature-card:hover,
.package-card:hover,
.review-card:hover,
.contact-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 168, 90, 0.46);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.28);
}

.section-light .info-card,
.section-light .feature-card,
.section-light .package-card,
.section-light .review-card,
.section-dark .info-card,
.section-dark .feature-card,
.section-dark .package-card,
.section-dark .review-card,
.contact-card {
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.5)),
    linear-gradient(180deg, rgba(27, 105, 112, 0.06), transparent);
  box-shadow: 0 20px 55px rgba(21, 18, 13, 0.08);
}

.section-gold .info-card,
.section-gold .feature-card,
.section-gold .package-card,
.section-gold .review-card {
  border: 1px solid rgba(97, 71, 19, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 250, 233, 0.36)),
    linear-gradient(180deg, rgba(255, 237, 164, 0.44), rgba(153, 107, 21, 0.08));
  box-shadow: 0 24px 65px rgba(98, 71, 18, 0.18);
}

.info-card img,
.feature-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-radius: var(--radius);
  margin-bottom: 20px;
  filter: saturate(0.92) contrast(1.04);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.feature-card:hover img,
.info-card:hover img {
  filter: saturate(1.02) contrast(1.06);
  transform: scale(1.015);
}

.feature-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
}

.feature-card span {
  margin-top: 4px;
  color: #72541e;
  font-size: 0.9rem;
  font-weight: 860;
  text-transform: uppercase;
}

.feature-card p,
.package-card p,
.review-card blockquote {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.media-frame img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.bullet-list p {
  margin: 0;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.78);
}

.gallery-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-showcase-head .section-heading {
  margin-bottom: 0;
}

.gallery-showcase-head .cta-row {
  justify-content: flex-end;
  margin-top: 0;
}

.gallery-preview,
.gallery-masonry {
  display: grid;
  gap: 12px;
}

.gallery-preview {
  --gallery-row-height: clamp(230px, 22vw, 292px);

  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, var(--gallery-row-height));
  min-height: calc((var(--gallery-row-height) * 2) + 12px);
  align-self: stretch;
}

.gallery-masonry {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.06);
  filter: saturate(0.92) contrast(1.02);
  transition:
    filter 220ms ease,
    transform 260ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.02) contrast(1.05);
  transform: scale(1.035);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.78));
}

.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  gap: 3px;
  color: #fff;
}

.gallery-card figcaption strong {
  font-size: 1rem;
}

.gallery-card figcaption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

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

.gallery-card-feature {
  grid-row: span 2;
}

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

.packages-grid {
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
}

.package-featured {
  border-color: rgba(205, 168, 90, 0.72);
  background:
    linear-gradient(145deg, rgba(205, 168, 90, 0.23), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(27, 105, 112, 0.08), transparent);
}

.section-light .package-featured {
  background:
    linear-gradient(145deg, rgba(205, 168, 90, 0.24), rgba(255, 255, 255, 0.8)),
    linear-gradient(180deg, rgba(27, 105, 112, 0.07), transparent);
}

.price {
  color: var(--gold-bright);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.1;
}

.section-light .price {
  color: #694b18;
}

.package-duration {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  border: 1px solid rgba(205, 168, 90, 0.5);
  border-radius: 8px;
  background: rgba(205, 168, 90, 0.1);
  color: var(--gold-bright);
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 860;
  line-height: 1.2;
}

.section-light .package-duration {
  border-color: rgba(114, 84, 30, 0.38);
  background: rgba(205, 168, 90, 0.15);
  color: #694b18;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.section-light .package-card ul {
  color: rgba(21, 18, 13, 0.72);
}

.package-card .button {
  margin-top: auto;
}

.reviews-section {
  overflow: hidden;
  background: #f7f1e8;
}

.review-rail-shell {
  position: relative;
}

.reviews-section .reviews-rail {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  overflow-x: auto;
  padding: 4px max(0px, calc((100vw - var(--container)) / 2)) 22px 0;
  scroll-behavior: smooth;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(114, 84, 30, 0.38) transparent;
  scrollbar-width: thin;
}

.reviews-section .review-card {
  width: clamp(300px, 34vw, 430px);
  min-width: clamp(300px, 34vw, 430px);
  min-height: 220px;
  flex: 0 0 auto;
  border: 0;
  border-left: 1px solid rgba(114, 84, 30, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px 32px;
  scroll-snap-align: start;
}

.reviews-section .review-card::before {
  display: none;
}

.reviews-section .review-card:hover {
  transform: none;
  border-color: rgba(114, 84, 30, 0.48);
  box-shadow: none;
}

.review-rail-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.review-nav-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(21, 18, 13, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.review-nav-button:hover {
  border-color: rgba(114, 84, 30, 0.54);
  background: rgba(205, 168, 90, 0.1);
}

.stars {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-weight: 900;
}

.review-card blockquote {
  margin: 0;
  color: rgba(21, 18, 13, 0.72);
  line-height: 1.7;
}

.review-card cite {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-style: normal;
  font-weight: 820;
}

.review-card cite a {
  color: inherit;
}

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

.faq-list details {
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.56)),
    linear-gradient(180deg, rgba(27, 105, 112, 0.06), transparent);
  padding: 0 22px;
  box-shadow: 0 16px 38px rgba(21, 18, 13, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
}

.faq-list details[open] {
  border-color: rgba(205, 168, 90, 0.44);
}

.lead-section {
  background:
    linear-gradient(128deg, rgba(205, 168, 90, 0.12), transparent 36%),
    linear-gradient(238deg, rgba(27, 105, 112, 0.08), transparent 38%),
    linear-gradient(180deg, #f4ecdf, #eadcca);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-stack a {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: rgba(21, 18, 13, 0.76);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 820;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.contact-stack a:hover {
  border-color: rgba(205, 168, 90, 0.44);
  color: var(--ink);
  transform: translateX(3px);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.5);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full,
.form-button,
.form-note {
  grid-column: 1 / -1;
}

.form-field label {
  color: rgba(21, 18, 13, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-field label span,
.form-note {
  color: rgba(21, 18, 13, 0.58);
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 18, 13, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  padding: 14px 13px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(243, 217, 144, 0.78);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(205, 168, 90, 0.13);
  outline: 0;
}

.lead-form textarea {
  min-height: 128px;
  resize: vertical;
}

.lead-form ::placeholder {
  color: rgba(21, 18, 13, 0.38);
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.contact-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  display: grid;
  min-height: 180px;
  align-content: start;
  border: 1px solid var(--line-dark);
  padding: 24px;
  color: var(--ink);
}

.contact-card span {
  color: #72541e;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: 12px;
  font-size: 1.28rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 10px 14px;
  color: rgba(21, 18, 13, 0.74);
  font-weight: 780;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
}

.compare-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px;
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(205, 168, 90, 0.14);
  color: #fff;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.final-cta {
  padding: 78px 0;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.final-cta h2 {
  font-size: 3rem;
}

.legal-content {
  display: grid;
  max-width: 880px;
  gap: 34px;
}

.legal-content section {
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 28px;
}

.legal-content h2 {
  font-size: 1.55rem;
}

.product-card-grid,
.backdrop-grid,
.blog-grid,
.client-tool-grid,
.staff-grid,
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.product-card-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin: 0 auto;
  gap: 28px;
}

.service-area-grid {
  align-items: start;
}

.product-card img {
  width: 100%;
  height: clamp(210px, 18vw, 270px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.product-card {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
  overflow: visible;
}

.product-card::before {
  display: none;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.product-card h3 {
  margin-top: 8px;
}

.product-card p {
  min-height: 0;
  font-size: 0.98rem;
}

.product-card span {
  display: inline-flex;
  width: fit-content;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  font-size: 0.74rem;
  letter-spacing: 0;
}

.product-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid rgba(205, 168, 90, 0.62);
  color: #72541e;
  padding-top: 14px;
  font-size: 0.92rem;
}

.section-dark .product-card strong {
  color: #72541e;
}

.home-options-section .section-heading {
  max-width: 760px;
}

.home-options-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.home-options-section > .container {
  width: min(calc(100% - 96px), 1560px);
}

.home-options-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  gap: clamp(24px, 2.2vw, 38px);
}

.home-option-card {
  display: block;
}

.home-option-media {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
}

.home-option-media img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.home-media-contain img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-position: center 18%;
}

.home-option-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: transparent;
}

.home-option-pair img,
.home-option-pair.home-media-contain img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
}

.home-option-card:hover {
  transform: none;
}

.home-option-card:hover .home-option-media img {
  filter: none;
  transform: none;
}

.home-option-card h3 {
  margin-top: 6px;
}

.home-option-card p {
  max-width: 26rem;
  margin-top: 10px;
  line-height: 1.55;
}

@media (max-width: 1280px) {
  .home-options-section > .container {
    width: min(calc(100% - 56px), 1180px);
  }

  .home-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 30px;
  }
}

.home-essentials-section,
.service-area-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.frameless-media {
  margin: 0;
}

.frameless-media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.home-essentials-section .feature-list {
  margin-bottom: 28px;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 18px;
  align-items: stretch;
}

.home-proof-grid figure {
  margin: 0;
}

.home-proof-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.home-proof-grid figcaption {
  margin-top: 10px;
  color: rgba(21, 18, 13, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.service-area-simple span {
  border-bottom: 1px solid rgba(21, 18, 13, 0.16);
  color: rgba(21, 18, 13, 0.78);
  padding: 12px 0;
  font-weight: 800;
}

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

.effect-section .split-section {
  align-items: stretch;
}

.effect-options-section {
  padding-top: 78px;
}

.effect-options-section .section-heading {
  max-width: 660px;
  margin-bottom: 28px;
}

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

.effect-style-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 50px rgba(21, 18, 13, 0.09);
}

.effect-style-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
  object-position: center top;
  background: rgba(255, 255, 255, 0.42);
}

.effect-style-card div {
  padding: 18px;
}

.effect-style-card h3 {
  font-size: 1.22rem;
}

.effect-style-card p:last-child {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.effect-options-cta-row {
  margin-top: 28px;
}

.event-types-section {
  padding: 82px 0 88px;
}

.event-types-section .section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.event-types-section .feature-grid {
  max-width: 1020px;
  margin: 0 auto;
}

.event-types-section .feature-card img {
  aspect-ratio: 5 / 3.6;
  object-position: center 28%;
}

.example-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 100%;
}

.example-card {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-light .example-card {
  border-color: var(--line-dark);
  box-shadow: 0 18px 50px rgba(21, 18, 13, 0.1);
}

.example-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: saturate(0.94) contrast(1.04);
}

.backdrop-card img {
  aspect-ratio: 1 / 1;
  height: auto;
  background:
    linear-gradient(145deg, rgba(205, 168, 90, 0.1), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.55);
  object-position: center;
}

.backdrop-color-panel {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  box-sizing: border-box;
  align-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(233, 220, 201, 0.58)),
    linear-gradient(180deg, rgba(205, 168, 90, 0.12), transparent);
  margin-bottom: 20px;
  overflow: hidden;
  padding: clamp(18px, 2vw, 24px);
}

.color-swatch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.backdrop-color-panel .color-swatch-grid {
  justify-content: center;
  margin-top: 0;
}

.color-swatch-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(21, 18, 13, 0.78);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 820;
}

.color-swatch-grid span::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(21, 18, 13, 0.18);
  border-radius: 50%;
  background: #f7f1e5;
}

.color-swatch-grid [data-color="white"]::before {
  background: #fbf9f2;
}

.color-swatch-grid [data-color="ivory"]::before {
  background: #eee2ca;
}

.color-swatch-grid [data-color="black"]::before {
  background: #050505;
}

.color-swatch-grid [data-color="gray"]::before {
  background: #8b8f92;
}

.color-swatch-grid [data-color="navy"]::before {
  background: #1c2b47;
}

.color-swatch-grid [data-color="blush"]::before {
  background: #e9b8bc;
}

.color-swatch-grid [data-color="red"]::before {
  background: #a72126;
}

.color-swatch-grid [data-color="emerald"]::before {
  background: #0f6a45;
}

.color-swatch-grid [data-color="gold"]::before {
  background: #d0a742;
}

.color-swatch-grid [data-color="champagne"]::before {
  background: #e4d1a5;
}

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

.backdrop-lookbook-card {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 42px rgba(21, 18, 13, 0.08);
}

.backdrop-lookbook-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
}

.backdrop-lookbook-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(12px);
}

.example-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.68);
  color: #fff;
  padding: 10px 12px;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.backdrop-card .cta-row,
.package-card .cta-row {
  margin-top: auto;
}

.backdrop-card .button,
.package-card .button {
  width: 100%;
  margin-top: 10px;
}

.city-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-area-card:first-child {
  grid-column: 1 / -1;
}

.service-area-card:first-child .city-link-grid {
  max-width: 980px;
}

.city-link-grid a,
.city-link-grid span {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: rgba(21, 18, 13, 0.78);
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 820;
}

.city-link-grid a:hover {
  border-color: rgba(205, 168, 90, 0.58);
  color: var(--ink);
}

.deposit-note,
.integration-note {
  border: 1px solid rgba(205, 168, 90, 0.25);
  border-radius: var(--radius);
  background: rgba(205, 168, 90, 0.07);
  color: rgba(21, 18, 13, 0.62);
  padding: 11px 13px;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.55;
}

.section-light .deposit-note,
.section-light .integration-note,
.section-dark .deposit-note,
.section-dark .integration-note {
  color: rgba(21, 18, 13, 0.62);
}

.checkbox-field {
  border: 1px solid rgba(21, 18, 13, 0.14);
  border-radius: var(--radius);
  padding: 14px;
}

.checkbox-field legend {
  color: rgba(21, 18, 13, 0.78);
  font-weight: 800;
  padding: 0 6px;
}

.checkbox-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 12px 4px 0;
}

.checkbox-field input {
  width: auto;
  accent-color: var(--gold);
}

.integration-note {
  margin: 0;
}

.integration-note span {
  color: rgba(21, 18, 13, 0.62);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.55;
}

.download-panel {
  margin-top: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.54)),
    linear-gradient(180deg, rgba(27, 105, 112, 0.06), transparent);
  padding: 28px;
  box-shadow: 0 20px 55px rgba(21, 18, 13, 0.08);
}

.service-price {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 20px;
  border: 1px solid rgba(205, 168, 90, 0.38);
  border-radius: var(--radius);
  background: rgba(205, 168, 90, 0.12);
  color: #694b18;
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 880;
}

.service-overview-panel {
  max-width: 920px;
  margin: 0 auto;
}

.service-overview-panel .section-heading {
  margin-bottom: 24px;
}

.service-overview-panel .feature-list {
  max-width: 860px;
}

.section-dark .service-price {
  color: #72541e;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--line-dark);
  border-left: 3px solid rgba(205, 168, 90, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  color: rgba(21, 18, 13, 0.76);
  padding: 11px 13px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.section-dark .feature-list li {
  border-color: rgba(21, 18, 13, 0.12);
  border-left-color: rgba(205, 168, 90, 0.72);
  background: rgba(255, 255, 255, 0.38);
  color: rgba(21, 18, 13, 0.76);
}

.service-media {
  position: relative;
  background: transparent;
  display: grid;
  align-items: center;
}

.service-media img,
.service-intro-section .media-frame img {
  aspect-ratio: auto;
  min-height: clamp(280px, 34vw, 560px);
  max-height: min(72vh, 760px);
  object-fit: contain;
  object-position: center;
}

.service-media figcaption {
  display: none;
}

.example-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.example-tile {
  display: grid;
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.example-tile img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.example-tile div {
  position: static;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  backdrop-filter: none;
}

.example-tile span {
  display: none;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
}

.example-tile h3 {
  margin: 0;
  font-size: 1rem;
}

.example-tile p {
  display: none;
  margin-top: 7px;
  color: rgba(21, 18, 13, 0.7);
  font-size: 0.88rem;
  line-height: 1.45;
}

.service-route {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  counter-reset: route;
}

.california-coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.california-coverage-layout .service-route {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.california-map-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.california-map-card svg {
  width: 100%;
  height: auto;
}

.map-state {
  fill: rgba(205, 168, 90, 0.13);
  stroke: rgba(114, 84, 30, 0.34);
  stroke-width: 3;
}

.map-coast {
  fill: none;
  stroke: rgba(27, 105, 112, 0.4);
  stroke-width: 4;
  stroke-linecap: round;
}

.map-route {
  fill: none;
  stroke: #b88d36;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-stop circle {
  fill: var(--gold);
  stroke: #fff7e5;
  stroke-width: 4;
  filter: drop-shadow(0 5px 10px rgba(21, 18, 13, 0.18));
}

.map-stop text {
  fill: rgba(21, 18, 13, 0.78);
  font-size: 16px;
  font-weight: 850;
}

.map-summary {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.map-summary span {
  color: #72541e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-summary strong {
  color: rgba(21, 18, 13, 0.82);
  line-height: 1.45;
}

.service-route span {
  position: relative;
  display: grid;
  min-height: 94px;
  align-items: center;
  border-top: 2px solid rgba(205, 168, 90, 0.42);
  color: rgba(21, 18, 13, 0.78);
  padding: 24px 12px 0;
  font-weight: 860;
  text-align: center;
}

.california-coverage-layout .service-route span {
  min-height: auto;
  border: 0;
  border-left: 4px solid rgba(184, 141, 54, 0.62);
  border-radius: 0;
  background: transparent;
  padding: 13px 14px;
  text-align: left;
}

.service-route span::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(205, 168, 90, 0.42);
}

.service-route span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -8px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(205, 168, 90, 0.7);
  border-right: 2px solid rgba(205, 168, 90, 0.7);
  transform: rotate(45deg);
}

.california-coverage-layout .service-route span::before,
.california-coverage-layout .service-route span::after {
  display: none;
}

.popular-area-title {
  margin: 24px 0 10px;
  color: #72541e;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-dark .popular-area-title {
  color: #72541e;
}

.client-example-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.client-example-strip figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.section-dark .client-example-strip figure {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.52);
}

.client-example-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: rgba(255, 255, 255, 0.38);
}

.client-example-strip figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.68);
  color: #fff;
  padding: 5px 8px;
  font-size: 0.76rem;
  font-weight: 850;
}

.client-tool-lists {
  display: grid;
  gap: 18px;
  margin-top: 4px;
}

.gallery-card,
.backdrop-lookbook-card,
.example-card,
.example-tile {
  border: 0;
  box-shadow: none;
}

.client-tools-overview .section-heading {
  margin-bottom: 58px;
}

.client-tool-clean-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 34px;
}

.client-tool-card {
  display: grid;
  gap: 20px;
  align-content: start;
}

.client-tool-card > img {
  width: 100%;
  height: auto;
  max-height: 460px;
  aspect-ratio: auto;
  border-radius: 10px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.client-tool-card h3 {
  max-width: 560px;
  font-size: clamp(1.7rem, 2.2vw, 2.28rem);
  line-height: 1.02;
}

.client-tool-card p:not(.card-kicker) {
  max-width: 600px;
}

.client-tool-card .feature-list {
  max-width: 640px;
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid rgba(114, 84, 30, 0.55);
  color: #72541e;
  padding-bottom: 4px;
  font-weight: 850;
}

.crm-form-status {
  min-height: 24px;
}

.crm-form-status.is-error {
  color: #9f3322;
}

.crm-form-status.is-success {
  color: #5d4818;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  margin: 20px 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black-soft);
  color: #fff;
  padding: 62px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.75fr 0.95fr;
  gap: 30px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-brand p {
  max-width: 360px;
}

.footer-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-ctas a,
.footer-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 820;
}

.mobile-cta {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.86);
  padding: 8px;
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 860;
  text-align: center;
}

.mobile-cta a:last-child {
  background: var(--gold-bright);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroImageDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(1.5%, -1%, 0);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg img {
    animation: heroImageDrift 18s ease-out both;
  }

  .hero-inner {
    animation: heroContentIn 720ms ease-out both;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    font-size: 0.88rem;
  }

  .site-nav a {
    padding: 10px 9px;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.75rem;
  }
}

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

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100dvh - var(--header-height) - 28px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.97);
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

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

  .site-nav a {
    display: block;
    border-radius: var(--radius);
    padding: 14px;
  }

  .nav-group {
    display: block;
    border-radius: var(--radius);
  }

  .nav-group.has-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  .nav-group.has-dropdown > .nav-link {
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .nav-dropdown-toggle {
    width: 44px;
    height: 44px;
    margin-left: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-dropdown {
    position: static;
    grid-column: 1 / -1;
    display: none;
    min-width: 0;
    max-width: none;
    margin: 0 0 6px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group.is-dropdown-open .nav-dropdown {
    display: grid;
  }

  .nav-group:hover .nav-dropdown:not(.is-open),
  .nav-group:focus-within .nav-dropdown:not(.is-open) {
    transform: none;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .trust-grid,
  .card-grid,
  .feature-grid,
  .packages-grid,
  .reviews-grid,
  .contact-card-grid,
  .product-card-grid,
  .effect-style-grid,
  .backdrop-grid,
  .blog-grid,
  .client-tool-grid,
  .staff-grid,
  .service-area-grid,
  .backdrop-lookbook-grid,
  .example-gallery,
  .example-showcase,
  .client-example-strip,
  .service-route {
    grid-template-columns: repeat(2, 1fr);
  }

	  .split-section,
	  .split-section.reverse,
	  .lead-grid,
	  .gallery-showcase-head,
	  .california-coverage-layout,
	  .client-tool-card,
	  .footer-grid,
	  .final-cta-inner {
	    grid-template-columns: 1fr;
	  }

  .client-tool-card:nth-child(even) > img,
  .client-tool-card:nth-child(even) > div {
    grid-column: auto;
    grid-row: auto;
  }

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

  .gallery-showcase-head .cta-row {
    justify-content: flex-start;
  }

  .final-cta-inner .cta-row {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .home-options-section > .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 0 14px;
  }

  .section {
    padding: 72px 0;
  }

  .hero,
  .page-hero {
    min-height: 610px;
    padding: 122px 0 64px;
  }

  .page-hero {
    min-height: 500px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.68)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.1));
  }

  .hero-bg img {
    object-position: 58% center;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2.16rem;
  }

  h3 {
    font-size: 1.34rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 18px;
    padding-left: 18px;
  }

  .trust-grid,
  .card-grid,
  .feature-grid,
  .packages-grid,
  .reviews-grid,
  .contact-card-grid,
  .product-card-grid,
  .effect-style-grid,
  .backdrop-grid,
  .blog-grid,
  .client-tool-grid,
  .staff-grid,
  .service-area-grid,
  .backdrop-lookbook-grid,
  .example-gallery,
  .example-showcase,
  .client-example-strip,
  .service-route,
  .home-proof-grid,
  .service-area-simple,
  .feature-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .trust-section {
    padding-bottom: 44px;
  }

  .info-card,
  .feature-card,
  .package-card,
  .review-card,
  .contact-card {
    padding: 22px;
  }

  .gallery-preview,
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .gallery-preview {
    grid-template-rows: none;
    min-height: 0;
  }

  .home-proof-grid img {
    min-height: 260px;
  }

  .home-options-grid {
    gap: 42px;
  }

  .home-trust-line .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-trust-line span:nth-child(3) {
    border-left: 0;
  }

  .home-trust-line span:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .reviews-section .reviews-rail {
    gap: 24px;
    padding-bottom: 18px;
  }

  .reviews-section .review-card {
    width: min(84vw, 360px);
    min-width: min(84vw, 360px);
    min-height: 210px;
    padding: 8px 22px;
  }

  .review-rail-controls {
    justify-content: flex-start;
  }

  .client-tool-clean-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .client-tool-card > img {
    height: auto;
    max-height: 360px;
    aspect-ratio: auto;
  }

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

	  .media-frame img {
	    min-height: 0;
	  }

  .lead-form {
    padding: 18px;
  }

  .example-card {
    min-height: 430px;
  }

  .example-tile img {
    aspect-ratio: auto;
  }

  .service-route {
    gap: 10px;
  }

	  .service-route span {
	    min-height: auto;
	    border: 1px solid var(--line-dark);
	    border-radius: var(--radius);
	    background: rgba(255, 255, 255, 0.52);
	    padding: 12px 14px;
	    text-align: left;
	  }

  .service-route span::before,
  .service-route span::after {
    display: none;
  }

  .checkbox-field label {
    display: flex;
    margin-right: 0;
  }

  .footer-grid {
    gap: 24px;
  }

  .mobile-cta {
    display: grid;
    bottom: max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .gallery-preview,
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 232px;
  }

  .gallery-card-feature {
    grid-row: auto;
  }

  .mobile-cta a {
    min-height: 44px;
    font-size: 0.84rem;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.34rem;
  }

  h2,
  .final-cta h2 {
    font-size: 1.84rem;
  }

	  .mobile-cta {
	    gap: 6px;
	  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

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