:root {
  color-scheme: light;
  --ink: #11120f;
  --ink-soft: #3f423a;
  --forest: #0f241a;
  --forest-2: #173d2a;
  --ivory: #fbfaf5;
  --bone: #f0ece3;
  --mist: #e4e7df;
  --copper: #b76e49;
  --rose: #d9a4a2;
  --gold: #d9b166;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 17, 12, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preview-note {
  background: var(--forest);
  color: var(--ivory);
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(15, 36, 26, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--ink-soft);
  font-size: 12px;
}

.site-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--mist);
  color: var(--ink);
}

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta,
.button-primary {
  background: var(--forest);
  color: var(--ivory);
}

.button-primary:hover,
.header-cta:hover {
  background: var(--forest-2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 36, 26, 0.2);
  color: var(--forest);
}

.button-secondary:hover {
  border-color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 36, 26, 0.15);
  border-radius: 999px;
  background: var(--white);
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--forest);
  margin: 4px 0;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 62px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--ivory);
}

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

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 18, 13, 0.84), rgba(11, 18, 13, 0.54) 44%, rgba(11, 18, 13, 0.18)),
    linear-gradient(0deg, rgba(11, 18, 13, 0.88), transparent 44%);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 52px;
}

.home-hero .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: clamp(34px, 5vw, 66px);
  align-items: end;
  padding-top: 72px;
}

.home-hero .hero-copy-block {
  min-width: 0;
}

.home-hero .hero-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 586px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(251, 250, 245, 0.34);
  border-radius: 22px;
  background: var(--forest-2);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}

.home-hero .hero-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero .hero-video-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(11, 18, 13, 0.52), transparent);
}

.home-hero .hero-video-control {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(251, 250, 245, 0.5);
  border-radius: 999px;
  background: rgba(15, 36, 26, 0.88);
  color: var(--ivory);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.home-hero .hero-video-control:hover,
.home-hero .hero-video-control:focus-visible {
  background: var(--ivory);
  color: var(--forest);
}

.home-hero .hero-video-control-icon {
  width: 12px;
  font-size: 14px;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.2vw, 78px);
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(251, 250, 245, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 880px;
  margin: 54px 0 0;
  border: 1px solid rgba(251, 250, 245, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-facts div {
  padding: 18px;
  background: rgba(251, 250, 245, 0.08);
}

.hero-facts dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-facts dd {
  margin: 7px 0 0;
  font-size: 16px;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 48px);
}

.section-grid,
.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid.reversed {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.section-copy p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

.section-heading p {
  max-width: 740px;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading.compact {
  max-width: 860px;
  text-align: center;
}

.image-panel {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bone);
}

.image-panel img {
  width: 100%;
  height: min(640px, 70vh);
  object-fit: cover;
}

.image-panel-dark {
  background: var(--forest);
}

.services-section {
  background: var(--bone);
}

.service-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.service-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(15, 36, 26, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.service-card p {
  color: var(--ink-soft);
  margin: 0;
}

.service-card small {
  margin-top: auto;
  color: var(--copper);
  font-weight: 800;
}

.section-actions {
  width: min(var(--max), 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 0;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--copper);
}

.service-price {
  align-self: flex-start;
  margin-bottom: 18px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.featured-card {
  background: var(--forest);
  color: var(--ivory);
}

.featured-card p,
.featured-card small,
.featured-card .service-price {
  color: var(--ivory);
}

.split-band {
  align-items: start;
  padding: clamp(38px, 5vw, 58px);
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius);
}

.split-band p {
  color: rgba(251, 250, 245, 0.82);
}

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

.additive-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid rgba(251, 250, 245, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 250, 245, 0.08);
}

.additive-list p {
  grid-column: 1 / -1;
  margin: 0;
}

.additive-list span {
  color: var(--gold);
  font-weight: 800;
}

.competition-section {
  background: var(--ivory);
}

.pricing-list {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.pricing-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(15, 36, 26, 0.14);
}

.pricing-list span {
  color: var(--copper);
  font-weight: 800;
}

.process-section {
  background: var(--forest);
  color: var(--ivory);
}

.process-section .eyebrow {
  color: var(--gold);
}

.process-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px auto 0;
}

.process-grid article {
  padding: 24px;
  border: 1px solid rgba(251, 250, 245, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 250, 245, 0.07);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-weight: 900;
}

.process-grid p {
  color: rgba(251, 250, 245, 0.82);
}

.bridal-options {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.bridal-options article {
  padding: 20px;
  border-left: 4px solid var(--rose);
  background: var(--bone);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-section {
  background: var(--ivory);
}

.feature-card {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid rgba(15, 36, 26, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(11, 17, 12, 0.08);
}

.feature-card p {
  max-width: 760px;
  color: var(--ink-soft);
}

.feature-card .feature-meta {
  margin: -2px 0 12px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 800;
}

.feature-card cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.feature-card .button {
  max-width: 360px;
  text-align: center;
  white-space: normal;
}

.gallery-section {
  background: var(--bone);
}

.gallery-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  margin: 0 auto;
}

.gallery-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--forest);
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(15, 36, 26, 0.72);
  color: var(--ivory);
  font-size: 12px;
}

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

.gallery-feature video {
  min-height: 452px;
}

.faq-section {
  background: var(--ivory);
}

.faq-list {
  width: min(880px, 100%);
  display: grid;
  gap: 10px;
  margin: 34px auto 0;
}

.faq-list details {
  border: 1px solid rgba(15, 36, 26, 0.14);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--forest);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.contact-section {
  background: linear-gradient(135deg, var(--forest), #1a1c18);
}

.contact-card {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background: var(--ivory);
}

.contact-card p {
  color: var(--ink-soft);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 34px 20px;
  background: #080d0a;
  color: rgba(251, 250, 245, 0.74);
  text-align: center;
}

.site-footer p {
  margin: 6px 0;
}

.footer-note {
  color: var(--gold);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 12px 0;
}

.footer-links a {
  color: var(--ivory);
  font-size: 14px;
  text-underline-offset: 4px;
}

.breadcrumb {
  width: min(var(--max), calc(100% - 36px));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px auto;
  color: var(--ink-soft);
  font-size: 14px;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--forest);
  font-weight: 750;
  text-underline-offset: 3px;
}

.service-detail-hero {
  min-height: min(650px, calc(100vh - 110px));
}

.service-detail-hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 7vw, 82px);
}

