/* ============ Tokens ============ */
:root {
  --ivory: #FBF6EE;
  --ivory-deep: #F3EBDD;
  --white: #FFFFFF;
  --powder-blue: #A9C6DE;
  --powder-blue-deep: #7FA6C4;
  --blush-pink: #E7C7C0;
  --blush-pink-deep: #D8A79D;
  --champagne: #C9A66B;
  --champagne-deep: #AD8A52;
  --sage: #9FB48C;
  --charcoal: #AD8A52;
  --charcoal-soft: #C0A472;
  --heading-color: #566474;
  --line: rgba(173, 138, 82, 0.2);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --max-w: 1140px;
  --radius-sm: 4px;
  --radius-md: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 6vw;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}

section h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--tight { padding: 90px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
}

.section-head p {
  color: var(--charcoal-soft);
  margin-top: 18px;
}

/* ============ Divider (signature motif) ============ */
.sprig {
  width: 120px;
  height: 34px;
  margin: 28px auto 0;
  opacity: 0.85;
}
.sprig--light path,
.sprig--light circle { stroke: var(--ivory); }
.sprig path { fill: none; stroke: var(--champagne-deep); stroke-width: 1.1; stroke-linecap: round; }
.sprig circle { fill: var(--champagne-deep); stroke: none; }

/* ============ Nav ============ */
.site-header-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.masthead {
  background: var(--ivory);
  text-align: center;
  padding: 0 6vw;
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  max-width: 900px;
  margin: 0 auto;
}
.masthead-inner a { display: block; line-height: 0; }
.masthead-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--charcoal);
  white-space: nowrap;
}
.masthead-monogram-img {
  width: clamp(90px, 12vw, 140px);
  height: auto;
}
.masthead-monogram-fallback {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  color: var(--champagne-deep);
}
@media (max-width: 720px) {
  .masthead-inner { gap: 12px; }
  .masthead-name { font-size: 16px; }
  .masthead-monogram-img { width: 22vw; }
}

.nav {
  position: static;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
}
.nav-container--centered { justify-content: center; position: relative; }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--charcoal); border-color: var(--champagne-deep); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  position: absolute;
  right: clamp(20px, 3vw, 48px);
  top: 50%;
  transform: translateY(-50%);
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  cursor: pointer;
  color: var(--charcoal);
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-toggle button.active {
  background: var(--charcoal);
  color: var(--ivory);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 22px; height: 1.5px;
  background: var(--charcoal);
}

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 60px 6vw 80px;
  background: radial-gradient(ellipse at 50% -10%, var(--ivory-deep) 0%, var(--ivory) 55%);
}
.hero-arch {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 92vw);
  z-index: 0;
  opacity: 0.9;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
/* .hero-monogram circle framing removed — see updated rule further down (wide image lockup) */
.hero-eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.hero-names {
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.015em;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--charcoal);
  margin-bottom: 26px;
}
.hero-meta {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 44px;
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: 1px solid var(--charcoal);
}
.btn--dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--dark:hover { transform: translateY(-2px); background: #251f1a; }
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--outline:hover { background: var(--charcoal); color: var(--ivory); }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 34px;
  background: var(--charcoal-soft);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.9; }
}

/* ============ Countdown ============ */
.countdown-wrap {
  background: var(--ivory-deep);
  padding: 36px 0;
  text-align: center;
}
.countdown-label {
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
}
.countdown div {
  color: var(--charcoal);
}
.countdown .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  display: block;
}
.countdown .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-top: 4px;
  display: block;
}

/* ============ Concept ============ */
.concept {
  text-align: center;
}
.concept-body {
  max-width: 700px;
  margin: 0 auto;
}
.concept-body p { margin: 0 0 20px; color: var(--charcoal-soft); font-size: 17px; }
.concept-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--champagne-deep);
  margin-top: 34px;
}

.pillars {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.pillar {
  text-align: center;
  padding: 0 8px;
}
.pillar-icon {
  width: 40px; height: 40px;
  margin: 0 auto 18px;
  color: var(--champagne-deep);
}
.pillar h3 {
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 13.5px;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* ============ Programme ============ */
.programme { background: var(--ivory-deep); }
.timeline {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 84px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.t-item {
  display: grid;
  grid-template-columns: 108px 28px 1fr;
  gap: 0 20px;
  margin-bottom: 34px;
  position: relative;
}
.t-time {
  font-family: var(--font-display);
  font-size: 15px;
  text-align: right;
  color: var(--champagne-deep);
  padding-top: 2px;
  line-height: 1.3;
}
.t-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ivory-deep);
  border: 1.5px solid var(--champagne-deep);
  margin: 8px auto 0;
  z-index: 1;
}
.t-content h3 {
  font-size: 16.5px;
  margin-bottom: 4px;
}
.t-content p {
  font-size: 14px;
  color: var(--charcoal-soft);
  margin: 0;
}
.programme-note {
  max-width: 620px;
  margin: 46px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ivory);
  font-size: 14px;
  color: var(--charcoal-soft);
  text-align: center;
}

