:root {
  --bg: #050404;
  --panel: #0c0a09;
  --panel-soft: #130f0e;
  --line: rgba(220, 154, 71, 0.18);
  --text: #eee8df;
  --muted: #8d8580;
  --faint: #5f5650;
  --gold: #dc9a47;
  --gold-dark: #a86f2a;
  --peach: #f0c7ac;
  --aqua: #8bd8cf;
  --rose: #f09aac;
  --black: #050404;
  --max: min(1440px, calc(100vw - 96px));
  --readable: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(139, 216, 207, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(240, 154, 172, 0.055), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-240%);
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 4, 4, 0.82);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 74px;
  background: rgba(5, 4, 4, 0.94);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  font-weight: 700;
}

.brand-logo {
  width: clamp(176px, 16vw, 236px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
}

.brand-mark::after {
  position: absolute;
  width: 8px;
  height: 8px;
  left: 8px;
  top: 8px;
  border-radius: 50%;
  background: var(--bg);
  content: "";
}

.brand-text {
  color: var(--text);
  font-size: 1rem;
}

.brand-text strong {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(238, 232, 223, 0.62);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-services {
  position: relative;
}

.nav-services summary {
  list-style: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.nav-services summary::-webkit-details-marker {
  display: none;
}

.nav-services summary::after {
  content: "⌄";
  margin-left: 7px;
  color: var(--gold);
  font-size: 0.76rem;
}

.nav-services[open] summary,
.nav-services summary:hover,
.nav-services summary:focus-visible {
  color: var(--gold);
}

.nav-services div {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 260px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  transform: translateX(-50%);
  display: grid;
  padding: 10px;
  border: 1px solid rgba(240, 199, 172, 0.18);
  background: rgba(5, 4, 4, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.nav-services div a {
  padding: 10px 12px;
}

.nav-services:not([open]) div {
  display: none;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.social {
  color: rgba(238, 232, 223, 0.46);
  font-size: 0.78rem;
  font-weight: 700;
}

.quote-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.quote-link,
.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-ghost,
.button-outline {
  border-color: rgba(220, 154, 71, 0.36);
  color: var(--gold);
  background: rgba(220, 154, 71, 0.04);
}

.button:hover,
.button:focus-visible,
.quote-link:hover,
.quote-link:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 150px 24px 92px;
  text-align: center;
  overflow: hidden;
  background-image:
    radial-gradient(circle at center, rgba(220, 154, 71, 0.08), rgba(5, 4, 4, 0) 38%),
    linear-gradient(180deg, rgba(5, 4, 4, 0.42), rgba(5, 4, 4, 0.9) 84%, var(--bg));
  background-color: var(--bg);
}

.hero-poster,
.hero-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster {
  z-index: -3;
  overflow: hidden;
  opacity: 1;
  transition: opacity 420ms ease;
}

.hero-poster img {
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero.has-active-video .hero-poster {
  opacity: 0;
}

.hero.has-active-video .hero-video {
  opacity: 1;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.72), transparent 22%, transparent 78%, rgba(5, 4, 4, 0.76)),
    linear-gradient(180deg, rgba(5, 4, 4, 0.1), rgba(5, 4, 4, 0.34) 46%, rgba(5, 4, 4, 0.92));
}

.inner-hero {
  min-height: 74vh;
}

.compact-hero {
  min-height: 70vh;
}

.hero-content {
  width: min(980px, 100%);
}

.kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 5.6rem;
}

h2 {
  font-size: 4rem;
}

h1 em,
h2 em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-copy {
  max-width: 700px;
  margin: 26px auto 0;
  color: rgba(238, 232, 223, 0.72);
  font-size: 1.25rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.trusted-strip {
  max-width: var(--max);
  margin: -66px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.trusted-strip span,
.trusted-strip strong {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  background: rgba(14, 11, 10, 0.92);
}

.trusted-strip span {
  color: var(--muted);
  font-size: 0.85rem;
}

.stats-section {
  max-width: var(--max);
  margin: 120px auto 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.stat {
  min-height: 156px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}

.stat span {
  color: var(--muted);
}

.delivery-section {
  max-width: var(--max);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: end;
  border: 1px solid rgba(220, 154, 71, 0.2);
  background:
    radial-gradient(circle at 8% 10%, rgba(139, 216, 207, 0.1), transparent 22rem),
    rgba(255, 255, 255, 0.025);
  padding: 34px;
}

.delivery-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.delivery-section p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-section,
.portfolio-section,
.photo-gallery-section,
.services-section,
.pricing-section,
.reviews-section,
.contact-section,
.team-section,
.blog-index-section,
.blog-topics-section,
.article-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 108px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.9fr);
  gap: 78px;
  align-items: center;
}

.about-media {
  position: relative;
  margin: 0;
}

.about-media img,
.about-video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.82);
}

.about-video {
  background: #000;
}

.sound-toggle {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  min-height: 42px;
  border: 1px solid rgba(240, 199, 172, 0.45);
  background: rgba(5, 4, 4, 0.66);
  color: var(--text);
  padding: 0 16px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sound-toggle::before {
  content: "♪";
  margin-right: 8px;
  color: var(--gold);
}

.sound-toggle:hover,
.sound-toggle:focus-visible,
.sound-toggle[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(220, 154, 71, 0.18);
  transform: translateY(-2px);
}

.about-media figcaption {
  position: static;
  margin-top: 12px;
  color: rgba(238, 232, 223, 0.7);
  font-size: 0.82rem;
}

.about-media::before {
  position: absolute;
  left: -22px;
  top: -22px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  content: "";
}

.award-card {
  position: absolute;
  right: -32px;
  bottom: 42px;
  width: 180px;
  border: 1px solid rgba(220, 154, 71, 0.62);
  background: rgba(12, 10, 9, 0.94);
  padding: 20px;
}

.award-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.award-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.35;
}

.award-icon {
  color: var(--gold);
  font-size: 1.3rem;
}

.about-copy p:not(.eyebrow),
.section-heading p,
.service-card p,
.price-card p,
.review-card p,
.contact-copy p {
  color: var(--muted);
}

.about-copy,
.contact-copy {
  max-width: var(--readable);
}

.section-heading p {
  max-width: var(--readable);
}

.about-copy p:not(.eyebrow) {
  margin: 20px 0 0;
}

.about-copy .button {
  margin-top: 30px;
}

.team-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 236px;
  border: 1px solid rgba(220, 154, 71, 0.18);
  background:
    linear-gradient(135deg, rgba(220, 154, 71, 0.06), rgba(139, 216, 207, 0.03)),
    rgba(255, 255, 255, 0.025);
  padding: 24px;
}

.team-photo {
  width: 172px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 199, 172, 0.22);
  background: rgba(5, 4, 4, 0.42);
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.95);
}

