/* ================================================
   MAKEUP BY NATS — Stylesheet
   ================================================ */

/* VARIABLES */
:root {
  --black: #0D0D0D;
  --white: #FAFAFA;
  --cream: #f8f4f2;
  --nude: #dfd0cb;
  --gold: #dfd0cb;        /* brand nude — primary accent fills/borders/lines */
  --gold-light: #c9b4a8;  /* deeper taupe — hover/contrast partner */
  --gold-deep: #9a7860;   /* deep taupe — accent TEXT so it's readable on light bg */
  --gray: #888888;
  --dark-gray: #3A3A3A;
  --mid-gray: #5A5A5A;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --nav-h: 80px;
  --section-pad: 120px;
  --container: 1320px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); overflow-x: hidden; max-width: 100%; position: relative; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(3.2rem, 7vw, 7.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 5rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.8rem); }
h4 { font-size: 1.6rem; }
p { font-size: 0.9rem; line-height: 1.9; color: var(--mid-gray); }
.eyebrow {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-deep);
}
/* accent labels stay light nude on dark-background sections */
.hero .eyebrow, .page-hero .eyebrow, .cta-content .eyebrow,
.testimonials-section .eyebrow, .process-section .eyebrow,
.enquiry-form-section .eyebrow, .love-notes-section .eyebrow,
.stats-section .eyebrow, .marquee-section .eyebrow { color: var(--nude); }
.section-lead { font-size: 1.05rem; line-height: 1.8; max-width: 560px; color: var(--mid-gray); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 42px; font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--t); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); transform: translateX(-101%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: translateX(0); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #222; }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-dark {
  background: transparent; color: var(--black);
  border: 1px solid rgba(0,0,0,0.3);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); color: var(--black); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--black); transition: gap 0.35s ease;
}
.link-arrow::after { content: '→'; font-size: 1rem; transition: transform 0.3s ease; }
.link-arrow:hover { gap: 18px; }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow.light { color: var(--white); }
.link-arrow.gold { color: var(--gold-deep); }

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(45px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
/* On phones, reveal from below instead of the sides so nothing pushes the page sideways */
@media (max-width: 768px) {
  .reveal-left, .reveal-right { transform: translateY(40px); }
}

/* LOADING SCREEN */
.loader {
  position: fixed; inset: 0; background: var(--black); z-index: 9999;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  color: var(--white); opacity: 0;
  animation: loaderFade 0.6s ease 0.2s forwards;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.loader-logo-img { height: clamp(74px, 17vw, 104px); width: auto; display: block; }
.loader-bar {
  width: 120px; height: 1px; background: rgba(255,255,255,0.2); overflow: hidden;
}
.loader-bar-fill {
  height: 100%; background: var(--gold); width: 0%;
  animation: loaderBar 1s ease 0.4s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar { to { width: 100%; } }
.loader-logo .logo-top { font-size: 1.1rem; letter-spacing: 0.52em; }
.loader-logo .logo-script { font-size: 2.6rem; }
.loader-logo .logo-tagline { font-size: 0.52rem; letter-spacing: 0.5em; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; z-index: 500;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}
.nav.scrolled {
  background: rgba(13,13,13,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex; align-items: center;
}

/* LOGO TYPOGRAPHY */
.logo-top {
  font-family: var(--font-heading); font-weight: 300; font-size: 0.78rem;
  letter-spacing: 0.52em; text-transform: uppercase; line-height: 1.1;
}
.logo-bottom {
  display: flex; align-items: center; gap: 3px;
}
.logo-bottom em {
  font-family: var(--font-heading); font-style: italic; font-weight: 300;
  font-size: 0.62rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.5);
  line-height: 1;
}
.logo-script {
  font-family: var(--font-script); font-weight: 400; color: var(--white);
  font-size: 1.75rem; line-height: 0.82; letter-spacing: 0;
}
.logo-tagline {
  font-family: var(--font-body); font-size: 0.4rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); display: block; margin-top: 3px;
}
.site-logo {
  height: 56px;
  width: auto;
}
.footer-logo {
  display: block;
}
.footer-logo .site-logo {
  height: 66px;
  width: auto;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); font-weight: 500;
  position: relative; padding-bottom: 4px; transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-book {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 10px 22px; letter-spacing: 0.15em !important; border-radius: 0;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--gold-light) !important; }

/* Mobile-only Book Now pill in the header (desktop uses .nav-book in .nav-links) */
.nav-book-mobile {
  display: none; align-items: center;
  margin-left: auto; margin-right: 14px;
  background: var(--gold); color: var(--black);
  padding: 9px 16px; border-radius: 0;
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap;
}
/* Book Now CTA inside the full-screen mobile menu */
.nav-mobile-book {
  margin-top: 14px; background: var(--gold);
  color: var(--black) !important; font-family: var(--font-body) !important;
  font-size: 0.8rem !important; font-style: normal !important;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  padding: 16px 44px;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 5px; z-index: 1;
}
.nav-hamburger span {
  display: block; width: 26px; height: 1.5px; background: var(--white);
  transition: var(--t); transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; background: var(--black); z-index: 490;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 36px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--font-heading); font-size: 2.5rem; color: var(--white);
  letter-spacing: 0.05em; font-style: italic; transition: color 0.3s ease;
}
.nav-mobile a:hover { color: var(--gold); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/work/0N9A3368.jpg') center/cover no-repeat;
  opacity: 0.55; will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 0 60px 90px;
  max-width: 1000px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}
