/*
  Riva Blooms styles
  - Premium light theme
  - Responsive column utilities
  - Golden-ratio typography scale
  - Header + mobile menu
  - Hero with background video and scroll indicator
*/

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'La Gagliane';
  src: url('fonts/La-Gagliane.ttf') format('truetype'),
       url('fonts/La Gagliane.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- Base & Theme ---------- */
:root {
  --color-bg: #f1f1f7;
  --color-elev-1: #dcdce8;
  --color-text: #111110;
  --color-text-muted: #313630;
  --color-accent: #6bc882; 
  --color-accent-strong: #e6cb91;
  --color-main: #d29153;

  --color-dark-green: #183a2c;
  --color-sage-green: #73876e;
  --color-beige: #f0e6d8;
  --color-pink: #e3c1ba;

  --font-cursive: "Dancing Script", cursive;


  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --container-max: 1200px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;

  /* Card sizing */
  --card-cover-height: 240px;
  --card-height: 480px;
}



* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: white;
  color: var(--color-text);
  font-family: "Jost", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* ---------- Typography (Golden Ratio) ---------- */
/* h1 starts at 72px, each subsequent heading approx divided by φ (1.618) */
h1, h2, h3, h4, h5, h6 {
  font-family: "La Gagliane", cursive;
  line-height: 1.61;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(20px, 3.4vw, 64px); font-weight: 400; margin: 12px 0; }
h2 { font-size: clamp(18px, 3vw, 48px); font-weight: 400; }
h3 { font-size: clamp(16px, 2.6vw, 32px); font-weight: 400; }
h4 { font-size: clamp(14px, 2.2vw, 24px); font-weight: 400; }
h5 { font-size: clamp(12px, 1.8vw, 16px); font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em; }
h6 { font-size: clamp(10px, 1.4vw, 12px); font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; }

/* Enhanced heading margins for privacy and terms pages only */
.privacy-policy-page h1,
.privacy-policy-page h2,
.privacy-policy-page h3,
.privacy-policy-page h4,
.privacy-policy-page h5,
.privacy-policy-page h6,
.terms-page h1,
.terms-page h2,
.terms-page h3,
.terms-page h4,
.terms-page h5,
.terms-page h6 {
  margin-top: 40px !important;
  margin-bottom: 16px !important;
  display:inline-block;
}

.privacy-policy-page h2,
.terms-page h2 {
  margin-top: 32px !important;
  margin-bottom: 16px !important;
}

.privacy-policy-page h3,
.terms-page h3 {
  margin-top: 28px !important;
  margin-bottom: 12px !important;
}

.privacy-policy-page h4,
.terms-page h4 {
  margin-top: 24px !important;
  margin-bottom: 12px !important;
}

.privacy-policy-page h5,
.terms-page h5 {
  margin-top: 20px !important;
  margin-bottom: 8px !important;
}

.privacy-policy-page h6,
.terms-page h6 {
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}

/* First heading in content area should have reduced top margin */
.privacy-policy-page .section > .container > div > h3:first-of-type,
.privacy-policy-page .section > .container > div > h2:first-of-type,
.privacy-policy-page .section > .container > div > h1:first-of-type,
.terms-page .section > .container > div > h3:first-of-type,
.terms-page .section > .container > div > h2:first-of-type,
.terms-page .section > .container > div > h1:first-of-type {
  margin-top: 0 !important;
}

/* Reduce paragraph bottom margin on privacy/terms pages to make heading spacing more obvious */
.privacy-policy-page p,
.terms-page p {
  margin-bottom: 12px !important;
}

p { margin: 0 0 var(--space-4); color: var(--color-text-muted); }

/* ---------- Column Utilities ---------- */
.cols { display: grid; gap: var(--space-12); }
.two-cols, .three-cols, .four-cols { display: grid; gap: var(--space-12); grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .four-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .four-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  background: #4b535282;
  transition: background 160ms ease, border-color 160ms ease, backdrop-filter 160ms ease;
}

/* Transparent at top, becomes default on scroll */
.site-header.is-transparent { background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-mark {
  width: 28px;
  height: 40px; /* taller than wide */
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25) inset, 0 6px 30px rgba(0,0,0,0.25);
}

.brand-name {
  font-family: "La Gagliane", cursive;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Reusable brand logo image (no inline styles) */
.brand-logo { width: 160px; height: auto; display: block; }
.footer-brand .brand-logo { margin-bottom: var(--space-3); width: 48px; }

.nav { display: none; gap: var(--space-6); }

.nav a {
  color: white;;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
  transition: all 0.1s ease;
}

.nav a:hover { color: var(--color-accent-strong); opacity: 1; }

/* Mobile menu (checkbox hack) */
.menu-toggle { display: none; }
.hamburger {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  cursor: pointer;
}

.hamburger .bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: white;
}
.hamburger .bars::before,
.hamburger .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: white;
  transition: transform 200ms ease;
}
.hamburger .bars::before { transform: translateY(-6px); }
.hamburger .bars::after { transform: translateY(6px); }