.team-card span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 0.78fr);
  gap: clamp(64px, 8vw, 150px);
  align-items: end;
}

.section-heading p {
  margin: 0;
  font-size: 1.05rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-row button {
  border: 1px solid rgba(220, 154, 71, 0.28);
  background: transparent;
  color: var(--muted);
  padding: 9px 15px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  cursor: pointer;
}

.filter-row button:first-child,
.filter-row button.is-active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: clamp(18px, 1.4vw, 24px);
}

.portfolio-card {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background: var(--panel);
}

.portfolio-card:nth-child(1),
.portfolio-card:nth-child(3) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
  min-height: 0;
}

.portfolio-card:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
  min-height: 0;
}

.portfolio-card.is-portrait,
.portfolio-card.is-portrait:nth-child(1),
.portfolio-card.is-portrait:nth-child(3),
.portfolio-card.is-portrait:nth-child(6) {
  grid-column: span 1;
  aspect-ratio: 9 / 16;
  min-height: 0;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.84);
  transition: transform 520ms ease, filter 520ms ease;
}

.portfolio-card.is-portrait img {
  aspect-ratio: 9 / 16;
  object-position: center;
}

.portfolio-card[data-project="claridge-s-wedding-film"] img,
.portfolio-card[data-project="ian-and-lisa"] img,
.portfolio-card[data-project="mason-rak"] img,
.portfolio-card[data-project="mason-rak-director-s-cut"] img,
.portfolio-card[data-project="five-delphi"] img {
  object-position: 50% 18%;
}

.portfolio-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(0.95);
}

.portfolio-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(5, 4, 4, 0), rgba(5, 4, 4, 0.9));
}

.portfolio-card p {
  max-width: 34rem;
  margin: 8px 0 0;
  color: rgba(238, 232, 223, 0.72);
  font-size: 0.94rem;
  line-height: 1.35;
}