.hero-tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-loaded .hero-tag { opacity: 1; transform: none; }
.hero h1 {
  color: var(--white); font-style: italic; margin-bottom: 24px;
  opacity: 0; transform: translateY(35px);
  transition: opacity 1.1s ease 0.65s, transform 1.1s ease 0.65s;
}
.hero-loaded .hero h1 { opacity: 1; transform: none; }
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.9;
  max-width: 460px; margin-bottom: 44px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s ease 0.95s, transform 0.9s ease 0.95s;
}
.hero-loaded .hero-sub { opacity: 1; transform: none; }
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s ease 1.2s, transform 0.9s ease 1.2s;
}
.hero-loaded .hero-btns { opacity: 1; transform: none; }
.hero-scroll {
  position: absolute; bottom: 40px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; writing-mode: vertical-rl;
  opacity: 0; transition: opacity 0.9s ease 1.5s;
}
.hero-loaded .hero-scroll { opacity: 1; }
.hero-scroll-line {
  width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ================================================
   MARQUEE TICKER
   ================================================ */
.marquee-section {
  background: var(--black); overflow: hidden; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  white-space: nowrap; padding: 0 36px;
  font-size: 0.62rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-weight: 500;
}
.marquee-track span.gold { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================
   INTRO SPLIT SECTION
   ================================================ */
.intro-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh;
}
.intro-image { position: relative; overflow: hidden; }
.intro-image img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 1.2s var(--ease);
}
.intro-section:hover .intro-image img { transform: scale(1); }
.intro-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,180,168,0.18) 0%, transparent 60%);
}
.intro-content {
  padding: 100px 80px; display: flex; flex-direction: column;
  justify-content: center; background: var(--cream);
}
.intro-content .eyebrow { display: block; margin-bottom: 16px; }
.intro-content h2 { margin-bottom: 24px; }
.intro-content .section-lead { margin-bottom: 16px; }
.intro-content p { margin-bottom: 40px; }
.intro-details {
  display: flex; gap: 40px; margin-bottom: 44px;
  border-top: 1px solid var(--nude); border-bottom: 1px solid var(--nude);
  padding: 28px 0;
}
.intro-detail span:first-child {
  display: block; font-family: var(--font-heading); font-size: 2.2rem; color: var(--black); line-height: 1;
}
.intro-detail span:last-child {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-top: 4px; display: block;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
  background: var(--black); padding: var(--section-pad) 60px;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
}
.stat-item {
  text-align: center; padding: 60px 24px;
  background: var(--black);
  transition: background 0.4s ease;
}
.stat-item:hover { background: #111; }
.stat-number {
  font-family: var(--font-heading); font-size: clamp(3.5rem, 5vw, 6rem);
  color: var(--white); line-height: 1; display: block; margin-bottom: 16px;
}
.stat-number sup { font-size: 0.45em; color: var(--gold); vertical-align: super; }
.stat-number sub { font-size: 0.45em; color: var(--gold); vertical-align: baseline; }
.stat-label {
  color: rgba(255,255,255,0.4); font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase; display: block;
}
.stat-divider { width: 30px; height: 1px; background: var(--gold); margin: 14px auto; }

/* ================================================
   SERVICES SECTION (Homepage Preview)
   ================================================ */
.services-section { padding: var(--section-pad) 60px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header .eyebrow { display: block; margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header .section-lead { margin: 0 auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4;
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  transition: background 0.6s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.15) 100%);
}
.service-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 44px 36px; transform: translateY(10px);
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-info { transform: none; }
.service-info .eyebrow { margin-bottom: 8px; display: block; color: var(--gold); }
.service-info h3 { color: var(--white); margin-bottom: 14px; }
.service-info p {
  color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.7;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}
.service-card:hover .service-info p { opacity: 1; transform: none; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; color: var(--gold); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.service-card-link::after { content: '→'; }
.service-card:hover .service-card-link { opacity: 1; transform: none; }
.services-cta { text-align: center; margin-top: 60px; }

/* ================================================
   GALLERY PREVIEW
   ================================================ */
.gallery-preview { padding: var(--section-pad) 60px; background: var(--cream); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px; margin-bottom: 50px;
}
.gp-item { position: relative; overflow: hidden; cursor: pointer; }
.gp-item:first-child { grid-row: span 2; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gp-item:hover img { transform: scale(1.07); }
.gp-overlay {
  position: absolute; inset: 0; background: rgba(13,13,13,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s ease;
}
.gp-item:hover .gp-overlay { background: rgba(13,13,13,0.45); }
.gp-icon {
  width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.8); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
  opacity: 0; transform: scale(0.6); transition: opacity 0.4s ease, transform 0.4s ease;
}
.gp-icon svg { width: 18px; height: 18px; fill: currentColor; }
.gp-item:hover .gp-icon { opacity: 1; transform: scale(1); }
.gallery-preview-cta { text-align: center; }

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
  background: var(--black); padding: 80px 60px;
}
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header .section-lead { color: rgba(255,255,255,0.45); }
.testimonial-swiper { overflow: hidden; }
.testimonial-swiper .swiper-slide {
  padding: 10px 80px 40px; text-align: center;
}
.t-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 4px; margin-bottom: 18px; }
.t-quote {
  font-family: var(--font-heading); font-size: clamp(1rem, 1.8vw, 1.45rem);
  color: var(--white); line-height: 1.6; font-style: italic;
  max-width: 700px; margin: 0 auto 22px;
}
.t-author { color: var(--nude); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.t-event { color: rgba(255,255,255,0.3); font-size: 0.68rem; letter-spacing: 0.2em; margin-top: 4px; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.25) !important; width: 8px !important; height: 8px !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-wrapper { padding-bottom: 50px !important; }

/* ================================================
   PARTNER SECTION
   ================================================ */
.partner-section {
  background: var(--cream); padding: 60px;
  display: flex; align-items: center; justify-content: center; gap: 60px;
  border-top: 1px solid var(--nude); border-bottom: 1px solid var(--nude);
  flex-wrap: wrap;
}
.partner-label { font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.partner-name { font-family: var(--font-heading); font-size: 2.2rem; color: var(--black); letter-spacing: 0.05em; }
.partner-divider { width: 1px; height: 60px; background: var(--nude); }
.partner-offer-tag {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 6px 18px; font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600; margin-top: 8px;
}
.partner-code { font-family: var(--font-heading); font-size: 1.4rem; color: var(--black); }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  position: relative; padding: calc(var(--section-pad) * 1.4) 60px;
  text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('../images/Amended/Gallery/Photo%205.jpg') center 48%/cover no-repeat;
}
.cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(13,13,13,0.75); }
.cta-content { position: relative; z-index: 1; }
.cta-content .eyebrow { display: block; margin-bottom: 18px; }
.cta-content h2 { color: var(--white); margin-bottom: 18px; }
.cta-content p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 44px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #080808; padding: 80px 60px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px;
  margin-bottom: 64px;
}
.footer-brand .footer-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  color: var(--white); margin-bottom: 18px; gap: 0; line-height: 1;
}
.footer-logo .logo-top { font-size: 1rem; letter-spacing: 0.48em; }
.footer-logo .logo-script { font-size: 2rem; }
.footer-logo .logo-tagline { font-size: 0.47rem; color: rgba(255,255,255,0.28); }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.85rem; max-width: 280px; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; margin-top: 28px; }
.footer-social {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 700;
  transition: var(--t); letter-spacing: 0;
}
.footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-col-title {
  color: rgba(255,255,255,0.9); font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 26px;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.38); font-size: 0.85rem; transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-row { margin-bottom: 14px; }