.menu-toggle:checked + label .bars { background: transparent; }
.menu-toggle:checked + label .bars::before { transform: rotate(45deg); }
.menu-toggle:checked + label .bars::after { transform: rotate(-45deg); }

.menu-panel {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  padding: var(--space-6);
  background: var(--color-elev-1);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu-panel a { display: block; padding: var(--space-3) 0; }
.menu-toggle:checked ~ .menu-panel { display: block; }

@media (min-width: 768px) {
  .hamburger, .menu-toggle, .menu-panel { display: none; }
  .nav { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh; /* fallback */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
  background-image: url('./assets/hero-flowers.jpg');
  background-size: cover;
  background-position: center;
}
@supports (min-height: 100dvh) {
  .hero { min-height: 100dvh; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 2fr 1fr;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  color: #ffffff;
}

.hero-top {
  display: flex;
  align-items: end;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: 0;
}

/* ---------- Vintage Countdown Timer ---------- */
.countdown-wrapper {
  flex: 1;
  min-width: 320px;
}

.countdown-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
}

.countdown {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.countdown-digits {
  display: flex;
  gap: 4px;
}

.flip-container {
  perspective: 600px;
  width: 38px;
  height: 52px;
  position: relative;
}

.flip-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.flip-card.flipping {
  animation: flipCard 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

@keyframes flipCard {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(180deg);
  }
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #342e2c;
  background: linear-gradient(180deg, #f4ede4 0%, #e8dfd3 50%, #d4c9bb 100%);
  border-radius: 6px;
  box-shadow: 
    0 3px 0 rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 6px 12px rgba(0,0,0,0.2);
  backface-visibility: hidden;
}

.flip-card-back {
  transform: rotateX(180deg);
}

.unit-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Jost", sans-serif;
  margin-top: 0;
}

@media (max-width: 640px) {
  .countdown {
    gap: 10px;
  }
  
  .flip-container {
    width: 30px;
    height: 42px;
  }
  
  .flip-card-front,
  .flip-card-back {
    font-size: 26px;
  }
  
  .countdown-digits {
    gap: 3px;
  }
  
  .unit-label {
    font-size: 9px;
  }
}

.logo-placeholder {
  width: 200px;
}

.tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Scroll Indicator ---------- */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: var(--space-10);
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.9;
}

.scroll-indicator svg { display: block; }

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

.scroll-indicator { animation: bounce 1.8s ease-in-out infinite; }

/* Utility */
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.mt-10 { margin-top: var(--space-10); }
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  white-space: nowrap; /* added line */
  border: 0;
}

/* ---------- Services Section ---------- */
.services { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.services h2 { text-align: center; margin-bottom: var(--space-6); }
.services .intro { text-align: center; max-width: 720px; margin: 0 auto var(--space-12); }

.services-grid .col { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) {
  .services-grid.stagger .col:nth-child(2) { position: relative; top: 40px; }
}

.service-card {
  background: var(--color-elev-1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: grid;
  grid-template-rows: var(--card-cover-height) 1fr;
  height: var(--card-height);
}

.service-card .cover { height: var(--card-cover-height); overflow: hidden; }
.service-card .cover img { width: 100%; height: 100%; object-fit: cover; display: block; transform-origin: 50% 50%; transform: scale(1); }

.service-card .body { padding: var(--space-6); display: grid; gap: var(--space-4); align-content: start; overflow: hidden; }
.service-meta { display: flex; align-items: center; gap: var(--space-4); }
.service-meta .icon-square { width: 56px; height: 56px; border-radius: 12px; background: var(--color-main); box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset; flex: 0 0 auto; display: grid; place-items: center; color: #ffffff; line-height: 0; }
.service-meta .icon-square iconify-icon { font-size: 30px; width: 1em; height: 1em; display: block; }
.service-meta h3 { margin: 0; font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.service-card p { color: var(--color-text-muted); font-size: 16px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Ensure inline SVG icons center and scale predictably */
.service-meta .icon { display: block; width: 26px; height: 26px; }

/* ---------- Generic Sections ---------- */
.section { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.section h2 {margin-bottom: var(--space-6); }
.section .section-intro { text-align: center; max-width: 780px; margin: 0 auto var(--space-12); color: var(--color-text-muted); }

/* ---------- About ---------- */
.about .image-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.about .image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about .copy { align-self: center; }
.about .copy p { font-size: 18px; color: var(--color-text-muted); }

/* ---------- Team ---------- */
.team .team-grid { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) { .team .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Left column: stacked portraits */
.team .portraits { display: grid; gap: var(--space-8); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team .portrait {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.team .portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.05); transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1); }
.team .portrait:hover img { transform: scale(1.06); }

/* Right column: copy */
.team .team-copy { align-self: center; }
.team .team-copy h3 { font-size: 28px; margin-bottom: var(--space-4); }
.team .team-copy p { font-size: 18px; color: var(--color-text-muted); }

/* ---------- Bespoke (3 features) ---------- */
.feature-card {
  background: var(--color-elev-1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.feature-card .cover { overflow: hidden; }
.feature-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1); }
.feature-card:hover .cover img { transform: scale(1.06); }
.feature-card .body { padding: var(--space-6); }
.feature-card h3 { margin: 0 0 var(--space-3); font-size: 22px; }
.feature-card p { margin: 0; color: var(--color-text-muted); }

/* ---------- Steps (How it works) ---------- */
/* Horizontal timeline on desktop; vertical on mobile */
.timeline { position: relative; }
.timeline .items { position: relative; display: grid; gap: var(--space-12); }
@media (min-width: 1024px) { .timeline .items { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; } }

@media (min-width: 1024px) {
  .timeline .items::before { left: 0; right: 0; width: auto; height: 2px; top: 32px; bottom: auto; background: rgba(255,255,255,0.08); }
}

.timeline .step { position: relative; padding-left: 64px; }
.timeline .bullet { position: absolute; left: -6px; top: -10px; width: auto; height: auto; background: transparent; border: none; color: rgba(255,255,255,0.1); font-weight: 700; font-family: "La Gagliane", cursive; font-size: clamp(48px, 8vw, 120px); line-height: 1; }
.timeline h3 { margin: 0 0 var(--space-2); font-size: 20px; position: relative; z-index: 1; }
.timeline p { margin: 0; color: var(--color-text-muted); }

@media (min-width: 1024px) {
  .timeline .step { padding-left: 0; padding-top: 56px; text-align: center; }
  .timeline .bullet { left: 50%; top: -6px; transform: translateX(-50%); }
}

/* ---------- Values ---------- */
.values .value { transition: all 124ms ease-in; background: transparent; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: var(--space-6); display: grid; gap: var(--space-3); }
.values .value .icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: rgba(200,169,107,0.18); display: grid; place-items: center; color: var(--color-accent-strong); }
.values .value .icon-wrap .icon { width: 22px; height: 22px; }
.value-head { display: flex; align-items: center; gap: var(--space-4); }
.value-head h3 { margin:0;}

.values .value:hover { background: rgba(255,255,255,0.04);box-shadow: 0 0 44px -20px #d19153; }

/* ---------- CTA ---------- */
.cta { text-align: center; padding-top: calc(var(--space-16) + 16px); padding-bottom: calc(var(--space-16) + 16px); }
.cta h2 { margin-bottom: var(--space-4); }
.cta .lead { color: var(--color-text-muted); max-width: 900px; margin: 0 auto var(--space-12); }
.cta .pill-grid { display: grid; gap: var(--space-8); }
@media (min-width: 1024px) { .cta .pill-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pill { display: grid; justify-items: center; gap: var(--space-3); }
.pill a { display: grid; justify-items: center; gap: var(--space-3); text-decoration: none; color: inherit; transition: color 0.2s ease; }
.pill a:hover { color: var(--color-accent); }
.pill .circle { width: 64px; height: 64px; border-radius: 50%; background: var(--color-main); color: #fff; display: grid; place-items: center; }
.pill .circle .icon { width: 28px; height: 28px; }
.pill .label { font-weight: 600; }
.pill .sub { color: var(--color-text-muted); }

.btn {
  display: inline-block;
  cursor: pointer;
  padding: 10px 30px;
  border-radius: 0 36px;
  font-size: 16px;
  transition: all 250ms ease;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  text-align: center;
}

.btn-filled {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text);
  border: 2px solid transparent;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Spotlight hover effect */
.btn-spotlight {
  position: relative;
}

.btn-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 36px;
  background: white;
  opacity: 0;
  transition: opacity 300ms ease;
}

.btn-spotlight:hover::before {
  opacity: 0.2;
}

.btn-filled.btn-spotlight:hover {
  background: rgba(255, 255, 255, 1);
}

.btn-outline.btn-spotlight:hover {
  border-color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.btn-dark.btn-spotlight:hover {
  background: var(--color-pink);
  color: #ffffff;
  border-color: var(--color-pink);
}

/* ---------- Services Home Section ---------- */
.services-home {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-right: var(--space-12);
}

@media (max-width: 768px) {
  .services-list {
    margin-right: 0 !important;
  }
}

.services-list h3 {
  color: #560C2B;
  margin: 16px 0;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.service-item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.service-item h4 {
  color: #560C2B;
  margin: 12px 0;
}

.services-image {
  overflow: hidden;
  border-radius: 80px 0;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .services-image img {
    height: 600px;
    aspect-ratio: auto;
  }
}



/* ---------- About Home Section ---------- */
.about-home {
  background: var(--color-dark-green);
  color: #ffffff;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: var(--space-10);
  }
}

.section-logo {
  width: 80px;
  height: auto;
  margin-bottom: var(--space-4);
}

.about-home h2 {
  color: #ffffff;
  font-size: 28px;
  margin: 12px 0;
}

.about-home .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.6;
  margin: 12px 0;
}

.about-img-left {
  overflow: hidden;
  border-radius: 0 80px;
}

.about-img-right {
  overflow: hidden;
  border-radius: 80px 0;
}

.about-img-left img,
.about-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer { background: #292825;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  border-top: 0;}
.footer-grid { display: grid; gap: var(--space-12); }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-brand { display: inline-block; gap: var(--space-4); }
.footer-brand p { color: white; margin-bottom: 0;}
.socials { display: flex; gap: var(--space-4); margin-top: var(--space-4); }
.socials .circle { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }
.socials .ig { background: var(--color-main); color: #fff; }
.socials .li { background: #2894ff; color: #fff; }
.footer-col h4 { margin: 0 0 var(--space-3); font-size: 16px; letter-spacing: 0.08em; color: white; }
.footer-col a { color: white; display: block; margin: 8px 0; width: fit-content; }
.footer-col a:hover { color: var(--color-accent-strong) }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--space-6); justify-content: space-between; align-items: center; margin-top: var(--space-12); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.08); color: var(--color-text-muted); }
.footer-bottom a { color: white; }
.footer-bottom p { color: white; }
.footer-bottom a:hover { color: var(--color-accent-strong) }

/* Alternating service rows */
.alt-services { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.alt-services .row { display: grid; gap: var(--space-8); align-items: center; margin-bottom: var(--space-12);}
@media (min-width: 1024px) { .alt-services .row { grid-template-columns: 1.2fr 1fr; } }
.alt-services .row:nth-child(even) { direction: rtl; }
.alt-services .row:nth-child(even) > * { direction: ltr; }
.alt-services .media { height: 420px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
.alt-services .media img { width: 100%; height: 100%; object-fit: cover; }
.alt-services .copy h3 { margin-bottom: var(--space-3); font-size: 24px; font-weight: 600; }
.alt-services .copy p { color: var(--color-text-muted); font-size: 16px; }
.alt-services .service-meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.alt-services .service-meta .icon-square { width: 44px; height: 44px; border-radius: 10px; }
.alt-services .service-meta .icon { width: 22px; height: 22px; }
.alt-services ul { margin: var(--space-3) 0 0; padding: 0 0 0 18px; color: var(--color-text-muted); }

/* Horizontal slider */
.services-slider { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.slider-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.slider-card { scroll-snap-align: start; min-width: 360px; max-width: 420px; background: var(--color-elev-1); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.slider-card .cover { height: 220px; overflow: hidden; }
.slider-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1); }
.slider-card:hover .cover img { transform: scale(1.06); }
.slider-card .body { padding: var(--space-6); }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.slider-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: var(--color-text); display: grid; place-items: center; }

/* Text link CTA */
.link-more { position: relative; display: inline-flex; width: fit-content; align-items: center; gap: 8px; font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 200ms ease; }
.link-more > span { position: relative; }
.link-more > span::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 200ms ease; opacity: 0.7; }
.link-more:hover { color: var(--color-main); }
.link-more:hover > span::after { transform: scaleX(1); }
.link-more .icon { width: 18px; height: 18px; transition: transform 200ms ease; }
.link-more:hover .icon { transform: translateX(4px); }

/* ---------- Sub-page hero (half-height) ---------- */
.sub-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50vh; /* fallback */
  padding-top: 64px; /* fixed header offset */
  overflow: hidden;
}
@supports (min-height: 50dvh) { .sub-hero { min-height: 50dvh; } }
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05);
}
.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.55));
}
.sub-hero .inner { position: relative; z-index: 1; text-align: center; }
.sub-hero .subtitle { color: var(--color-main); letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; }
.sub-hero h1 { margin: 8px 0 0; font-size: clamp(20px, 3.4vw, 64px); font-weight: 400; color: #ffffff; }

/* ---------- FAQ ---------- */
.faq { 
  background: var(--color-sage-green);
  color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
  }
}

.faq-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-content h2 { 
  color: #ffffff;
  margin-bottom: var(--space-8);
  font-size: clamp(32px, 4vw, 56px);
}

.faq-list { 
  display: grid; 
  gap: 16px;
}

.faq-item { 
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.faq-item summary { 
  list-style: none; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 16px; 
  padding: 20px 24px;
  color: #ffffff;
}

.faq-item summary::-webkit-details-marker { 
  display: none; 
}

.faq-item .q { 
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}

.faq-item .icon { 
  width: 20px; 
  height: 20px; 
  transition: transform 300ms ease;
  flex-shrink: 0;
  stroke: rgba(255, 255, 255, 0.8);
}

.faq-item[open] .icon { 
  transform: rotate(180deg); 
}

.faq-item .a { 
  padding: 0 24px 20px; 
  color: rgba(255, 255, 255, 0.85);
}

.faq-item .a p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.faq-item .a a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.faq-item .a a:hover {
  color: var(--color-beige);
}

/* ---------- About Page ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
  }
}

.about-story-image {
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  display: block;
}

.about-story-content h2 {
  color: var(--color-dark-green);
  margin-bottom: var(--space-6);
}

.about-story-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* Values Section */
.about-values {
  text-align: center;
  background: #f1f1f1;
}

.values-header {
  margin-bottom: var(--space-12);
}

.values-discover {
  font-family: var(--font-cursive);
  font-size: 24px;
  font-weight: 500;
  margin-top:0;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  text-transform: none;
  letter-spacing: 0.02em;
}

.values-header h2 {
  color: var(--color-dark-green);
  margin: 0;
}

.values-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.value-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.value-item h4 {
  margin: 0;
  color: var(--color-dark-green);
  font-size: 24px;
}

.value-separator {
  font-size: 24px;
  color: var(--color-text-muted);
  font-weight: bold;
}

/* Welcome Section */
.about-welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .about-welcome-grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
  }
}

.about-welcome-content h2 {
  color: var(--color-dark-green);
  margin-bottom: var(--space-6);
}

.about-welcome-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.about-welcome-image {
  overflow: hidden;
  border-radius: 0 80px;
}

.about-welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .about-welcome-image img {
    height: 500px;
    aspect-ratio: auto;
  }
}