.portfolio-card span,
.price-card span,
.service-card span,
.custom-note {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-top: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 1.35vw, 1.6rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.play-card {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(5, 4, 4, 0.28);
  color: transparent;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.play-card::before {
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  content: "";
}

.portfolio-card:hover .play-card,
.play-card:focus-visible {
  transform: scale(1.08);
  border-color: var(--peach);
  background: rgba(240, 199, 172, 0.2);
}

.portfolio-cta,
.centered-cta {
  margin: 42px auto 0;
  width: max-content;
}

.photo-filter-row button span {
  margin-left: 5px;
  color: inherit;
  font-size: 0.72rem;
}

.photo-gallery-grid {
  columns: 5 230px;
  column-gap: clamp(18px, 1.4vw, 24px);
}

.photo-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 clamp(18px, 1.4vw, 24px);
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid rgba(220, 154, 71, 0.14);
  background: var(--panel);
  color: var(--text);
  padding: 0;
  cursor: zoom-in;
  text-align: left;
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.82) saturate(0.9);
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-card[hidden] {
  display: none;
}

.photo-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  background: rgba(5, 4, 4, 0.68);
  color: var(--gold);
  padding: 6px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.035);
  filter: brightness(0.96) saturate(1);
}

.photo-card:hover,
.photo-card:focus-visible {
  border-color: rgba(220, 154, 71, 0.5);
  outline: none;
}

.services-section,
.pricing-section,
.reviews-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-hero {
  min-height: 68vh;
}

.blog-hero h1 {
  font-size: 4.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 1.4vw, 24px);
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(220, 154, 71, 0.16);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.blog-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 240px 1fr;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.86);
}

.blog-card div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
}

.blog-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card span,
.article-tags span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(220, 154, 71, 0.52);
  background: rgba(220, 154, 71, 0.045);
}

.blog-topics-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: topic;
}

.topic-grid li {
  position: relative;
  min-height: 96px;
  border: 1px solid rgba(220, 154, 71, 0.14);
  background: rgba(255, 255, 255, 0.025);
  padding: 20px 20px 20px 58px;
  color: rgba(238, 232, 223, 0.86);
}

.topic-grid li::before {
  position: absolute;
  left: 18px;
  top: 21px;
  color: var(--gold);
  font-weight: 800;
  counter-increment: topic;
  content: counter(topic, decimal-leading-zero);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.9fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.article-header {
  position: sticky;
  top: 112px;
}

.article-meta {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-lede {
  margin: 0;
  color: rgba(238, 232, 223, 0.88);
  font-size: 1.18rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.article-tags span {
  border: 1px solid rgba(220, 154, 71, 0.28);
  padding: 6px 9px;
}

.article-body {
  max-width: 820px;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 54px;
}

.article-gallery figure {
  overflow: hidden;
  border: 1px solid rgba(220, 154, 71, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.article-gallery figure:first-child {
  grid-column: 1 / -1;
}

.article-gallery img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  max-height: 460px;
  object-fit: cover;
  filter: brightness(0.86) saturate(0.92);
}

.article-gallery figcaption {
  padding: 14px 16px 16px;
  color: rgba(238, 232, 223, 0.72);
  font-size: 0.92rem;
}

.article-body section {
  margin: 0 0 54px;
}

.article-body h2,
.article-cta h2 {
  font-size: 2.5rem;
  line-height: 1.05;
}

.article-body p,
.article-body li {
  color: rgba(238, 232, 223, 0.74);
  font-size: 1.05rem;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 22px;
}

.article-cta {
  margin: 68px 0;
  border: 1px solid rgba(220, 154, 71, 0.2);
  background:
    radial-gradient(circle at 10% 0%, rgba(220, 154, 71, 0.12), transparent 20rem),
    rgba(255, 255, 255, 0.025);
  padding: 32px;
}

.article-faq details {
  border-top: 1px solid rgba(220, 154, 71, 0.18);
  padding: 18px 0;
}

.article-faq summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.article-related {
  margin: 64px 0 42px;
  border-top: 1px solid rgba(220, 154, 71, 0.18);
  border-bottom: 1px solid rgba(220, 154, 71, 0.18);
  padding: 28px 0;
}

.article-related div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-related a {
  border: 1px solid rgba(220, 154, 71, 0.28);
  color: var(--gold);
  padding: 8px 11px;
  font-weight: 700;
}

.service-grid,
.pricing-grid,
.review-list {
  display: grid;
  gap: clamp(18px, 1.4vw, 24px);
}

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

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

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(220, 154, 71, 0.18);
  background: rgba(255, 255, 255, 0.025);
  padding: 28px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-image-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(340px, 24vw, 430px);
  display: grid;
  grid-template-rows: auto minmax(6.7rem, auto) minmax(58px, auto);
  align-content: end;
  border-color: rgba(255, 255, 255, 0.12);
  background: #050505;
}

.service-image-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.service-card-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) saturate(0.9);
  transform: scale(1.02);
  transition: transform 520ms ease, filter 320ms ease;
}

.service-image-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 4, 4, 0.05), rgba(5, 4, 4, 0.35) 46%, rgba(5, 4, 4, 0.9)),
    radial-gradient(circle at 80% 15%, rgba(139, 216, 207, 0.2), transparent 18rem);
}

