/* =========================================================
   Events by Loving — Theme Styles
   Brand palette & type extracted 1:1 from the original site.
   ========================================================= */

:root {
  /* Brand colours (exact match to original Elementor kit) */
  --primary:   #201E1E;   /* near-black */
  --secondary: #362E2E;   /* warm charcoal */
  --text:      #534C4C;   /* body text */
  --accent:    #3A1219;   /* deep burgundy */
  --cream:     #FFFBF2;   /* page background */

  /* Derived tokens */
  --cream-2:   #F6EFE2;   /* subtle section tint */
  --line:      #E7DECB;   /* hairline borders on cream */
  --accent-2:  #5A1F2A;   /* burgundy hover */
  --on-dark:   #FBF6EC;   /* text on dark surfaces */
  --muted:     #7A7069;   /* muted meta text (>=4.5:1 on cream) */

  /* Type */
  --serif: "Noto Serif Display", Georgia, "Times New Roman", serif;
  --sans:  "Poppins", "Noto Sans Display", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius: 4px;
  --shadow: 0 18px 50px -24px rgba(32, 30, 30, 0.35);

  --z-nav: 50;
  --z-overlay: 40;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;      /* 17px */
  font-weight: 300;          /* Poppins Light — matches live */
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-2); }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--primary);
  font-weight: 300;          /* Noto Serif Display Light — the elegant weight the live site uses */
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.9rem, 8vw, 6rem); }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p  { margin: 0 0 1.15rem; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--on-dark);
  padding: .75rem 1.25rem; z-index: 100; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: var(--on-dark); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: min(var(--wrap), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { width: min(var(--wrap-narrow), 100%); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--cream-2); }
.section--dark { background: var(--primary); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--on-dark); }

