:root {
  --black: #050505;
  --ink: #0a0a0a;
  --charcoal: #151515;
  --ivory: #f3ebdd;
  --white: #fffdf8;
  --muted: #a7a095;
  --gold: #d6a84a;
  --gold-bright: #f5c45b;
  --hairline: rgba(214, 168, 74, 0.34);
  --header-height: 76px;
  --content: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Raleway", system-ui, sans-serif;
  --bg-primary: var(--black);
  --bg-secondary: var(--charcoal);
  --bg-light: var(--ivory);
  --accent-gold: var(--gold);
  --accent-gold-hover: var(--gold-bright);
  --text-primary: var(--ivory);
  --text-secondary: var(--muted);
  --text-dark: #191714;
  --max-width: var(--content);
  --section-padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at 70% 8%, rgba(214, 168, 74, 0.08), transparent 28rem), var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.22;
  background-image: radial-gradient(circle at 20% 30%, rgba(245, 196, 91, .08) 0 1px, transparent 1.5px), radial-gradient(circle at 75% 65%, rgba(243, 235, 221, .06) 0 1px, transparent 1.5px);
  background-size: 150px 150px, 210px 210px;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 2000;
  padding: .75rem 1rem;
  background: var(--gold-bright);
  color: var(--black);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(245px, auto) 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: .75rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(7, 7, 7, .96), rgba(7, 7, 7, .82));
  backdrop-filter: blur(18px) saturate(130%);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(5, 5, 5, .95); box-shadow: 0 14px 40px rgba(0, 0, 0, .32); }
.brand-lockup { display: flex; align-items: center; gap: .9rem; min-width: 0; text-decoration: none; }
.brand-lockup img {
  width: 144px;
  height: 45px;
  object-fit: cover;
  border: 1px solid rgba(243, 235, 221, .54);
  border-radius: 7px;
  box-shadow: 0 0 18px rgba(214, 168, 74, .14);
}
.brand-lockup span {
  color: var(--ivory);
  font: 600 .7rem/1.2 var(--font-display);
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-navigation { display: flex; justify-content: flex-end; align-items: center; gap: clamp(1.25rem, 2vw, 2.35rem); }
.site-navigation a {
  position: relative;
  padding: .8rem 0;
  color: #d9d4cb;
  font: 600 .72rem/1 var(--font-display);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .38rem;
  left: 0;
  height: 1px;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-navigation a:hover, .site-navigation a:focus-visible, .site-navigation a.is-active { color: var(--gold-bright); }
.site-navigation a:hover::after, .site-navigation a:focus-visible::after, .site-navigation a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--ink);
}
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--gold-bright); transition: transform .2s ease, opacity .2s ease; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .85rem 1.6rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ivory);
  font: 600 .72rem/1 var(--font-display);
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.button--compact { min-height: 42px; padding: .7rem 1.25rem; white-space: nowrap; }
.button--gold {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, #ebbd5f 0%, #b9852f 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .42), 0 0 0 3px rgba(214, 168, 74, .1), 0 0 22px rgba(245, 196, 91, .16);
  color: #0b0905;
}
.button--gold:hover, .button--gold:focus-visible {
  background: linear-gradient(180deg, #ffd57d 0%, #ca9438 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .55), 0 0 0 4px rgba(214, 168, 74, .14), 0 0 28px rgba(245, 196, 91, .28);
}
.button--outline { background: linear-gradient(180deg, rgba(34, 33, 31, .8), rgba(5, 5, 5, .92)); box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 0 0 3px rgba(214, 168, 74, .06); }
.button--outline:hover, .button--outline:focus-visible { border-color: var(--gold-bright); background: rgba(214, 168, 74, .09); }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  isolation: isolate;
}
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { z-index: -3; object-fit: cover; object-position: center 44%; filter: saturate(.66) contrast(1.1) brightness(.78); transform: scale(1.015); }
.hero__shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 3, 3, .98) 0%, rgba(3, 3, 3, .82) 31%, rgba(3, 3, 3, .3) 63%, rgba(3, 3, 3, .22) 100%), linear-gradient(180deg, rgba(3, 3, 3, .15), rgba(3, 3, 3, .22) 65%, #050505 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: var(--header-height);
  left: 0;
  width: min(70vw, 900px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 20px 3px rgba(245, 196, 91, .28);
}
.hero__content { width: min(100% - 2rem, var(--content)); margin: calc(var(--header-height) + 2rem) auto 0; padding: clamp(4rem, 9vw, 8rem) 0; }
.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--gold-bright);
  font: 600 .7rem/1.4 var(--font-display);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .preview-band h2, .local-story h2, .final-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 { max-width: 940px; font-size: clamp(2.7rem, 6.4vw, 6.8rem); }