.service-image-card:hover .service-card-image,
.service-image-card:focus-visible .service-card-image {
  transform: scale(1.08);
  filter: brightness(0.72) saturate(0.98);
}

.service-image-card p {
  color: rgba(238, 232, 223, 0.76);
  margin: 0;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(220, 154, 71, 0.55);
  background: rgba(220, 154, 71, 0.055);
}

.service-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.service-tags {
  min-height: 58px;
  align-content: flex-end;
  align-items: flex-end;
}

.service-card span,
.tag-list span {
  border: 1px solid rgba(220, 154, 71, 0.22);
  padding: 5px 9px;
  color: var(--gold);
  font-size: 0.72rem;
}

.custom-note {
  margin: 34px 0 0;
  text-align: center;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.price-card,
.review-card,
.contact-form {
  border: 1px solid rgba(220, 154, 71, 0.18);
  background: rgba(255, 255, 255, 0.025);
}

.price-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(220, 154, 71, 0.72);
  background: rgba(220, 154, 71, 0.06);
}

.price-card h3 {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  overflow-wrap: normal;
}

.price {
  margin: 22px 0 14px;
  display: grid;
  gap: 5px;
}

.price strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.price small {
  display: block;
  color: var(--muted);
  line-height: 1.2;
}

.price-prefix {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-suffix {
  font-size: 0.92rem;
}

.price-card ul {
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  color: var(--muted);
}

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

.review-list {
  grid-template-columns: repeat(4, 1fr);
}

.review-card {
  display: block;
  margin: 0;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.review-card:hover,
.review-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(220, 154, 71, 0.55);
  background: rgba(220, 154, 71, 0.055);
}

.review-card cite {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.reviews-cta {
  margin-top: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 74px;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  border: 1px solid rgba(220, 154, 71, 0.28);
  padding: 10px 13px;
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(220, 154, 71, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 13px 14px;
}

.security-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(220, 154, 71, 0.2);
  background: rgba(255, 255, 255, 0.025);
  padding: 14px;
  color: var(--text);
}

.security-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.security-check span {
  color: var(--muted);
  font-weight: 600;
}

.form-status {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: var(--peach);
  font-size: 0.92rem;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(160px, 0.75fr));
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 48px;
  background: #020202;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: auto;
  max-width: 100%;
  min-width: 0;
}

.site-footer > div {
  min-width: 0;
}

.footer-brand p {
  max-width: min(340px, 100%);
}

.site-footer a,
.site-footer span,
.site-footer p {
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.video-modal,
.photo-modal {
  width: min(1280px, calc(100vw - 42px));
  max-height: calc(100vh - 42px);
  padding: 0;
  border: 1px solid rgba(240, 199, 172, 0.22);
  background: #070606;
  color: var(--text);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.7);
}

.video-modal::backdrop,
.photo-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.photo-modal {
  width: min(1280px, calc(100vw - 42px));
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.photo-modal-nav:hover,
.photo-modal-nav:focus-visible {
  border-color: rgba(220, 154, 71, 0.7);
  background: rgba(220, 154, 71, 0.16);
  outline: none;
}

.photo-modal-prev {
  left: 18px;
}

.photo-modal-next {
  right: 18px;
}

.photo-modal figure {
  margin: 0;
  display: grid;
  background: #070606;
}

.photo-modal img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #000;
}

.photo-modal figcaption {
  border-top: 1px solid rgba(240, 199, 172, 0.16);
  padding: 16px 20px;
  color: var(--muted);
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.75fr);
  gap: 0;
}