.footer-contact-row .lbl {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 3px;
}
.footer-contact-row a, .footer-contact-row span {
  color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.3s ease;
}
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.footer-bottom a { color: var(--gold); }
.footer-gold-bar {
  width: 40px; height: 1px; background: var(--gold);
}

/* ================================================
   PAGE HERO (sub-pages)
   ================================================ */
.page-hero {
  height: 55vh; min-height: 420px; position: relative;
  display: flex; align-items: flex-end; background: var(--black); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.45;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2; padding: 0 60px 70px;
}
.page-hero-content .eyebrow { display: block; margin-bottom: 16px; }
.page-hero-content h1 { color: var(--white); font-style: italic; }
.page-hero-content p { color: rgba(255,255,255,0.65); margin-top: 16px; max-width: 500px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ================================================
   ABOUT PAGE
   ================================================ */
.story-section { padding: var(--section-pad) 60px; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-images { position: relative; }
.story-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.story-img-accent {
  width: 55%; position: absolute; bottom: -40px; right: -40px;
  aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--white);
}
.story-text .eyebrow { display: block; margin-bottom: 16px; }
.story-text h2 { margin-bottom: 28px; }
.story-text p { margin-bottom: 20px; }
.story-sig {
  font-family: var(--font-heading); font-size: 2rem; color: var(--black);
  font-style: italic; margin-top: 36px;
}

.timeline-section { background: var(--cream); padding: var(--section-pad) 60px; }
.timeline { position: relative; max-width: 800px; margin: 60px auto 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--nude); transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px;
  align-items: center;
}
.timeline-item:nth-child(even) .timeline-content { order: 1; text-align: right; }
.timeline-item:nth-child(even) .timeline-date { order: 2; }
.timeline-dot {
  position: absolute; left: 50%; width: 12px; height: 12px;
  background: var(--gold); border-radius: 50%; transform: translateX(-50%);
  margin-top: 6px;
}
.timeline-year {
  font-family: var(--font-heading); font-size: 3rem; color: var(--gold-deep);
  line-height: 1; display: block;
}
.timeline-content { position: relative; padding: 24px; }
.timeline-content h4 { margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; }