/* ============ Venue ============ */
.venue-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.venue-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--powder-blue) 0%, var(--blush-pink) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.venue-text p { color: var(--charcoal-soft); margin: 0 0 18px; }
.venue-facts {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.venue-fact-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 4px;
}
.venue-parking {
  margin-top: 32px;
  padding: 22px 26px;
  border-left: 2px solid var(--blush-pink-deep);
  background: var(--ivory-deep);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.venue-parking h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 8px;
  font-weight: 600;
}
.venue-parking p { margin: 0; font-size: 14px; color: var(--charcoal-soft); }

/* ============ RSVP ============ */
.rsvp { background: var(--ivory); color: var(--charcoal-soft); }
.rsvp .eyebrow { color: var(--champagne-deep); }
.rsvp .section-head h2 { color: var(--charcoal); }
.rsvp .section-head p { color: var(--charcoal-soft); }
.rsvp-deadline {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--champagne-deep);
}
.rsvp-form {
  max-width: 640px;
  margin: 0 auto;
}
.form-row { margin-bottom: 26px; }
.form-row label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 10px;
}
.form-row .help {
  font-size: 12.5px;
  color: var(--charcoal-soft);
  margin-top: 6px;
  text-transform: none;
  letter-spacing: normal;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="number"],
.form-row textarea {
  width: 100%;
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--charcoal-soft); opacity: 0.6; }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--champagne-deep);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.radio-group { display: flex; gap: 14px; }
.radio-pill {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  color: var(--charcoal);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.radio-pill input { display: none; }
.radio-pill.checked {
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--champagne-deep);
}
.rsvp-submit {
  width: 100%;
  background: var(--champagne-deep);
  color: var(--ivory);
  border: none;
  padding: 17px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.rsvp-submit:hover { transform: translateY(-2px); background: var(--champagne-deep); }
.rsvp-status {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  display: none;
}
.rsvp-status.show { display: block; }
.rsvp-status.ok { color: #6B8355; }
.rsvp-status.err { color: #B5675C; }

/* ============ Stay ============ */
.stay { text-align: center; }
.stay p { max-width: 620px; margin: 0 auto; color: var(--charcoal-soft); }

/* ============ Gift ============ */
.gift { background: var(--ivory-deep); text-align: center; }
.gift p { max-width: 600px; margin: 0 auto 40px; color: var(--charcoal-soft); }
.gift-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px;
}
.gift-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.gift-row + .gift-row { border-top: 1px solid var(--line); }
.gift-row .label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-soft); }
.gift-row .value { font-family: var(--font-display); font-size: 16px; color: var(--champagne-deep); }

/* ============ Dress code ============ */
.dress { text-align: center; }
.dress-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--champagne-deep);
  margin-top: 8px;
  display: block;
}
.dress p.dress-text { max-width: 620px; margin: 24px auto 50px; color: var(--charcoal-soft); }
.palette-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.swatch {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.dress-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dress-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 16px;
}
.dress-photo:nth-child(1) { background: linear-gradient(160deg, var(--powder-blue), var(--ivory-deep)); color: var(--charcoal-soft); }
.dress-photo:nth-child(2) { background: linear-gradient(160deg, var(--blush-pink), var(--champagne)); }
.dress-photo:nth-child(3) { background: linear-gradient(160deg, var(--sage), var(--ivory-deep)); color: var(--charcoal-soft); }

/* ============ Footer ============ */
.footer {
  padding: 70px 0 40px;
  text-align: center;
  background: var(--ivory-deep);
  color: var(--charcoal-soft);
  border-top: 1px solid var(--line);
}
.footer-mono {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--champagne-deep);
  margin-bottom: 6px;
}
.footer-date { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 30px; color: var(--charcoal); }
.footer-credit { font-size: 11.5px; }

/* ============ Reveal animation ============ */
.reveal { opacity: 1; transform: none; }
html.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
html.js-ready .reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .venue-grid { grid-template-columns: 1fr; gap: 40px; }
  .venue-photo { aspect-ratio: 16/9; }
}