.modal-video {
  width: 100%;
  height: min(72vh, 650px);
  background: #000;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 44px);
  border-left: 1px solid rgba(240, 199, 172, 0.16);
  background:
    radial-gradient(circle at top right, rgba(139, 216, 207, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.03);
}

.modal-copy h2 {
  font-size: clamp(2.2rem, 3.1vw, 3.25rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.modal-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .video-modal {
    width: min(940px, calc(100vw - 32px));
  }

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

  .modal-video {
    height: auto;
    max-height: 58vh;
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }

  .modal-copy {
    border-left: 0;
    border-top: 1px solid rgba(240, 199, 172, 0.16);
    padding: 28px;
  }

  .modal-copy h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav.is-open {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(5, 4, 4, 0.98);
    padding: 10px 0;
  }

  .site-nav.is-open .nav-services div {
    position: static;
    width: auto;
    transform: none;
    border: 0;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    margin: 0 12px 8px;
  }

  .site-nav.is-open a {
    padding: 14px 20px;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .about-section,
  .contact-section,
  .team-grid,
  .article-shell,
  .delivery-section,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .review-list,
  .blog-grid,
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-header {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --max: calc(100vw - 36px);
  }

  .site-header {
    min-height: 82px;
    gap: 12px;
    padding: 0 18px;
  }

  .site-footer {
    padding: 42px 18px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 108px;
  }

  .blog-hero {
    min-height: 72vh;
  }

  .home-hero {
    background-image:
      radial-gradient(circle at 50% 34%, rgba(220, 154, 71, 0.1), rgba(5, 4, 4, 0) 42%),
      linear-gradient(180deg, rgba(5, 4, 4, 0.38), rgba(5, 4, 4, 0.74) 58%, var(--bg));
  }

  .home-hero .hero-content {
    width: min(100%, 340px);
    max-width: calc(100vw - 48px);
  }

  .home-hero .hero-video {
    display: none;
  }

  h1 {
    font-size: 2.65rem;
  }

  .home-hero h1 {
    max-width: 10ch;
    margin-inline: auto;
  }

  .blog-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .trusted-strip,
  .stats-section,
  .portfolio-grid,
  .service-grid,
  .service-grid.three,
  .pricing-grid,
  .review-list,
  .blog-grid,
  .topic-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trusted-strip {
    margin: 0 18px;
  }

  .stats-section,
  .about-section,
  .portfolio-section,
  .photo-gallery-section,
  .services-section,
  .pricing-section,
  .reviews-section,
  .contact-section,
  .team-section,
  .blog-index-section,
  .blog-topics-section,
  .article-shell {
    margin-inline: 18px;
    padding: 68px 0;
  }

  .blog-card a {
    grid-template-rows: 210px 1fr;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-gallery img {
    min-height: 240px;
    max-height: none;
  }

  .topic-grid li {
    min-height: auto;
  }

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

  .article-cta {
    padding: 24px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .portfolio-card,
  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(3),
  .portfolio-card:nth-child(6) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .portfolio-card.is-portrait {
    aspect-ratio: 9 / 16;
    min-height: 0;
  }

  .about-media img,
  .about-video {
    height: 360px;
  }

  .photo-modal {
    width: calc(100vw - 22px);
  }

  .photo-modal-nav {
    top: auto;
    bottom: 58px;
    width: 46px;
    height: 54px;
    font-size: 2.4rem;
    transform: none;
  }

  .photo-modal-prev {
    left: 12px;
  }

  .photo-modal-next {
    right: 12px;
  }

  .about-media figcaption {
    margin-top: 10px;
  }

  .delivery-section {
    margin-inline: 18px;
    padding: 26px;
  }

  .service-image-card {
    grid-template-rows: auto auto auto;
  }

  .service-tags {
    min-height: auto;
  }

  .award-card {
    right: 18px;
    bottom: 48px;
  }

  .team-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }

  .team-photo {
    width: 132px;
    font-size: 2.2rem;
  }

  .hero-actions,
  .contact-links,
  .filter-row {
    justify-content: center;
  }

  .hero-actions {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .button,
  .quote-link {
    width: 100%;
  }

  .brand-logo {
    width: 186px;
  }

  .portfolio-card p {
    display: none;
  }

  .play-card {
    width: 52px;
    height: 52px;
  }

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

  .modal-video {
    height: auto;
    max-height: 52vh;
  }

  .modal-copy {
    border-left: 0;
    border-top: 1px solid rgba(240, 199, 172, 0.16);
  }
}

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

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