/* ---------- Wedding Cards ---------- */
.wedding-card {
  display: grid;
  gap: var(--space-4);
}

.wedding-card-image {
  position: relative;
  width: 100%;
  height:460px;
  overflow: hidden;
}

.wedding-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wedding-card:hover .wedding-card-image img {
  transform: scale(1.05);
}

.wedding-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.wedding-card-overlay h3 {
  margin: 0;
  color: #111110;
  font-size: 18px;
  font-weight: 600;
}

.wedding-card-content {
  padding: 0 var(--space-2);
}

.wedding-card-content p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- Testimonial Section ---------- */
.testimonial-section {
  background: url('assets/testimonial-bg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: calc(var(--space-16) * 2) 0;
  text-align: center;
  overflow:hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 54, 49, 0.85);
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 120px;
}

.testimonial-quotes {
  position: relative;
  margin-bottom: var(--space-6);
}

.testimonial-quotes img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.testimonial-quotes-right {
  display: none;
}

@media (min-width: 768px) {
  .testimonial-quotes-left {
    position: absolute;
    top: 40%;
    left: -80px;
    transform: translateY(-40%);
    margin-bottom: 0;
  }

  .testimonial-quotes-right {
    display: block;
    position: absolute;
    top: 40%;
    right: -80px;
    transform: translateY(-40%) rotate(180deg);
    margin-bottom: 0;
  }

  .testimonial-quotes img {
    margin: 0;
    width: 120px;
  }
}

