/* ============================================================
   FOUR THE DREAM WEDDINGS — Editorial Luxury Design System
   Palette: ivory · deep aubergine · champagne gold
   ============================================================ */

:root {
  --ivory:        #FBF8F3;
  --ivory-warm:   #F3ECE1;
  --aubergine:    #4A2545;
  --aubergine-dk: #2E1A2C;
  --gold:         #C5A572;
  --gold-lt:      #D8C4A0;
  --ink:          #2A2024;
  --muted:        #6E6168;
  --line:         rgba(74, 37, 69, 0.16);

  --serif: "Playfair Display", "Times New Roman", serif;
  --garamond: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1320px;
  --gut: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

::selection { background: var(--aubergine); color: var(--ivory); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow.dark { color: var(--aubergine); }

.display {
  font-size: clamp(2.6rem, 7vw, 6.2rem);
}

.lead {
  font-family: var(--garamond);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--aubergine);
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}

.italic { font-style: italic; }
.gold-text { color: var(--gold); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
section { position: relative; }
.pad { padding-block: clamp(4.5rem, 11vw, 10rem); }

.rule { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.15em 2.4em;
  border: 1px solid var(--aubergine);
  color: var(--aubergine);
  background: transparent;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: var(--aubergine); transform: translateY(101%);
  transition: transform 0.5s var(--ease); z-index: -1;
}
.btn:hover { color: var(--ivory); }
.btn:hover::after { transform: translateY(0); }
.btn.gold { border-color: var(--gold); color: var(--gold); }
.btn.gold::after { background: var(--gold); }
.btn.gold:hover { color: var(--aubergine-dk); }
.btn.solid { background: var(--aubergine); color: var(--ivory); border-color: var(--aubergine); }
.btn.solid::after { background: var(--gold); }
.btn.solid:hover { color: var(--aubergine-dk); }

.link-underline {
  font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--aubergine); position: relative; padding-bottom: 4px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem var(--gut);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
  mix-blend-mode: normal;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(14px);
  padding-block: 1.05rem;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .mark {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--ivory); transition: color 0.5s var(--ease);
}
.brand .sub {
  font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); margin-top: 0.5em;
}
.scrolled .brand .mark, .solid .brand .mark { color: var(--aubergine); }

.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav a {
  font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ivory); transition: color 0.4s var(--ease);
  position: relative;
}
.nav a::after {
  content:""; position:absolute; left:0; bottom:-6px; height:1px; width:100%;
  background: var(--gold); transform: scaleX(0); transform-origin:left;
  transition: transform .45s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.scrolled .nav a, .solid .nav a { color: var(--ink); }
.nav .btn { padding: 0.85em 1.6em; }
.scrolled .nav a.navbtn, .solid .nav a.navbtn { color: var(--aubergine); }
.nav a.navbtn { border:1px solid currentColor; padding:0.8em 1.5em; }
.nav a.navbtn::after { display:none; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; z-index: 110; }
.burger span { width: 26px; height: 1.5px; background: var(--ivory); transition: 0.4s var(--ease); }
.scrolled .burger span, .solid .burger span, .nav-open .burger span { background: var(--aubergine); }
.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { height: 100svh; min-height: 640px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.6s var(--ease), transform 7s linear;
}
.hero-bg .slide.on { opacity: 1; transform: scale(1); }
.hero::after {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(46,26,44,.45) 0%, rgba(46,26,44,.05) 35%, rgba(46,26,44,.78) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 8vw, 6rem); color: var(--ivory); }
.hero h1 { color: var(--ivory); margin: 0.3em 0 0.5em; }
.hero .lead { color: var(--ivory-warm); max-width: 30ch; }
.hero-meta {
  display:flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.4rem;
  font-family: var(--sans); font-size:0.72rem; letter-spacing:0.24em; text-transform:uppercase; color: var(--gold-lt);
}
.scroll-cue {
  position:absolute; bottom: 2rem; right: var(--gut); z-index:2; color: var(--ivory);
  font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; writing-mode: vertical-rl;
  display:flex; align-items:center; gap:1rem;
}
.scroll-cue::after { content:""; width:1px; height:52px; background: var(--gold); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity:.4;} 50%{ transform: scaleY(1); opacity:1;} }

/* ---------- Intro / statement ---------- */
.statement { text-align: center; }
.statement .lead { max-width: 26ch; margin: 1.6rem auto 0; }
.statement-big {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.4vw, 3.4rem); line-height: 1.25; max-width: 18ch; margin: 0 auto;
  color: var(--aubergine);
}