@media (max-width: 720px) {
  .nav-links, .nav-right .lang-toggle { display: none; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 20px 6vw 26px;
    gap: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .nav.open .nav-right .lang-toggle { display: flex; margin-top: 4px; }
  .nav-burger { display: flex; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .dress-photos { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero { padding-top: 120px; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ---------- Full-page fixed floral background (site-wide, provided by the user) ---------- */
.site-floral-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("assets/floral-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 720px) {
  .site-floral-bg {
    background-image: url("assets/floral-left.png"), url("assets/floral-right.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom, right bottom;
    background-size: 58% auto, 58% auto;
  }
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  margin-top: 0;
  padding: 25px 6vw 15px;
  text-align: center;
  background: var(--ivory);
  position: relative;
}
.page-banner + section,
.page-banner + .section {
  padding-top: 20px !important;
}
.page-banner h1 {
  color: var(--charcoal);
  font-size: clamp(28px, 4.5vw, 42px);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ---------- Dotted card (matches reference site's card style) ---------- */
.card--dotted {
  background: var(--ivory);
  border: 1.5px dotted var(--champagne-deep);
  border-radius: var(--radius-md);
  padding: 40px 36px;
}
.card-icon {
  width: 34px; height: 34px;
  color: var(--champagne-deep);
  margin-bottom: 18px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.card--dotted h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.card--dotted p, .card--dotted li { color: var(--charcoal-soft); font-size: 14.5px; }
.card--dotted ul { padding-left: 18px; margin: 6px 0 14px; text-align: left; }
.card--dotted li { margin-bottom: 6px; line-height: 1.5; text-align: left; }
.card--dotted strong { color: var(--charcoal); font-weight: 600; }
.card--dotted p { text-align: left; }

/* ---------- Ambiance carousel ---------- */
.carousel {
  max-width: 380px;
  margin: 0 auto;
  position: relative;
}
.carousel-viewport {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--ivory-deep);
  border: 1px solid var(--line);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; }
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--champagne-deep); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(251,246,238,0.85);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--charcoal);
}
.carousel-arrow--prev { left: -14px; }
.carousel-arrow--next { right: -14px; }

/* ---------- Simple two-column info section (stay / area pages) ---------- */
.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--ivory-deep), var(--blush-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  font-size: 11.5px;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--line);
}
.gallery-tile:nth-child(3n+2) { background: linear-gradient(150deg, var(--ivory-deep), var(--powder-blue)); }
.gallery-tile:nth-child(3n) { background: linear-gradient(150deg, var(--ivory-deep), var(--sage)); }

/* ---------- Gift two-column bank details ---------- */
.gift-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Home mini CTA band ---------- */
.home-cta {
  text-align: center;
  background: var(--ivory-deep);
}
.home-cta p { max-width: 520px; margin: 16px auto 30px; color: var(--charcoal-soft); }

@media (max-width: 900px) {
  .card-grid-2, .info-columns, .gift-columns { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Real venue photos ---------- */
.venue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.venue-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: -30px;
  margin-bottom: 10px;
}
.venue-support-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media (max-width: 720px) {
  .venue-support-grid { grid-template-columns: 1fr; margin-top: 10px; }
}

/* ---------- Hero with real background photo ---------- */
/* (hero--photo rules removed — replaced by floral corner illustration) */

/* ---------- Concept section with couple photo ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}
.concept-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.concept-body--side { max-width: none; margin: 0; }
.concept-body--side .concept-quote { text-align: left; }

@media (max-width: 820px) {
  .concept-grid { grid-template-columns: 1fr; text-align: center; }
  .concept-body--side .concept-quote { text-align: center; }
  .concept-photo { max-width: 320px; margin: 0 auto; }
}

.gallery-tile--photo { padding: 0; overflow: hidden; }
.gallery-tile--photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Monogram image (replaces V & D text once user supplies assets/monogram.png) ---------- */
.nav-mono-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-mono { line-height: 0; flex-shrink: 0; }
.nav-mono-fallback {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  line-height: 1.4;
}
.footer-mono-img {
  height: 150px;
  width: auto;
  margin: 0 auto 14px;
  display: block;
}
.footer-mono-fallback {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--champagne-deep);
  margin-bottom: 6px;
}
.hero-monogram {
  width: min(300px, 70vw);
  margin: 0 auto 18px;
}
.hero-monogram-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-monogram-fallback {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  color: var(--champagne-deep);
}

/* ---------- Hero with a real venue photo ---------- */
.hero--venue-photo {
  background-image: url("assets/hero-venue.jpg");
  background-size: cover;
  background-position: 70% center;
}
.hero--venue-photo .hero-inner {
  text-shadow:
    0 0 3px rgba(251,246,238,0.95),
    0 0 10px rgba(251,246,238,0.9),
    0 0 20px rgba(251,246,238,0.75);
}
.hero--venue-photo .btn {
  text-shadow: none;
}
.hero-venue-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--champagne-deep);
  margin: -8px 0 30px;
}

@media (max-width: 720px) {
  .hero {
    min-height: 0;
    padding: 100px 6vw 60px;
  }
  .hero--venue-photo {
    background-position: 68% top;
  }
  .nav .nav-mono {
    display: none;
  }
  .nav-right {
    margin-left: auto;
  }
}

/* ---------- Venue teaser (homepage) ---------- */
.venue-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 50px auto 0;
}
.venue-teaser-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media (max-width: 720px) {
  .venue-teaser-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* ---------- Our story (homepage) ---------- */
.concept-body--story p { margin-bottom: 16px; }
.concept-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--champagne-deep);
  margin-top: 24px;
  line-height: 1.6;
}

