:root {
  --ink: #090807;
  --ink-soft: #171412;
  --ink-muted: #28231f;
  --paper: #f7f4ee;
  --paper-soft: #ebe5d9;
  --gold: #d6ad63;
  --gold-dark: #a8752d;
  --white: #ffffff;
  --sage: #7f8d78;
  --wine: #8a4056;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(9, 8, 7, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8f4ec 0%, #efe7d9 48%, #f7f4ee 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0.9rem 4vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.78), rgba(9, 8, 7, 0.16));
  backdrop-filter: blur(14px);
  transition: background 240ms ease, box-shadow 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(9, 8, 7, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.brand small {
  margin-top: 0.22rem;
  color: var(--gold);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  content: "";
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.section {
  padding: 6.5rem 4vw;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 2.2rem;
}

.section-heading h2,
.hero h1,
.about-copy h2,
.contact-info h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.section-heading h2 {
  font-size: 2.9rem;
}

.section-heading p:not(.eyebrow),
.hero-copy,
.about-copy p,
.contact-info p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.gallery-section .section-heading p:not(.eyebrow),
.about-copy p {
  color: rgba(9, 8, 7, 0.68);
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(214, 173, 99, 0.08), transparent 34%),
    var(--paper);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8.5rem 4vw 9rem;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(214, 173, 99, 0.18) 53%, transparent 58%),
    linear-gradient(180deg, transparent 0, rgba(214, 173, 99, 0.08) 100%);
  mix-blend-mode: screen;
  transform: translateX(-18%);
  animation: lightSweep 9s ease-in-out infinite alternate;
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.95);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.94), rgba(9, 8, 7, 0.52), rgba(9, 8, 7, 0.26)),
    linear-gradient(0deg, rgba(9, 8, 7, 0.86), rgba(9, 8, 7, 0.06) 45%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
}

.hero-logo {
  width: 154px;
  height: auto;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
  animation: floatMark 5.4s ease-in-out infinite;
}

.hero h1 {
  max-width: 680px;
  font-size: 4.6rem;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
}

.hero-copy {
  max-width: 560px;
  margin: 1.2rem 0 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-kicker::after {
  display: inline-block;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0d18a, var(--gold) 54%, #9b6a2b);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(214, 173, 99, 0.25);
}

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

.button-primary:hover::after,
.button-primary:focus-visible::after {
  transform: translateX(130%);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  color: var(--gold);
}

.hero-note {
  position: absolute;
  right: 4vw;
  top: 22vh;
  z-index: 3;
  width: min(270px, 34vw);
  padding: 1rem;
  border: 1px solid rgba(214, 173, 99, 0.28);
  border-radius: 8px;
  background: rgba(9, 8, 7, 0.46);
  color: var(--white);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 0.45rem;
  line-height: 1.25;
}

.hero-strip {
  position: absolute;
  right: 4vw;
  bottom: 1.6rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 160px));
  gap: 0.65rem;
  width: min(520px, calc(100% - 8vw));
}

.hero-strip-card,
.hero-strip figure {
  display: block;
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  aspect-ratio: 1.2 / 1;
  background: var(--ink-soft);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition: transform 260ms ease, border-color 260ms ease;
}

.hero-strip-card:hover,
.hero-strip figure:hover {
  border-color: rgba(214, 173, 99, 0.62);
  transform: translateY(-6px);
}

.hero-strip img,
.hero-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-strip figcaption,
.hero-strip-card figcaption {
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-strip figcaption span,
.hero-strip-card figcaption span,
.hero-strip figcaption strong,
.hero-strip-card figcaption strong {
  display: block;
}

.hero-strip figcaption span,
.hero-strip-card figcaption span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-strip figcaption strong,
.hero-strip-card figcaption strong {
  margin-top: 0.12rem;
  font-size: 0.84rem;
  line-height: 1.1;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--white);
}

.experience-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.15fr);
  gap: 4vw;
  align-items: center;
  padding: 4.8rem 4vw;
  background:
    linear-gradient(90deg, rgba(127, 141, 120, 0.16), transparent 48%),
    #11100f;
  color: var(--white);
}

.experience-copy h2 {
  max-width: 520px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1.05;
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.experience-metrics div {
  min-height: 146px;
  padding: 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.experience-metrics div:last-child {
  border-right: 0;
}

.experience-metrics strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.experience-metrics span {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.intro-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 112px;
  padding: 1.25rem 4vw;
  border-right: 1px solid var(--line-dark);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item span {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--gold-dark);
  background: var(--ink);
  color: var(--white);
}

.album-section {
  background: #11100f;
  color: var(--white);
}

.album-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.album-grid,
.package-grid,
.testimonial-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.album-card,
.video-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink-soft);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.album-card img,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.album-card::after,
.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 8, 7, 0.86), rgba(9, 8, 7, 0.12));
  content: "";
}