/* ---------- Featured split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.split.rev .split-media { order: 2; }
.split-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-media .tag {
  position:absolute; bottom:1.2rem; left:1.2rem; color:var(--ivory);
  font-size:0.68rem; letter-spacing:0.28em; text-transform:uppercase;
  background: rgba(46,26,44,.55); padding:0.6em 1em; backdrop-filter: blur(4px);
}
.split-copy .section-title { margin: 0.6rem 0 1.4rem; }
.split-copy p { color: var(--muted); margin-bottom: 1.6rem; max-width: 46ch; }

/* ---------- Numbers / The Four ---------- */
.four { background: var(--aubergine-dk); color: var(--ivory); }
.four .eyebrow { color: var(--gold); }
.four .section-title { color: var(--ivory); }
.four-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3.5rem; }
.four-grid .stat { text-align: center; padding: 1.5rem 0; border-top: 1px solid rgba(197,165,114,.3); }
.four-grid .num { font-family: var(--serif); font-style: italic; font-size: clamp(2.6rem, 5vw, 4.4rem); color: var(--gold); }
.four-grid .lbl { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ivory-warm); margin-top: 0.6rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3.5rem; }
.svc { background: var(--ivory); padding: clamp(2rem, 4vw, 3.2rem); transition: background 0.5s var(--ease); }
.svc:hover { background: var(--ivory-warm); }
.svc .no { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); }
.svc h3 { font-size: 1.7rem; margin: 1.2rem 0 0.9rem; }
.svc p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Gallery / Grid ---------- */
.gallery-controls { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin: 2.5rem 0 3.5rem; }
.filter {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.85em 1.7em; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer;
  transition: all 0.4s var(--ease);
}
.filter:hover { color: var(--aubergine); border-color: var(--aubergine); }
.filter.active { background: var(--aubergine); color: var(--ivory); border-color: var(--aubergine); }

.masonry { columns: 3; column-gap: 1rem; }
.masonry .cell { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; cursor: pointer; position: relative; }
.masonry .cell img { width: 100%; transition: transform 1.2s var(--ease), filter 0.6s var(--ease); filter: saturate(0.96); }
.masonry .cell:hover img { transform: scale(1.04); filter: saturate(1.05); }
.masonry .cell::after {
  content:""; position:absolute; inset:0; background: rgba(46,26,44,0); transition: background .5s var(--ease);
}
.masonry .cell:hover::after { background: rgba(46,26,44,.12); }

.more-wrap { text-align: center; margin-top: 3rem; }

/* ---------- Films grid ---------- */
.films { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.film {
  cursor: pointer; position: relative;
  opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.film.in { opacity: 1; transform: none; }
.film-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--aubergine-dk);
}
.film-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease), filter 0.6s var(--ease); filter: saturate(0.96) brightness(0.92); }
.film:hover .film-thumb img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.film-thumb::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(46,26,44,0) 40%, rgba(46,26,44,.55) 100%); }
.play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 76px; height: 76px; border-radius: 50%; border: 1px solid var(--gold);
  background: rgba(46,26,44,.35); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  transition: background .5s var(--ease), transform .5s var(--ease);
}
.film:hover .play { background: var(--gold); transform: translate(-50%,-50%) scale(1.08); }
.play::before { content:""; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent var(--ivory); margin-left: 4px; transition: border-color .5s var(--ease); }
.film:hover .play::before { border-left-color: var(--aubergine-dk); }
.film-meta { padding-top: 1.1rem; }
.film-meta .couple { font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.film-meta .lbl { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-top: 0.55rem; }

/* video lightbox */
.lb-video { width: min(92vw, 1100px); aspect-ratio: 16/9; display: none; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-video iframe { width: 100%; height: 100%; border: 0; }
.lightbox.video .lb-video { display: block; position: relative; }
.lightbox.video img { display: none; }
.lb-yt {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: -2.6rem;
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-lt); opacity: 0.8; transition: opacity 0.3s var(--ease);
}
.lb-yt:hover { opacity: 1; }

/* ---------- Proposals features ---------- */
.prop-feature { margin-bottom: clamp(4rem, 9vw, 8rem); }
.prop-feature:last-child { margin-bottom: 0; }
.prop-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.prop-head h2 { font-size: clamp(2rem, 5vw, 4rem); }
.prop-head .meta { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.6rem, 1.4vw, 1.1rem); }
.prop-grid .cell { overflow: hidden; cursor: pointer; aspect-ratio: 4/5; position: relative; }
.prop-grid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease), filter 0.6s var(--ease); filter: saturate(0.97); }
.prop-grid .cell:hover img { transform: scale(1.04); filter: saturate(1.05); }
.prop-grid .cell::after { content: ""; position: absolute; inset: 0; background: rgba(46,26,44,0); transition: background 0.5s var(--ease); }
.prop-grid .cell:hover::after { background: rgba(46,26,44,0.1); }