.service-detail-hero .hero-media img {
  object-position: center 42%;
}

.service-detail-hero.bridal-detail-hero .hero-media img {
  object-position: center 25%;
}

.fact-card {
  align-self: stretch;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.fact-card h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(251, 250, 245, 0.16);
}

.fact-list dt {
  color: rgba(251, 250, 245, 0.78);
}

.fact-list dd {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  text-align: right;
}

.small-print {
  color: rgba(251, 250, 245, 0.68);
  font-size: 13px;
}

.service-grid-compact .service-card {
  min-height: 250px;
}

.bridal-choice-grid {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.bridal-choice-grid .service-card {
  min-height: 300px;
}

.portrait-panel img {
  object-position: center 20%;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 8px 0;
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    justify-content: center;
    background: var(--bone);
  }

  .header-cta {
    display: none;
  }

  .home-hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
    gap: 28px;
  }

  .home-hero h1 {
    font-size: clamp(44px, 6vw, 62px);
  }

  .section-grid,
  .section-grid.reversed,
  .split-band,
  .feature-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  .preview-note {
    font-size: 12px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

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

  .service-detail-hero {
    min-height: 660px;
  }

  .home-hero .hero-inner {
    position: static;
    display: block;
    width: calc(100% - 32px);
    padding: 92px 0 34px;
  }

  .home-hero .hero-copy-block {
    position: relative;
    z-index: 2;
  }

  .home-hero .hero-video-card {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .home-hero .hero-video-card::after {
    inset: 0;
    height: auto;
    background:
      linear-gradient(90deg, rgba(11, 18, 13, 0.78), rgba(11, 18, 13, 0.28)),
      linear-gradient(0deg, rgba(11, 18, 13, 0.94), rgba(11, 18, 13, 0.08) 62%);
  }

  .home-hero .hero-video-control {
    top: 16px;
    right: 16px;
    bottom: auto;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-facts,
  .process-grid,
  .service-grid,
  .gallery-grid,
  .bridal-choice-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-feature video {
    min-height: 320px;
  }

  .image-panel img {
    height: auto;
    max-height: none;
  }

  .contact-actions .button {
    white-space: normal;
  }
}