.hero h1 span { color: var(--gold-bright); font-weight: 600; }
.hero__copy { max-width: 590px; margin: 1.8rem 0 0; color: #d2cdc4; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__scroll {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font: 600 .62rem/1 var(--font-display);
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero__scroll span { width: 44px; height: 1px; background: var(--gold); }

.section-shell { width: min(100% - 2rem, var(--content)); margin: 0 auto; }
.services { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 6vw, 7rem); align-items: end; margin-bottom: 3rem; }
.section-heading h2, .preview-band h2, .local-story h2, .final-cta h2 { font-size: clamp(2.2rem, 4.5vw, 4.8rem); }
.section-heading > p { margin: 0 0 .35rem; color: var(--muted); font-size: 1rem; line-height: 1.8; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--charcoal);
  color: var(--ivory);
  text-decoration: none;
  isolation: isolate;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card::before { content: ""; position: absolute; inset: 7px; z-index: 2; border: 1px solid rgba(243, 235, 221, .22); border-radius: calc(var(--radius-md) - 5px); pointer-events: none; }
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-7px);
  border-color: var(--gold-bright);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .46), 0 0 28px rgba(214, 168, 74, .12);
  outline: none;
}
.service-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.04); transition: transform .5s ease, filter .5s ease; }
.service-card:hover img, .service-card:focus-visible img { transform: scale(1.035); filter: saturate(.9) contrast(1.05); }
.service-card__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4, 4, 4, .06) 20%, rgba(4, 4, 4, .5) 56%, rgba(4, 4, 4, .98) 100%); }
.service-card__content { width: 100%; display: grid; gap: .65rem; padding: 2.2rem; }
.service-card__number { color: var(--gold-bright); font: 500 .65rem/1 var(--font-display); letter-spacing: .16em; }
.service-card__label { color: var(--ivory); font: 600 .72rem/1.3 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.service-card strong { max-width: 340px; color: var(--white); font: 500 clamp(1.25rem, 2vw, 1.75rem)/1.25 var(--font-display); letter-spacing: -.02em; }
.service-card__link { margin-top: .55rem; color: var(--gold-bright); font: 600 .68rem/1 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }

.preview-band { padding: clamp(5rem, 9vw, 8rem) 0; border-block: 1px solid rgba(214, 168, 74, .18); background: linear-gradient(180deg, #0d0d0c, #080808); }
.preview-band h2 { margin-bottom: 2.5rem; }
.preview-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 1rem; }
.preview-card { position: relative; min-height: 390px; margin: 0; overflow: hidden; border: 1px solid var(--hairline); border-radius: var(--radius-sm); background: var(--charcoal); }
.preview-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) brightness(.82); transition: transform .45s ease, filter .45s ease; }
.preview-card:hover img { transform: scale(1.035); filter: saturate(.88) brightness(.88); }
.preview-card figcaption { position: absolute; inset: auto 0 0; padding: 2.5rem 1.4rem 1.25rem; background: linear-gradient(transparent, rgba(5,5,5,.94)); color: var(--ivory); font: 600 .74rem/1.4 var(--font-display); letter-spacing: .08em; text-transform: uppercase; }
.preview-card figcaption span { display: block; margin-top: .35rem; color: var(--gold-bright); font-size: .62rem; }

.local-story { display: grid; grid-template-columns: 110px 1.2fr .8fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; padding-block: clamp(5rem, 10vw, 9rem); }
.local-story__mark { width: 92px; height: 92px; object-fit: cover; border: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 0 32px rgba(214, 168, 74, .13); }
.local-story p:last-child { margin: 0; color: var(--muted); line-height: 1.85; }

.final-cta { position: relative; overflow: hidden; border-top: 1px solid var(--hairline); background: #090908; }
.final-cta__glow { position: absolute; inset: -50% 10% auto; height: 330px; background: radial-gradient(ellipse, rgba(214, 168, 74, .16), transparent 68%); pointer-events: none; }
.final-cta__content { position: relative; padding-block: clamp(5.5rem, 11vw, 10rem); text-align: center; }
.final-cta h2 { max-width: 950px; margin-inline: auto; }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.5rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 3rem clamp(1rem, 3vw, 3rem) 2rem;
  border-top: 1px solid rgba(243, 235, 221, .12);
  background: #050505;
  color: var(--muted);
}
.site-footer__brand img { width: 170px; height: 53px; object-fit: cover; border: 1px solid rgba(243, 235, 221, .25); border-radius: 7px; }
.site-footer__brand p { max-width: 420px; margin: 1rem 0 0; font-size: .85rem; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.25rem; }
.site-footer nav a { color: var(--ivory); font: 600 .65rem/1 var(--font-display); letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--gold-bright); }
.site-footer__legal { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(243, 235, 221, .08); font-size: .72rem; }