@media (max-width: 767px) {
  .testimonial-content {
    padding: 0 20px;
  }
}

.testimonial-quote {
  font-family: "Jost", sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 var(--space-8);
  font-style: normal;
}

.testimonial-author {
  font-family: var(--font-cursive);
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}

/* ---------- Contact Info Icons ---------- */
.contact-info-item {
  display: grid;
  gap: var(--space-4);
  align-items: center;
  justify-items: center;
}

.contact-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-pink);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-2);
}

.contact-icon-circle i {
  width: 36px;
  height: 36px;
}

.contact-info-item h4 {
  margin: 0;
  color: var(--color-dark-green);
}

.contact-info-item p {
  margin: 0;
  color: var(--color-text-muted);
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: url('assets/contact-bg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding-top: calc(var(--space-16) * 1.5);
  padding-bottom: calc(var(--space-16) * 1.5);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

/* Contact box - simple wrapper */
.contact-box {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .contact-box {
    width: 66.666%;
  }
}

.contact-box h3 {
  color: var(--color-dark-green);
  margin-bottom: var(--space-8);
}

/* Honeypot field */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Contact form */
.contact-form {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* Form row pair - side by side on desktop */
.form-row-pair {
  display: block;
  margin-bottom: 20px;
}

.form-row-pair .form-field {
  margin-bottom: 20px;
}

.form-row-pair .form-field:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .form-row-pair {
    display: flex;
    gap: 20px;
  }
  
  .form-row-pair .form-field {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
  }
}

/* Form fields - single column, stacked */
.form-field {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}

.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark-green);
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  outline: none;
  transition: all 250ms ease;
  font-size: 16px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-field input:hover,
.form-field textarea:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.4);
  border-color: var(--color-dark-green);
  box-shadow: 0 0 0 3px rgba(29, 68, 52, 0.15);
}

