/* ==========================================================================
   MadlyWed.co.uk — Single-page master stylesheet
   Premium wedding photography. France & UK.
   ========================================================================== */

/* --- Reset + base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* --- Tokens ------------------------------------------------------------- */
:root {
  --cream: #FAF4E8;
  --cream-warm: #F2EAD7;
  --cream-soft: #FDF8EE;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #4A4A48;
  --ink-light: #8A8A85;
  --accent: #983238;       /* deep burgundy / wine */
  --accent-dark: #6E2025;
  --accent-soft: #F4DDDF;
  --gold: #D4A574;
  --dark: #1F1816;
  --dark-2: #2B201D;
  --rule: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.03), 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hero: 0 20px 60px rgba(0, 0, 0, 0.12);

  --font-serif: 'Fraunces', 'PT Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --pill: 999px;

  --maxw: 1280px;
  --section-y: clamp(80px, 11vw, 140px);
  --gutter: clamp(24px, 5vw, 56px);
}

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.7rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }
h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
p + p { margin-top: 1em; }
a { color: inherit; text-decoration: none; transition: color 200ms ease; }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.eyebrow-pill {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--pill);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
}

/* --- Layout helpers ----------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-y) 0; position: relative; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-header { max-width: 900px; margin: 0 auto clamp(50px, 6vw, 80px); }
.center.section-header { text-align: center; }
.center.section-header h2 { margin: 0 auto; max-width: 22ch; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 220ms ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(152, 50, 56, 0.25);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-light {
  background: var(--cream-warm);
  color: var(--ink);
}
.btn-light:hover { background: var(--ink); color: var(--cream); }

.btn-sm { padding: 10px 20px; font-size: 0.86rem; }

/* --- Navigation --------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250, 244, 232, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 250ms ease, box-shadow 250ms ease;
}
.nav.scrolled { padding: 12px var(--gutter); box-shadow: 0 1px 0 var(--rule); }

.nav-brand {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.nav-brand .brand-name {
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.nav-brand .dot {
  color: var(--accent);
  margin: 0 -0.06em;
}
.nav-brand .region {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-left: 1px solid var(--rule);
  padding-left: 14px;
}

.nav-links {
  display: flex; align-items: center; gap: clamp(20px, 2.8vw, 36px);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { margin-left: clamp(10px, 1.5vw, 24px); }

/* Override link colour for the CTA pill so white text stays white on burgundy */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 28px; height: 20px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: all 250ms ease;
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 14px; }
.nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { top: 9px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-brand .region { display: none; }
  .nav-links {
    position: fixed; inset: 0 0 0 0;
    background: var(--cream);
    flex-direction: column; justify-content: center;
    gap: 24px; z-index: -1;
    opacity: 0; pointer-events: none; transition: opacity 250ms ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  right: -8%; top: 20%;
  width: 760px; height: 760px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0; opacity: 0.55;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero h1 {
  margin-bottom: 28px;
  max-width: 12ch;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
}
.hero .lead { margin-bottom: 36px; max-width: 50ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-side {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.hero-side img { width: 100%; height: 100%; object-fit: cover; }
.hero-floater {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  background: rgba(31, 24, 22, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius);
}
.hero-floater h4 {
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-floater p {
  color: rgba(250, 244, 232, 0.85);
  font-size: 0.92rem;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-decor { right: -50%; opacity: 0.45; }
}

/* --- Stats row ---------------------------------------------------------- */
.stats {
  padding: 30px 0 var(--section-y);
}
.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  overflow: hidden;
}
.stat {
  background: var(--white);
  padding: clamp(20px, 2.5vw, 32px);
}
.stat .label {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .stats-card { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-card { grid-template-columns: 1fr; }
}

/* --- Two-column section ------------------------------------------------- */
.split-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split-2col h2 { margin-bottom: 22px; }
.split-2col p { margin-bottom: 22px; }
@media (max-width: 900px) {
  .split-2col { grid-template-columns: 1fr; gap: 50px; }
}

/* --- Why MadlyWed (dark section) ---------------------------------------- */
.section-dark {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius-xl);
  margin: 0 var(--gutter);
  padding: clamp(60px, 7vw, 100px) clamp(40px, 6vw, 80px);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .lead, .section-dark p { color: rgba(250, 244, 232, 0.75); }
.section-dark-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.section-dark-image img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; margin-top: 30px; }
.checklist li {
  display: flex; gap: 14px; padding: 12px 0;
  align-items: flex-start;
  font-size: 0.96rem;
  color: rgba(250, 244, 232, 0.85);
  line-height: 1.55;
}
.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(212, 165, 116, 0.15);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

/* --- Where I work (region pills + cards) -------------------------------- */
.pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
  list-style: none;
}
.pills li {
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--pill);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 200ms ease;
}
.pills li:hover { border-color: var(--accent); color: var(--accent); }

.card-stack { display: flex; flex-direction: column; gap: 18px; }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: var(--shadow-card);
}
.card h4 { margin-bottom: 12px; }
.card h3 { margin-bottom: 12px; }

/* --- Three-card row (approach) ------------------------------------------ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.card-num {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-card);
}
.card-num .num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.card-num h3 { margin-bottom: 14px; }
@media (max-width: 880px) {
  .cards-3 { grid-template-columns: 1fr; }
}

/* --- Gallery (square thumbs, 4 across) ---------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 50px;
}
.gallery-grid .g {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background-color: var(--cream-warm);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-grid .g img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}
.gallery-grid .g::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(31, 24, 22, 0.0);
  transition: background 300ms ease;
  pointer-events: none;
}
.gallery-grid .g:hover img { transform: scale(1.04); }
.gallery-grid .g:hover::after { background: rgba(31, 24, 22, 0.18); }

.gallery-more {
  display: flex; justify-content: center;
  margin-top: 32px;
}

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* --- Lightbox ----------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 12, 11, 0.94);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 5vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease;
}
.lightbox-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transform: none;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-btn { width: 44px; height: 44px; font-size: 1.3rem; }
}

/* --- Investment / Pricing cards ----------------------------------------- */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.6vw, 36px);
  margin-top: 50px;
}
.investment-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 3.4vw, 48px) clamp(28px, 3vw, 40px) clamp(32px, 3.4vw, 44px);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.investment-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.10); }
.investment-card.featured { border: 1.5px solid var(--accent); }
.investment-card .badge-featured {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--pill);
  white-space: nowrap;
}
.investment-card .label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.investment-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.investment-card .price {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  color: var(--ink);
  margin: 8px 0 22px;
  font-weight: 600;
  line-height: 1;
}
.investment-card .price-from {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: block;
  margin-bottom: 6px;
}
.investment-card .poa {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin: 8px 0 22px;
}
.investment-card .inc-list {
  list-style: none;
  margin: 0 0 24px;
  flex: 1;
}
.investment-card .inc-list li {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.investment-card .inc-list li:last-child { border-bottom: 0; }
.investment-card .inc-list li::before {
  content: "—";
  position: absolute;
  left: 0; top: 8px;
  color: var(--gold);
  font-weight: 600;
}
.investment-card .cta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 3px;
  transition: opacity 200ms ease;
}
.investment-card .cta:hover { opacity: 0.7; }
.investment-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--ink-light);
  font-family: var(--font-serif);
  font-style: italic;
}
@media (max-width: 980px) {
  .investment-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- Quirks block ------------------------------------------------------- */
.quirks {
  position: relative;
}
.quirks-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quirks-inner h2 { margin-bottom: 36px; }
.quirks-inner .lead-quirks {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 auto;
}
.quirks-inner .lead-quirks em {
  color: var(--accent);
  font-style: italic;
}

/* --- Destination France section ----------------------------------------- */
.destination {
  background: var(--cream-warm);
}
.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.destination-image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.destination-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 880px) {
  .destination-grid { grid-template-columns: 1fr; gap: 40px; }
  .destination-image { aspect-ratio: 4/3; }
}