/* Shared treatment for the existing public service, portfolio, login, and utility pages. */
body:not(.ml-home) { padding-top: var(--header-height); overflow-x: hidden; }
body:not(.ml-home) h1,
body:not(.ml-home) h2,
body:not(.ml-home) h3,
body:not(.ml-home) h4 { color: var(--white); font-family: var(--font-display); letter-spacing: -.02em; }
body:not(.ml-home) h1,
body:not(.ml-home) h2 { text-wrap: balance; }
body:not(.ml-home) p { color: var(--muted); }
body:not(.ml-home) section { padding: var(--section-padding); }
body:not(.ml-home) .container { width: min(100% - 2rem, var(--content)); max-width: none; margin-inline: auto; }

.nav-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  height: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .75rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--hairline);
  background: rgba(5, 5, 5, .92);
  backdrop-filter: blur(18px) saturate(130%);
}
.nav-logo { margin-right: auto; }
.nav-logo img { width: 144px; height: 45px !important; object-fit: cover; border: 1px solid rgba(243,235,221,.5); border-radius: 7px; box-shadow: 0 0 18px rgba(214,168,74,.14); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links a { color: #d9d4cb; font: 600 .68rem/1.2 var(--font-display); letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a.active { color: var(--gold-bright); }
.hamburger { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--hairline); border-radius: 8px; background: var(--ink); cursor: pointer; }
.hamburger span { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--gold-bright); }

body:not(.ml-home) .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font: 600 .7rem/1 var(--font-display);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
body:not(.ml-home) .btn:hover, body:not(.ml-home) .btn:focus-visible { transform: translateY(-2px); }
body:not(.ml-home) .btn-primary {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, #ebbd5f, #b9852f);
  box-shadow: inset 0 1px rgba(255,255,255,.42), 0 0 0 3px rgba(214,168,74,.1), 0 0 22px rgba(245,196,91,.16);
  color: #0b0905;
}
body:not(.ml-home) .btn-secondary { background: linear-gradient(180deg, rgba(34,33,31,.8), rgba(5,5,5,.92)); color: var(--ivory); }
body:not(.ml-home) .btn-secondary:hover, body:not(.ml-home) .btn-secondary:focus-visible { border-color: var(--gold-bright); background: rgba(214,168,74,.09); }