/* ---------- Venue map + directions ---------- */
.venue-directions-btn {
  display: inline-block;
  margin-top: 22px;
}
.venue-map {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.venue-map iframe { display: block; }

/* ---------- Simple hero (small photo, matches reference site) ---------- */
.hero--simple {
  min-height: 0;
  padding: 150px 6vw 70px;
  background: radial-gradient(ellipse at 50% -10%, var(--ivory-deep) 0%, var(--ivory) 55%);
}
.hero-photo-small {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto 30px;
}

/* ---------- Welcome section ---------- */
.welcome .section-head p { margin: 0 auto 12px; max-width: 560px; }
.welcome { padding-bottom: 20px; }
.discovery-cards { padding-top: 20px; padding-bottom: 20px; }
.std-section { padding-top: 10px; }
.std-section .section-head { margin-bottom: 12px; }

/* ---------- Discovery cards (homepage) ---------- */
.discovery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}
.discovery-card {
  flex: 0 1 230px;
}
.discovery-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.discovery-card .card-icon { margin: 0 auto 18px; }
.discovery-card p { margin-bottom: 22px; flex-grow: 1; }
/* Flexbox with flex-wrap handles responsive reflow automatically — no breakpoints needed */

/* ---------- Homepage hero trio (photo | text | photo) ---------- */
.hero-trio {
  padding: 30px 0 20px;
  background: var(--ivory);
}
.hero-trio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-trio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.hero-trio-text {
  text-align: center;
}
.hero-trio-text h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}
.hero-trio-date {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.hero-trio-place {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--charcoal-soft);
  margin: 0;
}
@media (max-width: 820px) {
  .hero-trio-grid { grid-template-columns: 1fr; max-width: 320px; }
  .hero-trio-text { order: -1; }
}

/* ---------- Notre histoire: top/bottom photo rows ---------- */
.story-top-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 520px;
  margin: 0 auto 50px;
}
.story-bottom-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 50px auto 0;
}
.story-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.story-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.story-text .concept-signature { text-align: left; }
@media (max-width: 720px) {
  .story-top-photos { max-width: 320px; }
  .story-bottom-photos { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ---------- Simple programme list (reference-site style) ---------- */
.programme-list {
  max-width: 640px;
  margin: 0 auto;
}
.programme-row {
  display: flex;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.programme-row:last-child { border-bottom: none; }
.programme-time {
  flex-shrink: 0;
  width: 130px;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--champagne-deep);
}
.programme-desc {
  font-size: 14.5px;
  color: var(--charcoal-soft);
  line-height: 1.5;
}
.programme-desc strong { color: var(--charcoal); font-weight: 600; }
@media (max-width: 560px) {
  .programme-row { flex-direction: column; gap: 4px; }
  .programme-time { width: auto; }
}

/* ---------- Save the date image (homepage) ---------- */
.std-image-wrap {
  max-width: 420px;
  margin: 0 auto;
}
.std-image { width: 100%; border-radius: var(--radius-md); box-shadow: 0 12px 30px rgba(86,100,116,0.15); }
.std-ru { display: none; }
html[lang="ru"] .std-fr { display: none; }
html[lang="ru"] .std-ru { display: block; }

/* ---------- Ambiance single image (Wedding inspiration moodboard) ---------- */
.ambiance-single {
  max-width: 380px;
  margin: 0 auto;
}
.ambiance-single-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(86,100,116,0.15);
}