/* --- Testimonial snapshot ----------------------------------------------- */
.testimonial-snap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-snap .stars {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.testimonial-snap p.quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 auto 18px;
  max-width: 660px;
}
.testimonial-snap .source {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}
.testimonial-snap .source a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

/* --- About / Meet Jean-Luc section -------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-card);
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-portrait .placeholder-msg {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 30px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.5;
  background: var(--cream);
}
.about-portrait .placeholder-msg strong {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-content h2 { margin-bottom: 26px; }
.about-content p { margin-bottom: 18px; }
.about-content p:last-child { margin-bottom: 0; }
.about-signature {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--ink-light);
}
.about-signature span { color: var(--ink); font-weight: 600; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 480px; margin: 0 auto; }
}

/* --- Image divider (rounded, centred to match wrap) --------------------- */
.divider-image {
  max-width: var(--maxw);
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}
.divider-image-inner {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  max-height: 78vh;
  box-shadow: var(--shadow-card);
}
.divider-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (max-width: 760px) {
  .divider-image-inner { aspect-ratio: 4 / 3; max-height: none; }
}

/* --- Real Weddings (2x2 square teasers) --------------------------------- */
.real-weddings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: 50px;
}
.real-wedding {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: var(--shadow-card);
}
.real-wedding img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.real-wedding::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
  transition: opacity 250ms ease;
}
.real-wedding:hover img { transform: scale(1.03); }
.real-wedding-info {
  position: absolute;
  left: 28px; right: 28px; bottom: 26px;
  color: var(--cream);
  z-index: 2;
}
.real-wedding-info .label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.real-wedding-info h3 {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 6px;
}
.real-wedding-info .view {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(250, 244, 232, 0.85);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(250, 244, 232, 0.35);
  padding-bottom: 4px;
  transition: all 200ms ease;
}
.real-wedding:hover .view { color: var(--cream); border-bottom-color: var(--cream); }
@media (max-width: 720px) {
  .real-weddings { grid-template-columns: 1fr; }
}