.service-intro {
  position: relative;
  min-height: 620px;
  margin-top: 0 !important;
  display: grid;
  place-items: center;
  padding: clamp(6rem, 11vw, 10rem) 1rem !important;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--hairline) !important;
  background-image: linear-gradient(90deg, rgba(4,4,4,.95), rgba(4,4,4,.5) 58%, rgba(4,4,4,.72)), url('../assets/brand/hero-property-twilight.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}
.service-intro__content { width: min(100% - 2rem, var(--content)); text-align: left; }
.service-intro h1 { max-width: 820px; margin: 0; font-size: clamp(2.8rem, 6vw, 6rem); line-height: .98; text-transform: uppercase; }
.service-intro__copy { max-width: 590px; margin: 1.4rem 0 0; color: #d2cdc4 !important; font-size: 1.08rem; }
.service-intro__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero-section {
  min-height: 680px;
  height: auto !important;
  margin-top: 0;
  padding: clamp(6rem, 12vw, 10rem) 1rem !important;
  border-bottom: 1px solid var(--hairline);
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
}
.hero-section::before { background: linear-gradient(90deg, rgba(4,4,4,.94), rgba(4,4,4,.48) 58%, rgba(4,4,4,.7)), linear-gradient(180deg, transparent 55%, #050505); }
.hero-section .hero-content { max-width: var(--content); width: min(100% - 2rem, var(--content)); padding: 0; text-align: left; }
.hero-section .hero-content h1 { max-width: 900px; margin: 0; color: var(--white); font-size: clamp(3rem, 6vw, 6rem); line-height: .98; text-transform: uppercase; }
.hero-section .hero-content p { max-width: 620px !important; margin: 1.35rem 0 0 !important; color: #d2cdc4; line-height: 1.8; }
.hero-section .hero-buttons { justify-content: flex-start; margin-top: 2rem; }
.hero-section--creative { background-position: center 27%; }

.trust-banner { padding: 1.25rem 1rem !important; border-block: 1px solid var(--hairline); background: #0b0b0a !important; color: var(--gold-bright) !important; font: 600 .72rem/1.6 var(--font-display); letter-spacing: .14em; }
.bg-charcoal { background: linear-gradient(180deg, #11110f, #0b0b0a) !important; }
.bg-black { background: var(--black) !important; }
.text-gold { color: var(--gold-bright) !important; }
.text-white, .text-primary { color: var(--ivory) !important; }
.text-secondary { color: var(--muted) !important; }
.text-dark { color: #29251e !important; }
.text-transform-none { text-transform: none !important; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1rem; }
.card, .package-card, .pricing-card, .fp-card, .addon-section, .portrait-box, .form-container, .placeholder-card {
  border: 1px solid var(--hairline) !important;
  border-radius: var(--radius-md) !important;
  background: linear-gradient(180deg, rgba(29,28,26,.94), rgba(8,8,8,.98)) !important;
  box-shadow: inset 0 1px rgba(255,255,255,.045), 0 18px 45px rgba(0,0,0,.24);
}
.card:hover, .package-card:hover, .placeholder-card:hover { border-color: var(--gold-bright) !important; transform: translateY(-4px); }
.package-card { overflow: hidden; }
.package-card img { min-height: 215px; object-fit: cover; filter: saturate(.72) brightness(.82); }
.package-card h3, .pricing-card h3, .addon-content h3, .service-content h3, .fp-card h4 { color: var(--gold-bright) !important; }
.package-card .price, .price-display, .portrait-tier .price, .price-tag { color: var(--gold-bright) !important; }
.package-card ul, .feature-list, .addon-list { color: var(--ivory) !important; }
.addon-section { padding: clamp(1.5rem, 4vw, 3rem) !important; }
.addon-icon-container { border-radius: 12px; background: linear-gradient(180deg, var(--gold-bright), #aa7729) !important; }
.addon-icon-container svg { fill: #090704; }
.pricing-card { overflow: visible; }
.bundle-badge { border-radius: 999px; background: var(--gold-bright) !important; }
.service-row { border-bottom-color: rgba(214,168,74,.18) !important; }
.service-video, .lite-youtube { overflow: hidden; border: 1px solid var(--hairline) !important; border-radius: var(--radius-sm); background-color: #050505; }
.lite-youtube:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.form-container { padding: clamp(1.25rem, 4vw, 3rem) !important; }
.form-container iframe { border-radius: var(--radius-sm); }
.footer { padding: 2.5rem 1rem !important; border-top: 1px solid var(--hairline) !important; background: #050505 !important; color: var(--muted) !important; }

/* The original, deliberately simple homepage with the new MediaLab visual language. */
.ml-home--simple {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 14%, rgba(245, 196, 91, .1), transparent 26rem),
    radial-gradient(circle at 16% 68%, rgba(214, 168, 74, .06), transparent 24rem),
    linear-gradient(180deg, #020202, #090908 58%, #020202);
}
.ml-home--simple .nav-header {
  border: 1px solid rgba(214, 168, 74, .56);
  border-top: 0;
  background: linear-gradient(180deg, rgba(43, 43, 42, .97), rgba(6, 6, 6, .97) 74%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12), inset 0 -1px rgba(245, 196, 91, .2), 0 12px 34px rgba(0, 0, 0, .52), 0 0 28px rgba(214, 168, 74, .1);
}
.ml-home--simple .nav-logo img {
  border-color: rgba(255, 248, 232, .74);
  box-shadow: 0 0 0 3px rgba(214, 168, 74, .08), 0 0 22px rgba(245, 196, 91, .22);
}
.ml-home--simple .nav-links a { text-shadow: 0 1px 12px rgba(0, 0, 0, .9); }
.ml-home--simple .nav-links a.active { text-shadow: 0 0 14px rgba(245, 196, 91, .34); }
.ml-home--simple .home-banner {
  position: relative;
  padding-top: var(--header-height) !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 196, 91, .55);
  background: #020202 !important;
}
.ml-home--simple .home-banner::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: calc(var(--header-height) + 10px) 10px 10px;
  border: 1px solid rgba(243, 235, 221, .2);
  border-radius: 12px;
  pointer-events: none;
}
.ml-home--simple .home-banner::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: var(--header-height) 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 35%, rgba(0, 0, 0, .26));
  box-shadow: inset 0 1px rgba(255, 255, 255, .07), inset 0 -1px rgba(245, 196, 91, .46);
}
.ml-home--simple .home-banner__frame {
  position: relative;
  width: min(100%, 2560px);
  margin-inline: auto;
  overflow: hidden;
  background: #000;
}
.ml-home--simple .home-banner img {
  width: 100%;
  height: auto;
  filter: contrast(1.06) saturate(.92) brightness(.94);
}
.ml-home--simple .trust-banner {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.2rem) 1rem !important;
  border-block: 1px solid rgba(214, 168, 74, .5);
  background: linear-gradient(180deg, #272725, #0d0d0c 45%, #020202) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), inset 0 -1px rgba(245, 196, 91, .18), 0 16px 40px rgba(0, 0, 0, .42);
}
.ml-home--simple .trust-banner::after {
  content: "";
  position: absolute;
  right: 22%;
  bottom: -1px;
  left: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 18px 2px rgba(245, 196, 91, .28);
}
.ml-home--simple .trust-banner h2 {
  color: var(--ivory) !important;
  font: 500 clamp(1.12rem, 2.55vw, 2.05rem)/1.25 var(--font-display) !important;
  letter-spacing: .105em !important;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .92), 0 0 22px rgba(245, 196, 91, .08);
  text-wrap: balance;
}
.ml-home--simple > .container {
  position: relative;
  width: min(100% - 2rem, var(--content));
  max-width: none;
  margin: 0 auto !important;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}
.ml-home--simple > .container::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% -20vw;
  background:
    radial-gradient(circle at 18% 26%, rgba(245, 196, 91, .1) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 62%, rgba(243, 235, 221, .07) 0 1px, transparent 1.7px);
  background-size: 128px 128px, 184px 184px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}
.ml-home--simple > .container > .text-center p {
  max-width: 820px !important;
  color: #d0c9bf !important;
  font-size: clamp(1rem, 1.6vw, 1.22rem) !important;
  line-height: 1.85 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .88);
}
.ml-home--simple .home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}
.ml-home--simple .home-service-card {
  position: relative;
  min-height: clamp(475px, 40vw, 555px);
  overflow: hidden;
  border: 1px solid rgba(245, 196, 91, .7);
  border-radius: 17px;
  background: #080808;
  box-shadow: inset 0 1px rgba(255, 255, 255, .12), 0 20px 52px rgba(0, 0, 0, .48), 0 0 30px rgba(214, 168, 74, .08);
  color: var(--ivory);
  text-decoration: none;
  isolation: isolate;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.ml-home--simple .home-service-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: 4;
  border: 1px solid rgba(255, 249, 236, .34);
  border-radius: 11px;
  pointer-events: none;
}
.ml-home--simple .home-service-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  left: 8px;
  height: 34%;
  border-radius: 10px 10px 50% 50% / 10px 10px 24% 24%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .015));
  mix-blend-mode: screen;
  opacity: .42;
  pointer-events: none;
}
.ml-home--simple .home-service-card:hover,
.ml-home--simple .home-service-card:focus-visible {
  border-color: #ffd170;
  box-shadow: inset 0 1px rgba(255, 255, 255, .16), 0 25px 62px rgba(0, 0, 0, .58), 0 0 34px rgba(245, 196, 91, .18);
  transform: translateY(-8px);
  outline: none;
}
.ml-home--simple .home-service-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.07) brightness(.78);
  transition: filter .35s ease, transform .45s ease;
}
.ml-home--simple .home-service-card:nth-child(1) > img { object-position: 56% center; }
.ml-home--simple .home-service-card:nth-child(2) > img { object-position: 57% center; }
.ml-home--simple .home-service-card:nth-child(3) > img { object-position: center 23%; }
.ml-home--simple .home-service-card:hover > img,
.ml-home--simple .home-service-card:focus-visible > img { filter: saturate(.91) contrast(1.08) brightness(.87); transform: scale(1.035); }
.ml-home--simple .home-service-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 2, 2, .03) 8%, rgba(2, 2, 2, .16) 35%, rgba(2, 2, 2, .84) 70%, rgba(2, 2, 2, .99) 100%),
    linear-gradient(90deg, rgba(2, 2, 2, .16), transparent 48%, rgba(2, 2, 2, .08));
}
.ml-home--simple .home-service-card__content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.ml-home--simple .home-service-card h3 {
  margin: 0 0 .6rem;
  color: var(--white);
  font: 600 clamp(1.05rem, 1.65vw, 1.38rem)/1.2 var(--font-display);
  letter-spacing: .055em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .94);
  text-transform: uppercase;
}
.ml-home--simple .home-service-card p {
  max-width: 340px;
  margin: 0 0 1.2rem;
  color: #cbc5bc;
  font-size: .93rem;
  line-height: 1.65;
  text-shadow: 0 2px 13px rgba(0, 0, 0, .96);
}
.ml-home--simple .home-service-card__link {
  align-self: flex-start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .68rem .72rem .68rem 1.15rem;
  border: 1px solid rgba(245, 196, 91, .78);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 36, 33, .9), rgba(3, 3, 3, .96));
  box-shadow: inset 0 1px rgba(255, 255, 255, .12), 0 0 0 3px rgba(214, 168, 74, .06), 0 0 18px rgba(245, 196, 91, .08);
  color: var(--gold-bright);
  font: 600 .7rem/1 var(--font-display);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.ml-home--simple .home-service-card__link > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 91, .72);
  border-radius: 50%;
  background: rgba(214, 168, 74, .1);
  box-shadow: 0 0 16px rgba(245, 196, 91, .1);
  font-size: 1rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.ml-home--simple .home-service-card:hover .home-service-card__link > span,