.album-card:hover img,
.video-card:hover img {
  transform: scale(1.06);
}

.album-card span,
.album-card strong,
.video-card span,
.video-card h3,
.video-card p {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
}

.album-card span,
.video-card span {
  top: 1rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.album-card strong,
.video-card h3 {
  bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.video-card p {
  bottom: 3.6rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.video-card .video-copy {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.45rem;
}

.video-card .video-copy h3,
.video-card .video-copy p {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
}

.video-card .video-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.video-card .video-copy p {
  display: -webkit-box;
  max-height: 3.4rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery-card {
  grid-column: span 4;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: var(--ink-soft);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(9, 8, 7, 0.14);
  transform-style: preserve-3d;
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.gallery-card.reveal.is-visible {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.gallery-card.is-panorama {
  grid-column: span 8;
  aspect-ratio: 2 / 1;
}

.gallery-card.is-wide,
.gallery-card.is-landscape {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-card.is-square {
  grid-column: span 4;
  aspect-ratio: 1 / 1;
}

.gallery-card.is-portrait {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
}

.gallery-card.is-tall {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(9, 8, 7, 0.82), rgba(9, 8, 7, 0));
  content: "";
}

.gallery-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(0deg, transparent, rgba(214, 173, 99, 0.12));
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
  content: "";
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.06);
  filter: contrast(1.06) saturate(1.04);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  box-shadow: 0 28px 70px rgba(9, 8, 7, 0.24);
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  opacity: 1;
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem;
  text-align: left;
}

.gallery-card strong,
.gallery-card span {
  display: block;
}

.gallery-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.gallery-card span {
  margin-top: 0.18rem;
  color: var(--gold);
  font-size: 0.8rem;
}

.empty-gallery {
  grid-column: 1 / -1;
  padding: 3rem;
  border: 1px dashed var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.service-section {
  background:
    linear-gradient(180deg, rgba(138, 64, 86, 0.16), rgba(9, 8, 7, 0)),
    var(--ink);
}

.package-section {
  background:
    linear-gradient(135deg, rgba(214, 173, 99, 0.13), transparent 45%),
    var(--ink);
}

.package-card,
.testimonial-card {
  min-height: 310px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.package-card.is-featured {
  border-color: rgba(214, 173, 99, 0.5);
  background: rgba(214, 173, 99, 0.09);
}

.package-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 1.6rem 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.package-card p,
.package-card li {
  color: rgba(255, 255, 255, 0.68);
}

.package-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.package-card li::before {
  color: var(--gold);
  content: "+ ";
}

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

.service-card {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover {
  border-color: rgba(214, 173, 99, 0.4);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-6px);
}

.service-card span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.service-card h3 {
  margin: 2.4rem 0 0.7rem;
  font-size: 1.28rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.flow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(138, 64, 86, 0.1), transparent 38%),
    linear-gradient(315deg, rgba(127, 141, 120, 0.16), transparent 42%),
    #f7f4ee;
}

.flow-section::before {
  position: absolute;
  inset: 1.2rem 4vw auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 117, 45, 0.5), transparent);
  content: "";
}

.flow-section .section-heading p:not(.eyebrow) {
  color: rgba(9, 8, 7, 0.68);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.flow-card {
  position: relative;
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid rgba(9, 8, 7, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 60px rgba(9, 8, 7, 0.08);
  overflow: hidden;
}

.flow-card::after {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.flow-card span {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
}

.flow-card h3 {
  margin: 3rem 0 0.65rem;
  font-size: 1.28rem;
}

.flow-card p {
  margin: 0;
  color: rgba(9, 8, 7, 0.68);
}

.compare-section {
  background:
    linear-gradient(180deg, rgba(214, 173, 99, 0.08), transparent),
    var(--paper);
}

.compare-section .section-heading p:not(.eyebrow) {
  color: rgba(9, 8, 7, 0.68);
}

.compare-wrap {
  position: relative;
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: var(--ink-soft);
  box-shadow: 0 28px 80px rgba(9, 8, 7, 0.2);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

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

.compare-after-mask {
  position: absolute;
  inset: 0 auto 0 0;
  width: 56%;
  overflow: hidden;
  border-right: 2px solid var(--gold);
}

.compare-after-mask::after {
  position: absolute;
  right: -10px;
  bottom: 1.05rem;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
  content: "";
}

.compare-after {
  width: min(1080px, 100vw);
  max-width: none;
}

.compare-range {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 3;
  width: calc(100% - 2rem);
  accent-color: var(--gold);
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  z-index: 2;
  top: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(9, 8, 7, 0.68);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.compare-label.before {
  right: 1rem;
}

.compare-label.after {
  left: 1rem;
  color: var(--gold);
}

.video-section {
  background:
    linear-gradient(135deg, rgba(138, 64, 86, 0.18), transparent 48%),
    var(--ink);
}

.testimonial-section {
  background: var(--paper);
}

.testimonial-section .section-heading p:not(.eyebrow) {
  color: rgba(9, 8, 7, 0.68);
}

.testimonial-card {
  min-height: 250px;
  border-color: rgba(9, 8, 7, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(9, 8, 7, 0.08);
}

.testimonial-card p {
  margin: 0 0 1.5rem;
  color: rgba(9, 8, 7, 0.72);
  font-size: 1.05rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--gold-dark);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  gap: 4vw;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: var(--ink-soft);
  box-shadow: 0 28px 80px rgba(9, 8, 7, 0.2);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(214, 173, 99, 0.36);
  border-radius: 8px;
  background: rgba(9, 8, 7, 0.66);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.about-badge span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 173, 99, 0.45);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.about-badge strong {
  font-size: 0.9rem;
}

.about-copy h2,
.contact-info h2 {
  font-size: 3rem;
}

.signature {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.7rem;
  color: var(--gold-dark);
  font-weight: 800;
}

.signature img {
  width: 74px;
  height: 74px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: 4vw;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(127, 141, 120, 0.18), rgba(9, 8, 7, 0) 46%),
    var(--ink);
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--gold);
  font-size: 0.86rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.85rem;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 4vw;
  background: #050505;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  margin: 0;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 4vw;
  background: rgba(5, 5, 5, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox figure {
  width: min(1120px, 100%);
  max-height: 86vh;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox figcaption {
  margin-top: 0.75rem;
  color: var(--white);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 58px;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

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

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

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

@keyframes lightSweep {
  from {
    transform: translateX(-22%);
    opacity: 0.45;
  }
  to {
    transform: translateX(18%);
    opacity: 0.85;
  }
}

@keyframes floatMark {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@media (max-width: 1080px) {
  .section-heading h2,
  .about-copy h2,
  .contact-info h2 {
    font-size: 2.4rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

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

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

  .album-grid,
  .package-grid,
  .testimonial-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(9, 8, 7, 0.97);
  }

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

  .site-nav a {
    padding: 0.85rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-logo {
    width: 118px;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
    left: 4vw;
    right: 4vw;
    width: auto;
  }

  .intro-band,
  .experience-band,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .experience-band {
    padding: 4rem 4vw;
  }

  .experience-metrics {
    grid-template-columns: 1fr;
  }

  .experience-metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .experience-metrics div:last-child {
    border-bottom: 0;
  }

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

  .intro-item:last-child {
    border-bottom: 0;
  }

  .gallery-card,
  .gallery-card.is-wide,
  .gallery-card.is-panorama,
  .gallery-card.is-landscape,
  .gallery-card.is-square,
  .gallery-card.is-portrait,
  .gallery-card.is-tall {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.6rem 5vw;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip figure:nth-child(3),
  .hero-strip-card:nth-child(3) {
    display: none;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-info h2 {
    font-size: 2rem;
  }

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

  .gallery-card,
  .gallery-card.is-wide,
  .gallery-card.is-panorama,
  .gallery-card.is-landscape,
  .gallery-card.is-square,
  .gallery-card.is-portrait,
  .gallery-card.is-tall {
    grid-column: 1;
  }

  .gallery-card,
  .gallery-card.is-portrait,
  .gallery-card.is-tall {
    aspect-ratio: 4 / 5;
  }

  .gallery-card.is-panorama,
  .gallery-card.is-wide,
  .gallery-card.is-landscape {
    aspect-ratio: 16 / 10;
  }

  .gallery-card.is-square {
    aspect-ratio: 1 / 1;
  }

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

  .compare-wrap {
    aspect-ratio: 4 / 5;
  }

  .contact-list li {
    grid-template-columns: 1fr;
  }

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

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}
