:root {
  --ink: #23171a;
  --wine: #651424;
  --wine-dark: #25070e;
  --red: #a71d35;
  --gold: #c59a4a;
  --cream: #fff9f0;
  --blush: #f6e7e3;
  --white: #ffffff;
  --body: "Montserrat", Arial, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.75;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--white);
  color: var(--wine);
  padding: .75rem 1rem;
  border-radius: 0 0 .5rem .5rem;
}
.skip-link:focus { top: 0; }

.site-header {
  min-height: 86px;
  padding: .65rem clamp(1rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #070707;
  color: var(--white);
  position: relative;
  z-index: 20;
}
.brand img {
  width: min(390px, 38vw);
  max-height: 68px;
  object-fit: contain;
}
nav { display: flex; align-items: center; gap: 1.35rem; }
nav a {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
}
nav a:hover, nav a:focus-visible { color: #efc36b; }
.nav-call {
  border: 1px solid var(--gold);
  padding: .7rem 1rem;
  border-radius: 999px;
}
.menu-button {
  display: none;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: white;
  padding: .55rem .8rem;
  font: 700 .75rem var(--body);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero {
  min-height: min(780px, calc(100vh - 86px));
  display: grid;
  place-items: center start;
  position: relative;
  overflow: hidden;
  background: var(--wine-dark);
  color: var(--white);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,4,9,.96) 0%, rgba(42,7,15,.87) 33%, rgba(42,7,15,.25) 63%, rgba(11,5,6,.12) 100%);
}
.hero-content {
  width: min(710px, 58vw);
  margin-left: clamp(1.35rem, 7vw, 8rem);
  padding: 5rem 0 6rem;
  position: relative;
  z-index: 2;
}
.eyebrow, .section-kicker, .card-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .91;
}
.hero .eyebrow {
  white-space: nowrap;
  font-size: clamp(.56rem, .72vw, .7rem);
  letter-spacing: .075em;
}
.hero h1 { font-size: clamp(4.6rem, 8.6vw, 8.6rem); }
h2 { font-size: clamp(3.25rem, 5.8vw, 5.9rem); }
h2 em, h1 em { color: var(--red); font-weight: 500; }
.hero h1 em { color: #f1c779; }
.hero-subhead {
  margin: 1.6rem 0 .75rem;
  font: 600 clamp(1.35rem, 2vw, 1.8rem) var(--display);
  letter-spacing: .02em;
}
.hero-copy { max-width: 620px; margin: 0; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.3rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.button-ghost { border: 1px solid rgba(255,255,255,.65); color: var(--white); }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.hero-signature {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 1.1rem;
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.83);
  font: 600 1rem var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.35rem, 7vw, 8rem); }
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.intro h2 { max-width: 700px; }
.intro .lead { margin-top: .4rem; font-size: 1.18rem; }
.intro p { max-width: 670px; }
.intro .lead strong { color: var(--wine); }

.romance-scope {
  background: var(--wine-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(420px, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.romance-intro {
  position: sticky;
  top: 2rem;
}
.romance-intro h2 { margin-bottom: 2rem; }
.romance-intro p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.8);
}
.romance-list {
  border-top: 1px solid rgba(241,202,126,.35);
}
.romance-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(241,202,126,.35);
}
.romance-list article > span {
  color: var(--gold);
  font: 600 1.2rem var(--display);
}
.romance-list h3 {
  margin: 0 0 .35rem;
  color: var(--white);
  font: 600 2rem/1.05 var(--display);
}
.romance-list p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--wine);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.wedding {
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}
.image-frame { position: relative; }
.image-frame::before {
  content: "";
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid var(--gold);
}
.image-frame img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: .65rem .9rem;
  background: rgba(31,6,12,.9);
  color: white;
  font: 600 1.05rem var(--display);
}
.wedding-copy h2 { margin-bottom: 2rem; }
.button-dark { margin-top: 1.25rem; background: var(--wine-dark); color: var(--white); }