.ml-home--simple .home-service-card:focus-visible .home-service-card__link > span {
  background: linear-gradient(180deg, #f0c263, #b8812b);
  color: #070501;
  transform: translateX(3px);
}
.ml-home--simple .footer {
  border-top-color: rgba(214, 168, 74, .45) !important;
  background: linear-gradient(180deg, #1a1a19, #050505 62%) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .07), 0 -12px 32px rgba(0, 0, 0, .35);
}

/* Dedicated HoneyBook lead capture for Creative & Commercial projects. */
.creative-page .creative-inquiry {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) !important;
  overflow: hidden;
  border-color: rgba(245, 196, 91, .68) !important;
  background:
    radial-gradient(circle at 78% 4%, rgba(245, 196, 91, .1), transparent 18rem),
    linear-gradient(180deg, rgba(31, 30, 28, .98), rgba(4, 4, 4, 1)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .09), 0 22px 58px rgba(0, 0, 0, .42), 0 0 28px rgba(214, 168, 74, .08);
}
.creative-page .creative-inquiry::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(243, 235, 221, .18);
  border-radius: 10px;
  pointer-events: none;
}
.creative-page .creative-inquiry > h2,
.creative-page .creative-inquiry__intro,
.creative-page .creative-inquiry__embed { position: relative; z-index: 1; }
.creative-page .creative-inquiry__intro {
  max-width: 760px;
  color: #d0c9bf !important;
  font-size: 1.08rem;
  line-height: 1.8;
}
.creative-page .creative-inquiry__intro span {
  color: var(--muted);
  font-size: .95rem;
  font-style: italic;
}
.creative-page .creative-inquiry__embed {
  overflow: hidden;
  border: 1px solid rgba(214, 168, 74, .52);
  border-radius: 12px;
  background: #090909;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .38), 0 0 22px rgba(245, 196, 91, .07);
}
.creative-page .creative-inquiry__embed iframe:not([src]),
.creative-page .creative-inquiry__embed iframe[src=""],
.creative-page .creative-inquiry__embed iframe[src="about:blank"] {
  display: none !important;
}
.creative-page .creative-inquiry__fallback {
  margin: 0 !important;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(214, 168, 74, .28);
  background: #090909;
}
.creative-page .creative-inquiry__fallback a { color: var(--gold-bright); font-weight: 600; }

