@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Italiana&display=swap');

:root {
  --ink: #0b0b0b;
  --ink-soft: #151412;
  --ivory: #f6f1e8;
  --paper: #fffdf8;
  --gold: #c9a15b;
  --gold-light: #e8cf9f;
  --muted: #b5ad9f;
  --line: rgba(201, 161, 91, .32);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .8rem 1rem;
  background: var(--ivory);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(1.2rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(11,11,11,.9);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.brand strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: .06em;
  font-weight: 400;
}
.brand span {
  margin-top: .3rem;
  color: var(--gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
}
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a {
  color: rgba(246,241,232,.82);
  font-size: .88rem;
  text-decoration: none;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-light); }
.nav .nav-cta {
  padding: .64rem 1rem;
  border: 1px solid var(--gold);
  color: var(--ivory);
}
.menu-button {
  display: none;
  padding: .55rem;
  border: 0;
  color: var(--ivory);
  background: transparent;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.72) 35%, rgba(5,5,5,.08) 70%),
    linear-gradient(0deg, rgba(5,5,5,.8) 0%, transparent 45%),
    url("weddings/DSQ_2643_Original.webp") center / cover no-repeat;
  transform: scale(1.01);
}
.hero-inner {
  position: relative;
  width: min(1200px, 100%);
  padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 6vw, 5.5rem);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.06; }
h1 { max-width: 760px; font-size: clamp(3.2rem, 8vw, 7.7rem); }
.hero-copy {
  max-width: 600px;
  margin: 1.5rem 0 2rem;
  color: rgba(246,241,232,.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .76rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); }
.button.secondary { color: var(--ivory); background: transparent; }
.button.secondary:hover { color: var(--ink); background: var(--ivory); border-color: var(--ivory); }

.section { padding: clamp(4.5rem, 10vw, 8.5rem) clamp(1.2rem, 6vw, 5.5rem); }
.section.light { color: var(--ink); background: var(--ivory); }
.section.paper { color: var(--ink); background: var(--paper); }
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
  gap: 2rem;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.section-header h2 { font-size: clamp(2.6rem, 6vw, 5rem); }
.section-header p { margin: 0; color: #5e594f; }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.package-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid #d8cdbb;
  background: #fbf8f1;
  overflow: hidden;
}
.package-card.featured { color: var(--ivory); background: var(--ink-soft); border-color: var(--gold); }
.package-card::after {
  content: attr(data-number);
  position: absolute;
  right: -1rem;
  bottom: -3.8rem;
  color: rgba(201,161,91,.1);
  font-family: var(--serif);
  font-size: 13rem;
  line-height: 1;
}
.package-name {
  color: #786a54;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.featured .package-name { color: var(--gold-light); }
.package-card h3 { margin-top: .8rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.price { margin: 1.2rem 0; font-family: var(--serif); font-size: 2.2rem; }
.price small { font: 500 .75rem var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.package-card p { color: #5f594f; }
.featured p { color: rgba(246,241,232,.7); }
.mini-list { margin: 1rem 0 2rem; padding: 0; list-style: none; }
.mini-list li { padding: .55rem 0; border-bottom: 1px solid rgba(120,106,84,.22); }
.featured .mini-list li { border-color: rgba(232,207,159,.2); }
.package-card .card-actions { margin-top: auto; position: relative; z-index: 2; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(201,161,91,.35);
}
.split > div { padding: clamp(2rem, 6vw, 5rem); }
.split .visual {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(11,11,11,.1), rgba(11,11,11,.8)),
    url("weddings/DSQ_2643_Original.webp") 65% center / cover no-repeat;
}
.split h2 { font-size: clamp(2.7rem, 6vw, 5rem); }
.split p { color: rgba(246,241,232,.7); }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; margin-top: 2.2rem; }
.stat { padding-top: 1rem; border-top: 1px solid var(--line); }
.stat strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.7rem; }
.stat span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }

.page-hero {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 6vw, 5.5rem) 4rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(201,161,91,.13), transparent 34%),
    var(--ink);
}
.page-hero-inner { max-width: 1200px; margin: auto; }
.page-hero h1 { max-width: 900px; font-size: clamp(3rem, 7vw, 6.8rem); }
.page-hero p { max-width: 680px; color: rgba(246,241,232,.68); font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 2rem; color: var(--muted); font-size: .8rem; }
.breadcrumbs a { color: var(--gold-light); text-decoration: none; }

.detail-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 7vw, 7rem);
  max-width: 1100px;
  margin: auto;
}
.detail-aside { align-self: start; position: sticky; top: 110px; }
.detail-aside .price { font-size: clamp(3rem, 6vw, 5.6rem); margin: .5rem 0 1.4rem; }
.detail-main h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1.2rem; }
.feature-list { display: grid; gap: 0; margin: 0 0 3rem; padding: 0; list-style: none; }
.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .65rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11,11,11,.13);
}
.feature-list li::before { content: "✦"; color: #a7772c; }
.note {
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--gold);
  color: #5d574e;
  background: #eee5d5;
}

.addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: auto;
  border-top: 1px solid #d8cdbb;
}
.addon {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #d8cdbb;
}
.addon:nth-child(odd) { border-right: 1px solid #d8cdbb; }
.addon strong { font-weight: 600; }
.addon span { color: #8b662c; font-weight: 700; white-space: nowrap; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: auto;
  border: 1px solid var(--line);
}
.step { padding: 2rem; }
.step + .step { border-left: 1px solid var(--line); }
.step b { color: var(--gold); font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.step h3 { margin: .8rem 0; font-size: 1.8rem; }
.step p { color: var(--muted); }

.inquiry-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1rem;
  max-width: 1100px;
  margin: auto;
}
.inquiry-copy, .inquiry-form { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); }
.inquiry-copy h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
.inquiry-copy p { color: var(--muted); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label { font-size: .75rem; color: var(--gold-light); letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(246,241,232,.32);
  border-radius: 0;
  color: var(--ivory);
  background: transparent;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 120px; resize: vertical; }
.field select option { color: var(--ink); }
.form-note { color: var(--muted); font-size: .82rem; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--gold);
  background: linear-gradient(120deg, #171511, #0c0c0b);
}
.cta-band h2 { max-width: 700px; font-size: clamp(2.4rem, 5vw, 4.5rem); }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 2rem;
  padding: 4rem clamp(1.2rem, 6vw, 5.5rem) 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-title { font-family: var(--serif); font-size: 2rem; }
.site-footer p, .site-footer a { color: var(--muted); }
.site-footer h3 { margin-bottom: .8rem; color: var(--gold-light); font: 700 .72rem var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; }
.copyright { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    background: #0b0b0b;
  }
  .nav.open { display: flex; }
  .nav a { padding: .75rem 0; }
  .nav .nav-cta { margin-top: .5rem; text-align: center; }
  .package-grid, .steps { grid-template-columns: 1fr; }
  .package-card { min-height: auto; }
  .split, .detail-shell, .inquiry-layout { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .hero { min-height: 760px; }
  .hero::before {
    background:
      linear-gradient(0deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.52) 64%, rgba(5,5,5,.12) 100%),
      url("weddings/DSQ_2643_Original.webp") 67% top / auto 62% no-repeat;
  }
  .hero-inner { padding-top: 19rem; }
  .section-header, .field-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .addon:nth-child(odd) { border-right: 0; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div:first-child, .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Real Q Photos wedding stories, with room for the complete portrait. */
.team-photo { width: 100%; height: 100%; max-height: 760px; object-fit: cover; object-position: center 35%; }
.collection-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 1.5rem; }
.photo-story { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: center; gap: clamp(1rem,3vw,3rem); max-width: 1200px; margin: 0 auto; padding: clamp(1.5rem,4vw,4rem) clamp(1.2rem,3vw,3rem); }
.story-photo { width: 100%; height: auto; max-height: 620px; object-fit: contain; }
.photo-story.single { grid-template-columns: 1fr; padding: 0; margin-bottom: 2rem; }
.hero::before { background-position: center, center, 72% center; }
@media(max-width:650px) {
 .photo-story { grid-template-columns: 1fr; }
 .team-photo { max-height: 620px; height: auto; }
 .hero::before { background-position: center, center top; background-size: auto, auto 55%; }
}

/* Wedding album: broad candid moments balanced with portrait details. */
.wedding-gallery { background: #11110f; border-bottom: 1px solid var(--line); }
.gallery-heading { max-width: 1200px; margin: 0 auto 3rem; }
.gallery-heading h2 { font-size: clamp(2.6rem, 6vw, 5rem); }
.wedding-mosaic { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2.5rem); align-items: start; max-width: 1200px; margin: auto; }
.wedding-frame { margin: 0; min-width: 0; padding: clamp(.45rem, 1vw, .8rem); border: 1px solid var(--line); background: #1a1915; box-shadow: 0 16px 35px #0003; }
.wedding-frame img { width: 100%; height: auto; }
.wedding-frame figcaption { padding: 1rem .35rem .4rem; color: var(--ivory); font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.3; }
.wedding-frame figcaption span { display: block; margin-bottom: .45rem; color: var(--gold-light); font-family: var(--sans); font-size: .875rem; letter-spacing: .1em; text-transform: uppercase; }
.moment-couple { grid-column: 1 / 9; }
.moment-sign { grid-column: 9 / 13; margin-top: 4rem; }
.moment-lanterns { grid-column: 1 / 5; }
.moment-party { grid-column: 5 / 13; margin-top: 4rem; }
@media (max-width: 650px) {
 .wedding-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
 .moment-couple, .moment-party { grid-column: 1 / -1; margin-top: 0; }
 .moment-sign { grid-column: 1; margin-top: 0; }
 .moment-lanterns { grid-column: 2; }
 .wedding-frame figcaption { font-size: 1.25rem; }
 .wedding-frame figcaption span { letter-spacing: .02em; }
}

/* Featured couple: preserve both faces and their wedding toast. */
.hero::before {
  left: 38%;
  background: linear-gradient(90deg, #111 0%, transparent 24%),
    url("weddings/DSQ_2643_Original.webp") center 30% / cover no-repeat;
  transform: none;
}
.hero-inner { width: 52%; padding-right: 2rem; }
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: clamp(300px, 65vw, 520px); }
  .hero::before {
    left: 0; bottom: auto; height: clamp(320px, 68vw, 550px);
    background: linear-gradient(0deg, #111 0%, transparent 25%),
      url("weddings/DSQ_2643_Original.webp") center top / cover no-repeat;
  }
  .hero-inner { width: 100%; padding: 2rem clamp(1.2rem, 6vw, 5.5rem) 3rem; }
}

/* Memories collection portrait gallery */
@media (min-width: 901px) {
  .photo-story.memories-photos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Subtle editorial finish for the Memories and Legacy photographs. */
.polished-collection .story-photo {
  filter: brightness(1.025) contrast(1.09) saturate(1.10) sepia(.055);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  border: 1px solid rgba(216,185,112,.22);
}

/* Keep the ceremony framing above the seated foreground guest. */
.memories-photos .ceremony-crop {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 15;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  border: 1px solid rgba(216,185,112,.22);
}
.memories-photos .ceremony-crop .story-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: none;
  border: 0;
  box-shadow: none;
}