/* --- FAQ accordion ------------------------------------------------------ */
.faq { max-width: 880px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 250ms ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent); }
.faq-item .answer {
  padding: 0 28px 26px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* --- Process steps ------------------------------------------------------ */
.process-steps { display: flex; flex-direction: column; gap: 18px; }
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
}
.process-step .badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.process-step h3 { margin-bottom: 6px; }
.process-step p { font-size: 0.96rem; }
@media (max-width: 480px) {
  .process-step { grid-template-columns: 1fr; gap: 12px; }
}

/* --- CTA block ---------------------------------------------------------- */
.cta-block {
  background: var(--accent);
  color: var(--cream);
  border-radius: var(--radius-xl);
  margin: 0 var(--gutter);
  padding: clamp(50px, 6vw, 80px) clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.cta-block .eyebrow { color: var(--gold); margin-bottom: 16px; }
.cta-block h2 {
  color: var(--cream);
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}
.cta-block p {
  color: rgba(250, 244, 232, 0.85);
  max-width: 55ch;
}
.cta-block .btn { background: var(--cream-warm); color: var(--ink); position: relative; z-index: 2; }
.cta-block .btn:hover { background: var(--white); }
@media (max-width: 760px) {
  .cta-block { grid-template-columns: 1fr; }
}

/* --- Contact form ------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
}
.contact-left h2 { margin-bottom: 18px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
  margin-top: 20px;
}
.info-card h4 { color: var(--ink); margin-bottom: 6px; font-size: 0.7rem; }
.info-card p { font-size: 0.96rem; }
.info-card a { color: var(--accent); border-bottom: 1px solid currentColor; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--shadow-card);
}
.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 14px 18px;
  transition: all 200ms ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-light); }
.form-field input:focus, .form-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  display: none;
  font-size: 0.94rem;
}
.form-status.success { display: block; background: #E8F4EA; color: #2A6E37; }
.form-status.error   { display: block; background: var(--accent-soft); color: var(--accent-dark); }
.form-meta { margin-top: 16px; font-size: 0.84rem; color: var(--ink-light); line-height: 1.55; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* --- Footer ------------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(250, 244, 232, 0.7);
  padding: clamp(60px, 7vw, 90px) 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 50px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1;
}
.footer-brand .brand-name { letter-spacing: -0.04em; }
.footer-brand .dot {
  color: var(--accent);
  margin: 0 -0.06em;
}
.footer-logo {
  display: block;
  width: 110px;
  height: auto;
  max-width: 100%;
}
.footer p { color: rgba(250, 244, 232, 0.6); font-size: 0.92rem; max-width: 340px; }
.footer h4 { color: var(--cream); margin-bottom: 18px; font-size: 0.72rem; color: var(--gold); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(250, 244, 232, 0.7);
  font-size: 0.92rem;
  transition: color 200ms ease;
}
.footer ul a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 244, 232, 0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-size: 0.82rem;
  color: rgba(250, 244, 232, 0.5);
}
.footer-bottom .small-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 244, 232, 0.6);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- WhatsApp floating button ------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
  transition: transform 200ms ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* --- Reveal on scroll (progressive enhancement) ------------------------- */
html.js-on .reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms ease, transform 800ms ease; }
html.js-on .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