/* Approved wedding content, presented with the dimensional black-and-gold system. */
.wedding-page .hero-section,
.wedding-partner-page .partner-hero,
.wedding-consultation-page .consultation-hero {
  position: relative;
  margin-top: 0 !important;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(214, 168, 74, .58) !important;
  background-position: center 34% !important;
  box-shadow: inset 0 -1px rgba(245, 196, 91, .3), 0 18px 55px rgba(0, 0, 0, .3);
}
.wedding-page .hero-section {
  min-height: min(780px, calc(100svh - var(--header-height)));
  background-position: center 39% !important;
}
.wedding-page .hero-section::before {
  background:
    linear-gradient(90deg, rgba(2, 2, 2, .96) 0%, rgba(2, 2, 2, .78) 31%, rgba(2, 2, 2, .18) 66%, rgba(2, 2, 2, .38) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, .12), rgba(3, 3, 3, .12) 62%, #050505 100%) !important;
}
.wedding-page .hero-section::after,
.wedding-partner-page .partner-hero::after,
.wedding-consultation-page .consultation-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 16%;
  bottom: 0;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 22px 3px rgba(245, 196, 91, .34);
}
.wedding-page .hero-content {
  position: relative;
  z-index: 1;
}
.wedding-page .hero-content h1,
.wedding-partner-page .partner-hero h1,
.wedding-consultation-page .consultation-hero h1 {
  color: var(--white) !important;
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  letter-spacing: -.04em !important;
  line-height: .98 !important;
  text-transform: uppercase !important;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .82);
}
.wedding-page section:not(.hero-section),
.wedding-partner-page main > section:not(.partner-hero),
.wedding-consultation-page main > section:not(.consultation-hero) {
  position: relative;
  border-color: rgba(214, 168, 74, .16) !important;
  background-image: radial-gradient(circle at 78% 5%, rgba(214, 168, 74, .06), transparent 25rem);
}
.wedding-page .service-path,
.wedding-page .collection-card,
.wedding-page .collection-details,
.wedding-page .film-card,
.wedding-page .delivery-frame,
.wedding-partner-page .intro-film-shell,
.wedding-partner-page .team-card,
.wedding-partner-page .business-card,
.wedding-partner-page .deliverable-card,
.wedding-partner-page .partner-collection,
.wedding-partner-page .selection-summary,
.wedding-consultation-page .form-container,
.wedding-consultation-page .form-status {
  border: 1px solid rgba(214, 168, 74, .42) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(31, 30, 28, .96), rgba(5, 5, 5, .99)) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .07), 0 18px 48px rgba(0, 0, 0, .32), 0 0 24px rgba(214, 168, 74, .05);
}
.wedding-page .service-path {
  position: relative;
  max-width: 1180px;
  padding: clamp(2rem, 5vw, 4.25rem) !important;
}
.wedding-page .service-path::after,
.wedding-partner-page .selection-summary::after,
.wedding-consultation-page .form-container::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(243, 235, 221, .16);
  border-radius: 10px;
  pointer-events: none;
}
.wedding-page .collection-card,
.wedding-partner-page .partner-collection {
  min-height: 215px;
  padding: 2rem 1.35rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.wedding-page .collection-card:hover,
.wedding-page .collection-card:focus-visible,
.wedding-page .collection-card.is-selected,
.wedding-partner-page .partner-collection:hover,
.wedding-partner-page .partner-collection:focus-visible,
.wedding-partner-page .partner-collection.is-selected {
  border-color: var(--gold-bright) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .1), 0 16px 42px rgba(0, 0, 0, .38), 0 0 28px rgba(245, 196, 91, .13) !important;
  transform: translateY(-5px);
}
.wedding-page .collection-badge {
  border: 1px solid rgba(255, 229, 172, .65);
  border-radius: 999px;
  background: linear-gradient(180deg, #f3c768, #b47f29) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .46), 0 0 20px rgba(245, 196, 91, .14);
}
.wedding-page .collection-name,
.wedding-partner-page .collection-name { color: var(--ivory) !important; font-family: var(--font-display) !important; }
.wedding-page .collection-details,
.wedding-partner-page .selection-summary { position: relative; padding: clamp(1.7rem, 4vw, 3rem) !important; }
.wedding-page .film-card { overflow: hidden; padding: 8px 8px 0; }
.wedding-page .film-card figcaption { padding: .9rem .6rem 1rem; color: var(--ivory); }
.wedding-page .delivery-frame,
.wedding-partner-page .intro-film-shell { overflow: hidden; border-color: rgba(245, 196, 91, .72) !important; box-shadow: 0 20px 58px rgba(0, 0, 0, .46), 0 0 28px rgba(245, 196, 91, .1); }
.wedding-partner-page .partner-hero {
  min-height: min(760px, calc(100svh - var(--header-height)));
  justify-content: flex-start !important;
  padding-inline: max(1.5rem, calc((100vw - var(--content)) / 2)) !important;
  background-image:
    linear-gradient(90deg, rgba(2, 2, 2, .96), rgba(2, 2, 2, .76) 38%, rgba(2, 2, 2, .18) 70%),
    url('../assets/brand/wedding-editorial.jpg') !important;
  text-align: left !important;
}
.wedding-partner-page .partner-hero-inner { max-width: 650px; margin: 0; }
.wedding-partner-page .partner-hero p { margin-left: 0; color: #d2cdc4; }
.wedding-partner-page .partner-hero .cta-row { justify-content: flex-start; }
.wedding-partner-page .team-card,
.wedding-partner-page .business-card,
.wedding-partner-page .deliverable-card { padding: clamp(1.6rem, 4vw, 2.5rem); }
.wedding-partner-page .team-card:first-child { border-top-width: 1px; }
.wedding-partner-page .cta-band {
  border-block: 1px solid rgba(214, 168, 74, .38) !important;
  background: linear-gradient(180deg, #171716, #050505) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}
.wedding-consultation-page .consultation-hero {
  min-height: 500px;
  background-image:
    linear-gradient(90deg, rgba(2, 2, 2, .92), rgba(2, 2, 2, .5) 56%, rgba(2, 2, 2, .3)),
    url('../assets/brand/wedding-editorial.jpg') !important;
}
.wedding-consultation-page .form-container {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) !important;
}
.wedding-consultation-page .honeybook-form { position: relative; z-index: 1; }

body:not(.ml-home) :focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 1rem; }
  .brand-lockup span { display: none; }
  .site-navigation { gap: 1.2rem; }
  .service-card { min-height: 440px; }
}

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > .button { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-navigation {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: .8rem 1.2rem;
    border: 1px solid var(--hairline);
    border-radius: 0 0 12px 12px;
    background: rgba(8, 8, 8, .98);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-navigation.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-navigation a { border-bottom: 1px solid rgba(243, 235, 221, .08); padding: 1rem .2rem; }
  .site-navigation a:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 430px; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .preview-card--wide { grid-column: 1 / -1; }
  .local-story { grid-template-columns: 82px 1fr; }
  .local-story__mark { width: 70px; height: 70px; }
  .local-story > p:last-child { grid-column: 2; }
  .nav-header { justify-content: space-between; }
  .hamburger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: .8rem 1.2rem;
    border: 1px solid var(--hairline);
    border-radius: 0 0 12px 12px;
    background: rgba(8,8,8,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 1rem .2rem; border-bottom: 1px solid rgba(243,235,221,.08); }
  .service-intro, .hero-section { min-height: 620px; }
  .ml-home--simple .home-service-grid { grid-template-columns: 1fr; }
  .ml-home--simple .home-service-card { min-height: min(660px, 82vw); }
  .wedding-page .hero-section::before { background: linear-gradient(180deg, rgba(2,2,2,.38), rgba(2,2,2,.52) 38%, rgba(2,2,2,.94) 78%, #050505) !important; }
  .wedding-partner-page .partner-hero { justify-content: center !important; text-align: center !important; background-image: linear-gradient(180deg, rgba(2,2,2,.38), rgba(2,2,2,.6) 42%, rgba(2,2,2,.94)), url('../assets/brand/wedding-editorial.jpg') !important; }
  .wedding-partner-page .partner-hero p { margin-inline: auto; }
  .wedding-partner-page .partner-hero .cta-row { justify-content: center; }
}

@media (max-width: 560px) {
  .brand-lockup img { width: 124px; height: 39px; }
  .hero { min-height: 780px; align-items: end; }
  .hero__image { object-position: 58% center; }
  .hero__shade { background: linear-gradient(180deg, rgba(3,3,3,.36), rgba(3,3,3,.55) 28%, rgba(3,3,3,.96) 75%, #050505); }
  .hero__content { margin-top: var(--header-height); padding-bottom: 6rem; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero__actions { display: grid; }
  .hero__scroll { display: none; }
  .services { padding-top: 4.5rem; }
  .service-card { min-height: 420px; }
  .service-card__content { padding: 1.7rem; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-card--wide { grid-column: auto; }
  .preview-card { min-height: 340px; }
  .local-story { grid-template-columns: 1fr; text-align: center; }
  .local-story__mark { margin-inline: auto; }
  .local-story > p:last-child { grid-column: auto; }
  .final-cta__actions { display: grid; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .ml-home--simple .home-banner img { min-height: 190px; object-fit: cover; object-position: center; }
  .ml-home--simple .home-banner::before { inset: calc(var(--header-height) + 6px) 6px 6px; border-radius: 9px; }
  .ml-home--simple .trust-banner h2 { font-size: 1rem !important; }
  .ml-home--simple .home-service-card { min-height: 500px; }
  .ml-home--simple .home-service-card__content { padding: 1.55rem; }
  .wedding-page .hero-section { min-height: 670px; background-position: 60% center !important; }
  .wedding-consultation-page .consultation-hero { min-height: 440px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