.values-section { padding: var(--section-pad) 60px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.value-item { padding: 44px 36px; border: 1px solid var(--nude); text-align: center; transition: border-color 0.4s ease, transform 0.4s ease; }
.value-item:hover { border-color: var(--gold); transform: translateY(-6px); }
.value-icon { font-size: 2rem; margin-bottom: 20px; }
.value-item h4 { margin-bottom: 12px; }

.team-section { background: var(--cream); padding: var(--section-pad) 60px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.team-card { text-align: center; }
.team-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 24px; transition: filter 0.5s ease; }
.team-card:hover .team-img { filter: none; }
.team-card h4 { margin-bottom: 6px; }
.team-card .eyebrow { color: var(--gray); }

/* ================================================
   SERVICES PAGE
   ================================================ */
.service-detail { padding: var(--section-pad) 60px; }
.service-detail:nth-child(even) { background: var(--cream); }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: var(--container); margin: 0 auto;
}
.service-detail:nth-child(even) .service-detail-img { order: 2; }
.service-detail-img { position: relative; overflow: hidden; }
.service-detail-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-detail-img:hover img { transform: scale(1.04); }
.service-detail-text .eyebrow { display: block; margin-bottom: 16px; }
.service-detail-text h2 { margin-bottom: 24px; }
.service-detail-text p { margin-bottom: 18px; }
.service-includes { margin: 32px 0; }
.service-includes h5 {
  font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 16px; font-weight: 600;
}
.service-includes ul li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; font-size: 0.9rem; color: var(--mid-gray);
}
.service-includes ul li::before {
  content: ''; display: block; width: 16px; height: 1px;
  background: var(--gold); margin-top: 10px; flex-shrink: 0;
}
.process-section { padding: var(--section-pad) 60px; background: var(--black); }
.process-section .section-header h2 { color: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: rgba(255,255,255,0.05); margin-top: 70px;
}
.process-step {
  background: var(--black); padding: 50px 28px; text-align: center;
  transition: background 0.4s ease;
}
.process-step:hover { background: #111; }
.process-num {
  font-family: var(--font-heading); font-size: 5rem; color: var(--nude);
  opacity: 0.7; line-height: 1; margin-bottom: 20px; display: block;
}
.process-step h4 { color: var(--white); margin-bottom: 14px; }
.process-step p { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-page { padding: var(--section-pad) 60px; }
.gallery-filters {
  display: flex; gap: 8px; margin-bottom: 50px; flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px; font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; border: 1px solid var(--nude);
  background: transparent; color: var(--mid-gray); cursor: pointer;
  transition: var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.gallery-masonry {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  grid-auto-flow: dense;
}
.gallery-grid-item {
  position: relative; overflow: hidden; cursor: pointer;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.gallery-grid-item.visible { opacity: 1; transform: none; }
.gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-grid-item:hover img { transform: scale(1.06); }
.gallery-item-info {
  position: absolute; inset: 0; background: rgba(13,13,13,0);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.4s ease;
}
.gallery-grid-item:hover .gallery-item-info { background: rgba(13,13,13,0.5); }
.gallery-item-info span {
  color: white; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0; transform: translateY(10px); transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.gallery-grid-item:hover .gallery-item-info span { opacity: 1; transform: none; }

/* Portrait vs landscape ratio control */
.gallery-grid-item[data-size="tall"] { grid-row: span 2; }
.gallery-grid-item[data-size="wide"] { grid-column: span 2; }

.before-after-section { padding: var(--section-pad) 60px; background: var(--cream); }
.ba-wrap { max-width: 900px; margin: 60px auto 0; }
.before-after-slider {
  position: relative; overflow: hidden; cursor: col-resize; user-select: none;
  aspect-ratio: 16/10;
}
.ba-before, .ba-after {
  position: absolute; inset: 0;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%; object-fit: cover;
}
.ba-after { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: white; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.ba-handle-circle {
  width: 48px; height: 48px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4); font-size: 1rem; color: var(--black);
  flex-shrink: 0;
}
.ba-label {
  position: absolute; top: 16px; font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600; padding: 6px 14px; color: white;
}
.ba-label.before { left: 16px; background: rgba(0,0,0,0.5); }
.ba-label.after { right: 16px; background: var(--gold); }

/* ================================================
   BRIDAL PAGE
   ================================================ */
.bridal-intro { padding: var(--section-pad) 60px; }
.bridal-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.bridal-badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px;
}
.bridal-badge {
  padding: 24px; border: 1px solid var(--nude); text-align: center;
  transition: border-color 0.4s ease;
}
.bridal-badge:hover { border-color: var(--gold); }
.bridal-badge .num {
  font-family: var(--font-heading); font-size: 2.8rem; display: block; line-height: 1;
}
.bridal-badge .lbl {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-top: 6px; display: block;
}

/* Bridal guide download */
.guide-section { padding: var(--section-pad) 60px; background: var(--cream); }
.guide-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid var(--nude); padding: 70px 60px;
}
.guide-icon {
  width: 64px; height: 64px; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--nude); border-radius: 50%; color: var(--gold-deep);
}
.guide-icon svg { width: 28px; height: 28px; }
.guide-card h2 { margin-bottom: 18px; }
.guide-card p { color: var(--mid-gray); max-width: 480px; margin: 0 auto 34px; line-height: 1.8; }

/* Love Notes editorial section */
.love-notes-section { background: var(--black); padding: var(--section-pad) 60px; overflow: hidden; }
.love-notes-inner { display: flex; gap: 60px; align-items: stretch; max-width: 1200px; margin: 0 auto; }
.love-notes-label {
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
  font-family: var(--font-heading); font-size: 0.6rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--nude); opacity: 0.6;
  display: flex; align-items: center; flex-shrink: 0;
}
.love-notes-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.love-note-photo { overflow: hidden; aspect-ratio: 3/4; }
.love-note-photo img { width: 100%; height: 100%; object-fit: cover; }
.love-note-quotes { display: flex; flex-direction: column; gap: 48px; }
.love-note {
  border-left: 1px solid rgba(255,255,255,0.1); padding-left: 32px;
}
.love-note-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 4px; margin-bottom: 20px; }
.love-note-quote {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--white); line-height: 1.65; font-style: italic; margin-bottom: 24px;
}
.love-note-author { color: var(--nude); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.love-note-author span { color: rgba(255,255,255,0.3); font-weight: 400; }

.faq-section { padding: var(--section-pad) 60px; }
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--nude);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; cursor: pointer; text-align: left;
  font-size: 1rem; font-weight: 400; color: var(--black); background: none; border: none;
  gap: 24px;
}
.faq-question span { font-family: var(--font-heading); font-size: 1.2rem; }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--nude); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem; color: var(--gold-deep); transition: var(--t); transform: rotate(0deg);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold-deep); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-answer p { padding: 0 0 28px; color: var(--mid-gray); }