/* ---------- FAQ accordion ---------- */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.2rem) 0.25rem;
  font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.3; color: var(--aubergine);
  transition: color 0.4s var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-ic { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq-ic::before, .faq-ic::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold);
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.faq-ic::before { width: 18px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-ic::after { width: 1.5px; height: 18px; transform: translate(-50%, -50%); }
.faq.open .faq-ic::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.55s var(--ease); }
.faq-a p {
  font-family: var(--garamond); font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.6;
  color: var(--muted); padding: 0 0.25rem clamp(1.5rem, 3vw, 2.2rem); max-width: 60ch;
}

/* ---------- Testimonial ---------- */
.quote { text-align: center; }
.quote blockquote {
  font-family: var(--garamond); font-style: italic; font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.4; color: var(--aubergine); max-width: 22ch; margin: 1.5rem auto;
}
.quote .by { font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: clamp(9rem, 16vw, 13rem); padding-bottom: clamp(2rem, 5vw, 4rem); text-align: center; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.page-hero p { color: var(--muted); max-width: 50ch; margin: 1.2rem auto 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-info .eyebrow { margin-bottom: 1rem; }
.contact-info h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.4rem; }
.contact-info p.intro { color: var(--muted); margin-bottom: 2.4rem; max-width: 42ch; }
.contact-detail { display: block; margin-bottom: 1.6rem; }
.contact-detail .k { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.contact-detail .v { font-family: var(--garamond); font-size: 1.3rem; color: var(--aubergine); transition: color 0.3s var(--ease); }
a.contact-detail:hover .v { color: var(--gold); }
.process { margin-top: 2.8rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.process .step { display: flex; gap: 1.1rem; margin-bottom: 1.4rem; }
.process .step .n { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold); flex: 0 0 auto; line-height: 1.3; }
.process .step .t { font-size: 0.97rem; color: var(--muted); }
.process .step .t b { font-family: var(--serif); font-style: normal; font-weight: 500; color: var(--aubergine); display: block; font-size: 1.05rem; margin-bottom: 0.15rem; }

.form-card { background: #fff; border: 1px solid var(--line); padding: clamp(1.25rem, 3vw, 2.2rem); box-shadow: 0 24px 60px rgba(74,37,69,0.07); }
.form-card .form-head { font-family: var(--serif); font-size: 1.4rem; color: var(--aubergine); margin-bottom: 0.4rem; }
.form-card .form-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.6rem; }
.hb-embed { min-height: 720px; }
.form-fallback { margin-top: 1.4rem; text-align: center; font-size: 0.8rem; }

/* ---------- CTA band ---------- */
.cta { background: var(--aubergine); color: var(--ivory); text-align: center; }
.cta .section-title { color: var(--ivory); max-width: 16ch; margin: 1rem auto 2rem; }
.cta .eyebrow { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--aubergine-dk); color: var(--ivory-warm); padding-top: clamp(4rem, 8vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(197,165,114,.22); }
.footer-top .mark { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--ivory); }
.footer-top p { color: rgba(243,236,225,.7); font-size: 0.95rem; margin-top: 1rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col a, .footer-col span { display: block; color: rgba(243,236,225,.8); margin-bottom: 0.8rem; font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 2rem; font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(243,236,225,.5); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(46,26,44,.96); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb-close, .lb-nav { position: absolute; background: none; border: 0; color: var(--ivory); cursor: pointer; font-family: var(--serif); }
.lb-close { top: 1.5rem; right: 2rem; font-size: 2.4rem; }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 3rem; padding: 0 1.5rem; opacity: 0.7; transition: opacity 0.3s; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; } .reveal.d2 { transition-delay: 0.24s; } .reveal.d3 { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split, .footer-top, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .four-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .films { grid-template-columns: 1fr; }
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { position: fixed; inset: 0; background: var(--ivory); flex-direction: column; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform 0.6s var(--ease); }
  .nav-open .nav { transform: none; }
  .nav a { color: var(--aubergine) !important; font-size: 1rem; }
  .burger { display: flex; }
  .hero-meta { gap: 1.4rem; }
}
@media (max-width: 520px) {
  .masonry { columns: 1; }
  .four-grid { grid-template-columns: 1fr; }
}