.form-field textarea {
  resize: none;
  min-height: 140px;
}

.btn-submit {
  background: var(--color-dark-green);
  color: #ffffff;
  border: 2px solid var(--color-dark-green);
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease;
  border-radius: 0 36px;
  min-width: 180px;
  justify-self: start;
}

.btn-submit:hover {
  background: #2a6149;
  border-color: #153829;
}

.btn-submit {
  min-width: 180px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:disabled {
  cursor: not-allowed;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-success-message {
  font-size: 14px;
  color: var(--color-dark-green);
  font-weight: 500;
  background: #dffce169;
  border: 1px solid #66b695;
  border-radius: 16px;
  padding: 14px 26px;
  opacity: 0;
  transition: opacity 0.4s 
ease;
  white-space: nowrap;
  backdrop-filter: blur(5px);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ---------- Premium contact form ---------- */
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); }

.btn-animated { position: relative; overflow: hidden; }
.btn-animated::after { content: ""; position: absolute; inset: 0; background: radial-gradient(240px 240px at var(--x,50%) var(--y,50%), rgba(255, 239, 216, 0.625), transparent 60%); opacity: 0; transition: opacity 250ms ease; }
.btn-animated:hover::after { opacity: 0.7; }

.submit-success { display: none; margin-top: 12px; padding: 14px 16px; border-radius: 12px; background: rgba(60, 160, 80, 0.18); border: 1px solid rgba(60,160,80,0.35); color: #cfead7; }
.submit-success.show { display: block; animation: fadeIn 320ms ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Founder Quote ---------- */
.founder-quote { background: #0b0b0c; color: #fff; padding-top: calc(var(--space-16) + 24px); padding-bottom: calc(var(--space-16) + 24px); text-align: center; }
.founder-quote blockquote { font-family: "La Gagliane", cursive; font-size: clamp(28px, 4vw, 44px); line-height: 1.2; letter-spacing: 0.01em; margin: 0 auto; max-width: 900px; }
.founder-quote .byline { margin-top: 16px; color: var(--color-text-muted); letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; }

/* Subtle premium hover */
.service-card { transition: border-color 300ms ease, box-shadow 300ms ease; }
.service-card .cover img { transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1); }
.service-card:hover { border-color: rgba(255,255,255,0.20); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
.service-card:hover .cover img { transform: scale(1.06); }

@media (max-width: 480px) {
  :root { --card-cover-height: 200px; --card-height: 420px; }
  .service-meta .icon-square { width: 44px; height: 44px; border-radius: 10px; }
  .service-meta h3 { font-size: 20px; }
}

/* ---------- Reveal on view ---------- */
.reveal { opacity: 0; transition: opacity 600ms ease }
.reveal-visible { opacity: 1; }

/* ---------- Slim progress bar ---------- */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--color-beige); z-index: 100; box-shadow: 0 0 12px rgba(210,145,83,0.35); }

/* ---------- Brand Marquee (home intro) ---------- */
.brand-marquee { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.brand-marquee .marquee-viewport { overflow: hidden; }
@supports (-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000)) {
  .brand-marquee .marquee-viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
}
.brand-marquee .track-wrap { display: flex; will-change: transform; }
.brand-marquee .segment { display: flex; gap: 16px; }
.brand-marquee .tile { width: 220px; height: 140px; border-radius: 14px; overflow: hidden; background: var(--color-elev-1); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.brand-marquee .tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 1024px) { .brand-marquee .tile { width: 280px; height: 170px; } }

/* Placeholder color tiles (swap <img src> later) */
.ph-a { background: #2a2a2e; }
.ph-b { background: #3b2c1d; }
.ph-c { background: #1f2a2a; }
.ph-d { background: #332a2a; }
.ph-e { background: #2a2633; }
.ph-f { background: #2d2a1f; }
.ph-g { background: #22302b; }
.ph-h { background: #2c2c34; }

/* ---------- Service Detail Modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 140; background: color-mix(in srgb, black 40%, transparent); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: var(--space-6); }
.modal-overlay.show { display: flex; }
.service-modal { width: min(100%, 980px); background: var(--color-elev-1); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; box-shadow: 0 30px 100px rgba(0,0,0,0.5); overflow: hidden; display: grid; grid-template-rows: auto 1fr; max-height: 90vh; }
.service-modal .gallery { position: relative; padding: 12px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.service-modal .gallery .track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-modal .gallery .gitem { border-radius: 12px; overflow: hidden; box-shadow: 0 12px 26px rgba(0,0,0,0.35); background: var(--color-elev-1); aspect-ratio: 16 / 9; }
.service-modal .gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Gallery nav buttons (mobile only) */
.service-modal .gallery .gallery-btn { display: none; position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.08); color: #fff; place-items: center; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.service-modal .gallery .gallery-btn.prev { left: 8px; }
.service-modal .gallery .gallery-btn.next { right: 8px; }

@media (max-width: 640px) {
  .service-modal .gallery .track { grid-template-columns: 1fr; }
  .service-modal .gallery .gallery-btn { display: grid; }
  .service-modal .gallery .track .gitem:not(:first-child) { display: none; }
}

/* (No scrollbars; static 3-up gallery) */
.service-modal .body { position: relative; padding: var(--space-6); display: grid; gap: var(--space-4); overflow: auto; }
.service-modal h3 { margin: 0; font-size: 24px; letter-spacing: 0.02em; }
.service-modal p { color: var(--color-text-muted); font-size: 16px; line-height: 1.7; }
.service-modal ul { margin: 0; padding: 0 0 0 18px; color: var(--color-text-muted); }
.modal-close { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: var(--color-text); display: grid; place-items: center; cursor: pointer; }
.modal-actions { display: flex; gap: 12px; align-items: center; margin-top: var(--space-4); }

/* ---------- Brochure (print/PDF) ---------- */
.bro-doc { width: 100%; max-width: 980px; margin: 0 auto; padding: 24px; }
.bro-page { background: var(--color-bg); color: var(--color-text); border: 12px solid #ffffff; border-radius: 0; padding: 56px 48px; margin: 0 0 28px; }
.bro-page .kicker { text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: var(--color-main); opacity: 0.95; margin-bottom: 8px; }
.bro-hr { height: 1px; background: rgba(255,255,255,0.12); margin: 18px 0 28px; }
.bro-grid-2 { display: grid; gap: 28px; }
.bro-grid-3 { display: grid; gap: 18px; }
.bro-lead { color: var(--color-text-muted); font-size: 18px; line-height: 1.7; }
.bro-img-cover { width: 100%; height: 360px; border: 1px solid rgba(255,255,255,0.12); background: var(--color-elev-1); overflow: hidden; }
.bro-img-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bro-portrait { height: 340px; border: 1px solid rgba(255,255,255,0.12); overflow: hidden; }
.bro-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bro-service-grid { display: grid; gap: 28px; }
.bro-service { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
.bro-service .media { height: 220px; border: 1px solid rgba(255,255,255,0.12); overflow: hidden; background: var(--color-elev-1); }
.bro-service .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bro-service h3 { margin: 0; font-size: 22px; }
.bro-service p { color: var(--color-text-muted); }

@media (min-width: 900px) {
  .bro-grid-2 { grid-template-columns: 1.15fr 1fr; }
  .bro-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .bro-service-grid { grid-template-columns: repeat(2, 1fr); }
  .bro-img-cover { height: 420px; }
  .bro-service .media { height: 260px; }
}

@media print {
  @page { size: A4; margin: 10mm; }
  body { background: #ffffff; }
  .bro-doc { max-width: none; padding: 0; }
  .bro-page { break-after: page; border: 12px solid #ffffff; border-radius: 0; box-shadow: none; }
}

/* ---------- Loader overlay ---------- */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg);
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 320ms ease;
}
.loader-overlay.hidden { opacity: 0; pointer-events: none; }

/* ---------- Wedding Gallery Swiper ---------- */
.wedding-gallery-swiper {
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.swiper-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.swiper-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wedding-gallery-swiper .swiper-button-next,
.wedding-gallery-swiper .swiper-button-prev {
  color: var(--color-dark-green);
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wedding-gallery-swiper .swiper-button-next {
  right: -10px;
}

.wedding-gallery-swiper .swiper-button-prev {
  left: -10px;
}

.wedding-gallery-swiper .swiper-button-next:after,
.wedding-gallery-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.wedding-gallery-swiper .swiper-button-next:hover,
.wedding-gallery-swiper .swiper-button-prev:hover {
  background: var(--color-beige);
}

@media (max-width: 768px) {
  .swiper-image-container {
    height: 300px;
  }
  
  .wedding-gallery-swiper .swiper-button-next {
    right: 0;
  }
  
  .wedding-gallery-swiper .swiper-button-prev {
    left: 0;
  }
}
.loader-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.14);
  border-top-color: var(--color-accent-strong);
  animation: loader-spin 0.9s linear infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }

/* ---------- Layered Design Decorative Image ---------- */
.layered-design {
  display: block;
  position: absolute;
  bottom: 0;
  left: 5vw;
  width: 55vw;
  opacity: 0.74;
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .layered-design {
    left: 16vw;
    width: 36vw;
  }
}

/* Variant for centered/right positioning (about page) */
.layered-design--center {
  left: 20vw;
}

@media (min-width: 768px) {
  .layered-design--center {
    left: 40vw;
  }
}