/* Burgundy sections — the reddish blocks the live site uses for rhythm */
.section--burgundy { background: var(--accent); color: #F0DAD4; }
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3 { color: var(--on-dark); }
.section--burgundy .eyebrow { color: #E4B7AE; }
.section--burgundy .lead { color: #EBD3CD; }
.section--burgundy .quote p { color: #F3E3DE; }
.section--burgundy .quote__mark { color: #E4B7AE; opacity: .5; }
.section--burgundy .quote__name { color: var(--on-dark); }
.section--burgundy .quote__role { color: #CFA59D; }
.section--burgundy .quotes-arrow { background: transparent; border-color: rgba(240,218,212,.4); color: var(--on-dark); }
.section--burgundy .quotes-arrow:hover { background: var(--cream); color: var(--accent); border-color: var(--cream); }
.section--burgundy .quotes-dots button { background: rgba(240,218,212,.35); }
.section--burgundy .quotes-dots button[aria-selected="true"] { background: var(--cream); }
.section--burgundy .contact-info dt { color: #CFA59D; }
.section--burgundy .contact-info dd, .section--burgundy .contact-info dd a { color: #F3E3DE; }
.section--burgundy .contact-info dd a:hover { color: #fff; }
.section--burgundy .measure { color: #EBD3CD; }
/* Founder section on burgundy */
.section--burgundy .founder__quote { color: #F5E8E4; }
.section--burgundy .founder__role { color: #CFA59D; }
.section--burgundy .founder__name { color: var(--on-dark); }
.section--burgundy .split__media--frame::after { border-color: rgba(240,218,212,.55); }
.section--burgundy .btn--ghost { color: var(--on-dark); border-color: rgba(240,218,212,.5); }
.section--burgundy .btn--ghost:hover { background: var(--cream); color: var(--accent); border-color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1rem;
  display: block;
}
.section--dark .eyebrow { color: #C9A9A0; }
.lead { font-family: var(--serif); font-weight: 300; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.5; color: var(--secondary); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.center .measure { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 500; font-size: .95rem;
  letter-spacing: .02em;
  padding: .95rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--accent); color: var(--on-dark);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  text-align: center;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--on-dark); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--on-dark); }
.btn--on-dark { background: var(--cream); color: var(--primary); border-color: var(--cream); }
.btn--on-dark:hover { background: transparent; color: var(--on-dark); border-color: var(--on-dark); }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255, 251, 242, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 76px;
}
.site-brand { display: inline-flex; align-items: center; gap: .7rem; }
.site-brand img, .site-brand__logo, .site-brand .custom-logo { height: 78px; width: auto; }
@media (max-width: 780px) { .site-brand img, .site-brand__logo, .site-brand .custom-logo { height: 60px; } }
.site-header__inner { min-height: 108px; }
.primary-nav ul { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  color: var(--secondary); font-size: .9rem; font-weight: 500;
  letter-spacing: .04em; padding: .35rem 0; position: relative;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--accent); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { width: 100%; }
.header-cta { display: inline-flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--primary); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(4.5rem, 11vw, 9rem); text-align: center; position: relative; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin: 0 0 .3em; font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 2rem;
  margin-top: 2.25rem; color: var(--muted); font-size: .9rem; letter-spacing: .04em;
}
.hero__meta a { color: var(--secondary); }
.hero__actions { margin-top: 2.25rem; }
.hero__rule { width: 64px; height: 1px; background: var(--accent); margin: 2rem auto 0; opacity: .5; }

/* ---------- Hero with video background ---------- */
.hero--video {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(560px, 92vh, 900px);
  display: flex; align-items: center; justify-content: center;
  background: #171312;  /* fallback / letterbox */
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero__video { position: absolute; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; background: #171312; }
.hero__video-el {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(24,20,20,.55) 0%, rgba(24,20,20,.35) 45%, rgba(32,18,22,.7) 100%);
}
.hero--video .hero__content { position: relative; z-index: 1; text-align: center; }
.hero--video h1, .hero--video .hero__eyebrow { color: var(--on-dark); }
.hero--video h1 em { color: #E8C9C2; }
.hero--video .hero__eyebrow { color: #E6C7C0; }
.hero--video .hero__meta { color: rgba(251,246,236,.8); }
.hero--video .hero__meta a { color: var(--on-dark); }
.hero--video .hero__rule { background: var(--on-dark); opacity: .6; }

/* ---------- About / Founder ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split__media--frame::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--accent);
  border-radius: var(--radius); z-index: -1;
}
.founder__quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--secondary); line-height: 1.4; margin-bottom: 1.5rem;
}
.founder__role { text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; color: var(--muted); }
.founder__name { font-family: var(--serif); font-size: 2rem; color: var(--primary); margin: .1rem 0 1.25rem; }

/* ---------- Process (3 steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 2.5rem); margin-top: 3rem; }
.step { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.step__num { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); letter-spacing: .1em; }
.step h3 { margin: .5rem 0 .75rem; }
.step p { color: var(--text); font-size: .98rem; }

/* ---------- Packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2rem); margin-top: 3rem; align-items: start; }
.pkg {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column; height: 100%;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.pkg:hover { box-shadow: var(--shadow); border-color: var(--accent); transform: translateY(-4px); }
.pkg--featured { background: var(--accent); color: var(--on-dark); border-color: var(--accent); }
.pkg--featured h3, .pkg--featured .pkg__price { color: var(--on-dark); }
.pkg__badge {
  align-self: flex-start; font-size: .68rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--accent); background: var(--cream-2); padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.pkg--featured .pkg__badge { color: var(--primary); background: var(--cream); }
.pkg__name { font-family: var(--serif); font-style: italic; font-size: 1.6rem; margin: 0 0 .25rem; }
.pkg__tier { font-size: .95rem; color: var(--muted); }
.pkg--featured .pkg__tier { color: #C9B9B0; }
.pkg__price { font-family: var(--serif); font-size: 2.1rem; color: var(--primary); margin: .75rem 0 1.25rem; }
.pkg__list { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: .65rem; }
.pkg__list li { position: relative; padding-left: 1.6rem; font-size: .95rem; line-height: 1.5; }
.pkg__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(45deg);
}
.pkg--featured .pkg__list li::before { border-color: #D9B7B0; }
.pkg__list li.pkg__carry { font-weight: 600; padding-left: 0; color: var(--secondary); }
.pkg--featured .pkg__carry { color: var(--on-dark); }
.pkg__list li.pkg__carry::before { display: none; }
.pkg__cta { margin-top: auto; }
.packages__custom { text-align: center; margin-top: 2.5rem; font-size: 1.05rem; }
.packages__custom a { font-weight: 600; }

/* ---------- Testimonials (carousel) ---------- */
.quotes-carousel { margin-top: 3rem; }
.quotes-viewport { overflow: hidden; }
.quotes-track { display: flex; transition: transform .55s cubic-bezier(.25,.8,.25,1); will-change: transform; }
.quote {
  flex: 0 0 100%; min-width: 100%; box-sizing: border-box;
  text-align: center; padding: clamp(1rem, 4vw, 2.5rem) clamp(1rem, 6vw, 4rem); margin: 0;
}
.quote__mark { font-family: var(--serif); font-size: 4rem; line-height: .6; color: var(--accent); opacity: .35; display: block; }
.quote blockquote { margin: 0; }
.quote p {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.15rem, 2.3vw, 1.7rem); line-height: 1.5; color: var(--secondary);
  max-width: 46ch; margin: 1rem auto 0;
}
.quote__who { margin-top: 1.75rem; }
.quote__name { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--primary); }
.quote__role { display: block; margin-top: .25rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted); }

.quotes-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
.quotes-arrow {
  width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--cream); color: var(--secondary); cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.quotes-arrow:hover { background: var(--accent); color: var(--on-dark); border-color: var(--accent); }
.quotes-arrow svg { width: 20px; height: 20px; }
.quotes-dots { display: inline-flex; gap: .5rem; }
.quotes-dots button {
  width: 9px; height: 9px; padding: 0; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--line); transition: background .2s ease, transform .2s ease;
}
.quotes-dots button[aria-selected="true"] { background: var(--accent); transform: scale(1.25); }

/* ---------- Full-width editorial image band ---------- */
.editorial {
  min-height: clamp(340px, 46vw, 560px); display: flex; align-items: flex-end;
  background-image: linear-gradient(to bottom, rgba(24,20,20,.15) 0%, rgba(24,20,20,0) 30%, rgba(24,20,20,.62) 100%), var(--ed-jpg);
  background-size: cover; background-position: center 62%; background-repeat: no-repeat;
}
@supports (background-image: image-set(url("i.webp") type("image/webp"))) {
  .editorial { background-image: linear-gradient(to bottom, rgba(24,20,20,.15) 0%, rgba(24,20,20,0) 30%, rgba(24,20,20,.62) 100%), var(--ed-webp); }
}
.editorial__inner { width: min(var(--wrap), 100%); margin-inline: auto; padding: var(--gutter); padding-bottom: clamp(2rem, 5vw, 4rem); }
.editorial__line { font-family: var(--serif); font-weight: 300; font-style: italic; color: #fff; font-size: clamp(1.3rem, 3vw, 2.4rem); max-width: 20ch; margin: 0; text-shadow: 0 2px 20px rgba(0,0,0,.4); }

/* ---------- Photo band (intimate events) — natural image, light neutral scrim ---------- */
.band--photo {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  min-height: clamp(360px, 44vw, 560px); display: flex; align-items: center;
  background-image: linear-gradient(rgba(15,13,11,.28), rgba(15,13,11,.38)), var(--band-jpg);
  background-size: cover; background-position: center 55%; background-repeat: no-repeat;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
@supports (background-image: image-set(url("i.webp") type("image/webp"))) {
  .band--photo { background-image: linear-gradient(rgba(15,13,11,.28), rgba(15,13,11,.38)), var(--band-webp); }
}
.band--photo h2, .band--photo .lead { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.5); }
.band--photo .eyebrow { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.band--photo .wrap { position: relative; z-index: 1; }

/* ---------- Intimate events CTA band ---------- */
.band { text-align: center; }
.band h2 { max-width: 16ch; margin-inline: auto; }
.band p { max-width: 48ch; margin-inline: auto; }

/* ---------- Blog teaser ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem); margin-top: 3rem; }
.post-card { display: flex; flex-direction: column; }
.post-card__date { font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.post-card h3 { margin: .5rem 0 .75rem; font-size: 1.4rem; }
.post-card h3 a { color: var(--primary); }
.post-card h3 a:hover { color: var(--accent); }
.post-card__more { margin-top: auto; font-weight: 600; font-size: .9rem; letter-spacing: .03em; }
.post-card__more svg { width: 15px; height: 15px; vertical-align: -2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; margin-top: 2.5rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--primary);
  padding: 1.4rem 3rem 1.4rem 0; position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__q .faq__icon { flex: 0 0 auto; width: 20px; height: 20px; position: relative; }
.faq__q .faq__icon::before, .faq__q .faq__icon::after {
  content: ""; position: absolute; background: var(--accent); transition: transform .25s ease, opacity .25s ease;
}
.faq__q .faq__icon::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq__q .faq__icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 3rem 1.5rem 0; color: var(--text); font-size: .98rem; }

/* ---------- Contact / CTA form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-info dl { margin: 2rem 0 0; }
.contact-info dt { text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; color: var(--muted); margin-top: 1.5rem; }
.contact-info dd { margin: .3rem 0 0; font-size: 1.1rem; color: var(--secondary); }
.contact-info dd a { color: var(--secondary); }
.contact-info dd a:hover { color: var(--accent); }

.form-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--shadow); }
.section--dark .form-card { background: var(--secondary); border-color: #4b4141; box-shadow: none; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .82rem; letter-spacing: .04em; margin-bottom: .45rem; color: var(--secondary); font-weight: 500; }
.section--dark .field label { color: var(--on-dark); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--primary);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .85rem 1rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(58, 18, 25, 0.12);
}
.field--half { display: inline-block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 1rem; }
.form-alert { padding: .9rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .92rem; }
.form-alert--ok { background: #EAF3EC; color: #2C5233; border: 1px solid #BEDBC4; }
.form-alert--err { background: #F7E9E6; color: #7A2A20; border: 1px solid #E4C0B8; }

/* ---------- Instagram gallery ---------- */
.ig-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; margin-top: 2rem; }
.ig-grid a { position: relative; overflow: hidden; border-radius: 2px; aspect-ratio: 1; display: block; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, filter .3s ease; }
.ig-grid a:hover img { transform: scale(1.06); filter: brightness(.9); }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .8rem; letter-spacing: .04em; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-current] { color: var(--secondary); }

/* ---------- Single post ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article__meta { color: var(--muted); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.article h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.article__body { font-size: 1.12rem; line-height: 1.85; color: var(--secondary); margin-top: 2rem; }
.article__body p { margin-bottom: 1.5rem; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; border-top: 1px solid var(--line); padding-top: 1.5rem; font-size: .9rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { text-align: center; padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary); color: var(--on-dark); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.site-footer a { color: var(--on-dark); }
.site-footer a:hover { color: #E4C9C2; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem); }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: #B7ADA6; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { color: var(--on-dark); font-size: 1rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1.1rem; font-family: var(--sans); font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: #C4BBB4; font-size: .95rem; }
.footer-cta h4 { font-family: var(--serif); font-size: 1.5rem; text-transform: none; letter-spacing: 0; }
.footer-social { display: inline-flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom { border-top: 1px solid #3a3535; margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; color: #9A9089; font-size: .82rem; }

/* ---------- Scroll-reveal (only active when JS adds .js-reveal to <html>) ---------- */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Package enquiry modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(24, 20, 20, 0.55); backdrop-filter: blur(3px); animation: ebl-fade .25s ease; }
.modal__panel {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--cream); border-radius: 8px; padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.55); animation: ebl-pop .28s cubic-bezier(.2,.8,.2,1);
}
.modal__title { margin: .2rem 0 1.25rem; }
.modal__close {
  position: absolute; top: .9rem; right: .9rem; width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--secondary); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease;
}
.modal__close:hover { background: var(--accent); color: var(--on-dark); border-color: var(--accent); }
.modal__close svg { width: 18px; height: 18px; }
.form-package { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: .7rem 1rem; font-size: .9rem; color: var(--secondary); margin-bottom: 1.25rem; }
.form-package strong { color: var(--accent); }
@keyframes ebl-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ebl-pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
body.modal-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .steps, .packages, .quotes, .posts { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .primary-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .primary-nav {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .primary-nav ul { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .site-header.nav-open .primary-nav a { display: block; padding: .75rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split__media { order: -1; max-width: 460px; margin-inline: auto; }
  .steps, .packages, .quotes, .posts { grid-template-columns: 1fr; }
  .pkg--featured { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