.enquiry-form-section { background: var(--black); padding: var(--section-pad) 60px; }
.enquiry-form-section .section-header h2 { color: var(--white); }
.enquiry-form-section .section-header .section-lead { color: rgba(255,255,255,0.45); }
.enquiry-form {
  max-width: 720px; margin: 60px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: white; padding: 14px 18px; font-size: 0.9rem;
  transition: border-color 0.3s ease; outline: none;
}
.form-group input:focus, .form-group select, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #111; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { grid-column: span 2; text-align: center; margin-top: 16px; }
.form-success { text-align: center; padding: 60px 0; }
.form-success h3 { font-family: var(--font-heading); color: var(--white); font-size: 2.5rem; margin-bottom: 16px; }
.form-success p { color: rgba(255,255,255,0.5); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-page { padding: var(--section-pad) 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info { }
.contact-info .eyebrow { display: block; margin-bottom: 16px; }
.contact-info h2 { margin-bottom: 28px; }
.contact-info p { margin-bottom: 44px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  padding: 28px; border: 1px solid var(--nude); display: flex; align-items: flex-start; gap: 20px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.contact-card:hover { border-color: var(--gold); transform: translateX(6px); }
.contact-card-icon {
  width: 44px; height: 44px; background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--gold-deep);
}
.contact-card h5 {
  font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 6px; font-weight: 600;
}
.contact-card a, .contact-card p {
  font-size: 0.9rem; color: var(--black); margin: 0; transition: color 0.3s ease;
}
.contact-card a:hover { color: var(--gold-deep); }
.social-links-row { display: flex; gap: 16px; margin-top: 44px; }
.social-link-large {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px;
  border: 1px solid var(--nude); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; color: var(--black);
  transition: var(--t);
}
.social-link-large:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.map-placeholder {
  background: var(--cream); aspect-ratio: 16/10; display: flex;
  align-items: center; justify-content: center; flex-direction: column; gap: 12px;
  border: 1px solid var(--nude); color: var(--gray);
}
.map-placeholder p { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  :root { --section-pad: 90px; }
  .nav { padding: 0 36px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .story-img-accent { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: span 2; aspect-ratio: 16/7; }
}

@media (max-width: 900px) {
  .intro-section { grid-template-columns: 1fr; }
  .intro-image { height: 75vw; max-height: 560px; }
  .intro-image img { object-position: center 20%; transform: scale(1); }
  .intro-content { padding: 70px 40px; }
  .story-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) .service-detail-img { order: 0; }
  .bridal-intro-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .bridal-testimonial-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; --nav-h: 68px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-book-mobile { display: inline-flex; }
  .hero-content { padding: 0 24px 80px; }
  .hero-scroll { right: 24px; }
  .services-section,
  .gallery-preview,
  .testimonials-section,
  .stats-section,
  .partner-section,
  .cta-section,
  .footer { padding-left: 24px; padding-right: 24px; }
  .testimonial-swiper .swiper-slide { padding: 20px 20px 60px; }
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-preview-grid .gp-item:first-child { grid-row: span 1; grid-column: span 2; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .partner-section { flex-direction: column; gap: 30px; }
  .partner-divider { width: 60px; height: 1px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .enquiry-form-section { padding-left: 24px; padding-right: 24px; }
  .form-group.full, .form-submit { grid-column: span 1; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .page-hero-content { padding: 0 24px 48px; }
  .page-hero-content h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { grid-column: span 1; aspect-ratio: 3/4; }
  .faq-section, .bridal-intro, .love-notes-section, .gallery-page, .before-after-section,
  .contact-page, .story-section, .values-section, .team-section, .guide-section,
  .highlights-section { padding-left: 24px; padding-right: 24px; }
  .contact-info { min-width: 0; }
  .social-links-row { flex-wrap: wrap; gap: 12px; margin-top: 32px; }
  .social-link-large { flex: 1 1 calc(50% - 6px); justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .love-notes-inner { flex-direction: column; gap: 32px; }
  .love-notes-label { writing-mode: horizontal-tb; transform: none; }
  .love-notes-grid { grid-template-columns: 1fr; }
  .guide-card { padding: 48px 26px; }
  /* Highlights → horizontal swipe strip */
  .highlights-grid {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%;
    gap: 14px; margin-top: 40px; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    margin-left: -24px; margin-right: -24px; padding: 4px 24px 18px; scroll-padding-left: 24px;
  }
  .highlights-grid::-webkit-scrollbar { height: 4px; }
  .highlights-grid::-webkit-scrollbar-thumb { background: var(--nude); border-radius: 4px; }
  .highlights-grid::-webkit-scrollbar-track { background: transparent; }
  .highlight-item { scroll-snap-align: start; padding: 36px 28px; }
  .highlight-date { font-size: 3rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
}

/* Highlights of the Year */
.highlights-section { background: var(--cream); padding: var(--section-pad) 60px; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.highlight-item {
  background: var(--white); padding: 48px 40px; border-bottom: 3px solid var(--nude);
  transition: border-color 0.3s ease;
}
.highlight-item:hover { border-color: var(--gold); }
.highlight-date { font-family: var(--font-heading); font-size: 3.5rem; color: var(--gold-deep); line-height: 1; margin-bottom: 12px; }
.highlight-label { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.6; }