.story {
  background: var(--wine-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.story-copy h2 { margin-bottom: 2rem; }
.story-copy p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.story-place { margin-top: 2rem; padding: 1.25rem 0 1.25rem 1.5rem; border-left: 1px solid var(--gold); }
.story-place span { display: block; color: rgba(255,255,255,.62); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.story-place strong { display: block; margin-top: .5rem; color: var(--gold); font: 600 2rem/1.1 var(--display); }
.wedding-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  align-items: start;
}
.wedding-photo {
  margin: 0;
  border: 1px solid rgba(241,202,126,.38);
  background: #12080b;
}
.wedding-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wedding-photo-main {
  grid-column: 1;
}
.wedding-photo-secondary { grid-column: 2; }
.wedding-photo-detail {
  grid-column: 1 / -1;
  width: min(68%, 620px);
  justify-self: center;
}
.wedding-photo-detail figcaption {
  padding: .7rem .9rem;
  background: rgba(18,8,11,.94);
  color: rgba(255,255,255,.9);
  font: 600 .95rem/1.25 var(--display);
  text-align: center;
}

.escapes { background: var(--cream); }
.section-heading { max-width: 850px; margin-bottom: 4rem; }
.escape-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.escape-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(101,20,36,.22);
  background: rgba(255,255,255,.56);
}
.escape-card.featured { background: var(--wine); color: white; }
.escape-card.featured .card-label, .escape-card.featured .card-number { color: #f0c878; }
.card-number { color: rgba(101,20,36,.36); font: 700 3.5rem/1 var(--display); }
.card-label { margin-top: 2rem; }
.escape-card h3 { margin: 0 0 1rem; font: 600 2.25rem/1 var(--display); }
.escape-card p:last-child { margin-bottom: 0; }

.world {
  min-height: 650px;
  padding: 0;
  background: #12090b;
  color: white;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}
.world-copy { padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.world-copy h2 { margin-bottom: 2rem; }
.world-copy p:not(.eyebrow) { color: rgba(255,255,255,.8); }
.world img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.text-link.light { color: #f1ca7e; }

.contact {
  background: var(--white);
  display: grid;
  grid-template-columns: .7fr 1fr .65fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.contact-logo { width: 100%; background: black; }
.contact-copy h2 { font-size: clamp(3rem, 5vw, 5rem); }
.contact-actions { display: grid; gap: 1rem; }
.phone-card {
  display: block;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(101,20,36,.24);
  border-left: 5px solid var(--red);
  text-decoration: none;
  transition: .2s ease;
}
.phone-card:hover, .phone-card:focus-visible { background: var(--blush); transform: translateX(3px); }
.phone-card span { display: block; color: var(--wine); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.phone-card strong { display: block; margin-top: .2rem; font: 600 1.65rem var(--display); }

footer {
  padding: 2rem clamp(1.35rem, 7vw, 8rem);
  background: #070707;
  color: rgba(255,255,255,.67);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: .78rem;
  letter-spacing: .05em;
}
footer p { margin: 0; }
footer strong { color: white; }

@media (max-width: 1050px) {
  .menu-button { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: #070707;
    flex-direction: column;
    align-items: stretch;
  }
  nav.open { display: flex; }
  nav a { padding: .55rem; }
  .brand img { width: min(390px, 65vw); }
  .story { grid-template-columns: .8fr 1.2fr; }
  .contact { grid-template-columns: .7fr 1.3fr; }
  .contact-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .site-header { min-height: 74px; }
  .hero { min-height: 780px; align-items: end; }
  .hero-photo { object-position: right center; }
  .hero-shade { background: linear-gradient(180deg, rgba(20,4,8,.1) 0%, rgba(28,5,11,.38) 35%, rgba(28,5,11,.97) 72%); }
  .hero-content { width: auto; margin: 0; padding: 16rem 1.35rem 6.5rem; }
  .hero h1 { font-size: clamp(4rem, 18vw, 6.5rem); line-height: .86; }
  .hero .eyebrow {
    font-size: clamp(.46rem, 1.8vw, .58rem);
    letter-spacing: .025em;
  }
  .hero-signature { right: 1.35rem; left: 1.35rem; text-align: center; font-size: .75rem; }
  .intro-grid, .romance-scope, .wedding, .world, .contact { grid-template-columns: 1fr; }
  .romance-intro { position: static; }
  .wedding-copy { order: -1; }
  .story { grid-template-columns: 1fr; }
  .wedding-gallery {
    grid-template-columns: 1fr;
  }
  .wedding-photo-main,
  .wedding-photo-secondary,
  .wedding-photo-detail {
    grid-column: 1;
    width: 100%;
  }
  .escape-grid { grid-template-columns: 1fr; }
  .world img { min-height: 420px; }
  .contact-logo { max-width: 520px; }
  .contact-actions { grid-column: auto; grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: .35rem; text-align: center; }
}

@media (prefers-reduced-motion: no-preference) {
  .button, .phone-card { transition: transform .2s ease, background-color .2s ease; }
}
