/* ================================================================
   VISUALS BY AMAANI — Custom Stylesheet
   ================================================================ */

/* ---- Google Fonts are loaded in HTML head ---- */

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
  --cream:        #FAF7F2;
  --cream-alt:    #F0EBE1;
  --cream-dark:   #E8E0D4;
  --navy:         #1C1F3B;
  --navy-dark:    #141628;
  --gold:         #C9A84C;
  --gold-light:   #DFB966;
  --gold-dark:    #A67C2E;
  --brown:        #3B2A1A;
  --brown-muted:  #7A6252;
  --text-light:   #F5F0E8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', 'Helvetica Neue', sans-serif;

  --charcoal:      #1A1714;
  --charcoal-dark: #100D0B;

  --ease-out:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:   cubic-bezier(0.55, 0.06, 0.68, 0.19);
  --ease-both: cubic-bezier(0.76, 0, 0.24, 1);

  --shadow-gold: 0 12px 50px rgba(201, 168, 76, 0.18);
  --shadow-dark: 0 20px 60px rgba(10, 8, 6, 0.35);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
}

/* ================================================================
   CUSTOM SCROLLBAR
   ================================================================ */
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--charcoal-dark); }
::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 2px; }

/* ================================================================
   TYPOGRAPHY UTILITIES
   ================================================================ */
.serif { font-family: var(--font-serif); }
.sans  { font-family: var(--font-sans);  }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
}

/* ================================================================
   GOLD ORNAMENTAL DIVIDER
   ================================================================ */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 1.25rem auto;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 70px;
}

.gold-divider::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.gold-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.gold-divider-icon {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Wide divider variant */
.gold-divider.wide::before,
.gold-divider.wide::after {
  width: 120px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal-dark);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 1.05rem 2.4rem;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.45);
  padding: 1.05rem 2.4rem;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 3.5rem;
  height: 74px;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid transparent;
  transition: height 0.5s var(--ease-out), background 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out), border-color 0.5s ease,
              opacity 0.28s ease, transform 0.28s ease;
}

#navbar.scrolled {
  padding: 0 3.5rem;
  height: 80px;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 2px 40px rgba(10, 8, 6, 0.07);
}

/* Left nav group */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  justify-content: flex-end;
}

/* Right nav group */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  justify-content: flex-start;
}

/* Centered Logo */
.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  transform: translateY(-4px) translateX(6px);
}

.navbar-logo:hover {
  opacity: 0.82;
}

.navbar-logo-img {
  height: 112px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.5s ease, height 0.5s ease;
}

#navbar.scrolled .navbar-logo-img {
  filter: none;
  height: 100px;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}

.navbar-logo-main {
  font-family: var(--font-sans);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  transition: color 0.5s ease;
}

.navbar-logo-sub {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  transition: color 0.5s ease;
}

#navbar.scrolled .navbar-logo-main {
  color: var(--brown);
}

#navbar.scrolled .navbar-logo-sub {
  color: var(--gold-dark);
}

/* Navigation links */
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

#navbar.scrolled .nav-link {
  color: rgba(59, 42, 26, 0.72);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--gold-dark);
}

/* CTA button */
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-dark);
  background: var(--gold);
  padding: 0.62rem 1.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  position: relative;
  z-index: 999;
}

.hamburger span {
  display: block;
  height: 1px;
  background: rgba(245, 240, 232, 0.9);
  transition: all 0.4s var(--ease-both);
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 24px; }

#navbar.scrolled .hamburger span {
  background: var(--brown);
}

/* ================================================================
   MOBILE MENU — Right-side Drawer
   ================================================================ */

/* Navbar hides when menu is open */
#navbar.menu-open {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

/* Backdrop */
.mm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 13, 11, 0.38);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.mm-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(260px, 65vw, 360px);
  z-index: 1001;
  background: #FDFCF8;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.52s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  box-shadow: -6px 0 32px rgba(16, 13, 11, 0.10);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* —— Top bar —— */
.mm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.3rem 1.1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  flex-shrink: 0;
}

.mm-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.38s ease 0.12s, transform 0.38s ease 0.12s;
}

.mobile-menu.open .mm-logo {
  opacity: 1;
  transform: translateX(0);
}

.mm-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

/* Close button */
.mm-close {
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid rgba(59, 42, 26, 0.14);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.mm-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 1px;
  background: var(--brown);
  transform-origin: center;
}

.mm-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mm-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mm-close:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.45);
}

.mm-close:hover span {
  background: var(--gold-dark);
}

/* —— Nav links —— */
.mm-nav {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.3rem 0.8rem;
  flex: 1;
}

.mm-link {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  text-align: left;
  display: block;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.13);
  text-decoration: none;
  position: relative;
  opacity: 0;
  transform: translateX(16px);
  transition: color 0.3s ease;
}

.mm-link:last-child {
  border-bottom: none;
}

.mm-link:hover {
  color: var(--gold-dark);
}

/* Staggered entrance — slides in from right */
.mobile-menu.open .mm-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mm-link[data-index="1"] { transition: opacity 0.38s ease 0.16s, transform 0.38s ease 0.16s, color 0.3s ease; }
.mobile-menu.open .mm-link[data-index="2"] { transition: opacity 0.38s ease 0.22s, transform 0.38s ease 0.22s, color 0.3s ease; }
.mobile-menu.open .mm-link[data-index="3"] { transition: opacity 0.38s ease 0.27s, transform 0.38s ease 0.27s, color 0.3s ease; }
.mobile-menu.open .mm-link[data-index="4"] { transition: opacity 0.38s ease 0.32s, transform 0.38s ease 0.32s, color 0.3s ease; }
.mobile-menu.open .mm-link[data-index="5"] { transition: opacity 0.38s ease 0.37s, transform 0.38s ease 0.37s, color 0.3s ease; }
.mobile-menu.open .mm-link[data-index="6"] { transition: opacity 0.38s ease 0.41s, transform 0.38s ease 0.41s, color 0.3s ease; }
.mobile-menu.open .mm-link[data-index="7"] { transition: opacity 0.38s ease 0.45s, transform 0.38s ease 0.45s, color 0.3s ease; }
.mobile-menu.open .mm-link[data-index="8"] { transition: opacity 0.38s ease 0.49s, transform 0.38s ease 0.49s, color 0.3s ease; }

/* —— Social footer —— */
.mm-footer {
  padding: 1.2rem 1.3rem 1.8rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.38s ease 0.56s, transform 0.38s ease 0.56s;
}

.mobile-menu.open .mm-footer {
  opacity: 1;
  transform: translateY(0);
}

.mm-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brown-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mm-social i {
  font-size: 1.05rem;
  color: var(--gold-dark);
  transition: color 0.3s ease;
}

.mm-social span {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.mm-social:hover {
  color: var(--gold-dark);
}

.mm-social:hover i {
  color: var(--gold);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #0a0806;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  animation: heroBgZoom 24s ease-in-out infinite alternate;
  /* Force GPU compositing for sharper rendering */
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Always visible — no fade-in delay, video shows immediately on page load */
  opacity: 1;
}

/* Suppress all native browser/OS media controls on the hero video */
.hero-video::-webkit-media-controls            { display: none !important; opacity: 0 !important; visibility: hidden !important; }
.hero-video::-webkit-media-controls-enclosure  { display: none !important; opacity: 0 !important; visibility: hidden !important; }
.hero-video::-webkit-media-controls-panel      { display: none !important; opacity: 0 !important; visibility: hidden !important; }
.hero-video::-webkit-media-controls-play-button           { display: none !important; opacity: 0 !important; visibility: hidden !important; }
.hero-video::-webkit-media-controls-start-playback-button { display: none !important; opacity: 0 !important; visibility: hidden !important; }
.hero-video::-webkit-media-controls-overlay-play-button   { display: none !important; opacity: 0 !important; visibility: hidden !important; }
.hero-video::-webkit-media-controls-overlay-enclosure     { display: none !important; opacity: 0 !important; visibility: hidden !important; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10, 8, 6, 0.38) 0%, transparent 40%),
    linear-gradient(to left,   rgba(10, 8, 6, 0.18) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(10, 8, 6, 0.10) 0%, rgba(10, 8, 6, 0.55) 60%, rgba(10, 8, 6, 0.92) 100%);
}

/* ---- Vertical side label ---- */
.hero-side-label {
  position: absolute;
  right: 2.75rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 1s var(--ease-out) forwards 1.8s;
  white-space: nowrap;
}

.hero-side-label span {
  font-family: var(--font-sans);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.38);
}

.hero-side-sep {
  color: rgba(201, 168, 76, 0.5) !important;
  letter-spacing: 0 !important;
}

/* ---- Hero content ---- */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  will-change: transform, opacity;
}

/* Eyebrow row with flanking lines */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) forwards 0.4s;
}

.hero-eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(245, 240, 232, 0.28);
  flex-shrink: 0;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.88);
}

/* Main title */
.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.hero-title-top {
  font-size: clamp(3.2rem, 8vw, 8.5rem);
  color: var(--text-light);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out) forwards 0.65s;
  text-shadow: 0 8px 60px rgba(10, 8, 6, 0.5);
  display: block;
}

.hero-title-italic {
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 5.8rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out) forwards 0.9s;
  display: block;
}

/* Gold ornamental divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2.25rem auto;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out) forwards 1.1s;
}

.hero-divider-line {
  display: block;
  width: 55px;
  height: 1px;
  background: rgba(201, 168, 76, 0.45);
}

.hero-divider-icon {
  color: var(--gold);
  font-size: 0.72rem;
}

/* CTA group */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out) forwards 1.3s;
}

/* Hero buttons — identical size & shape, one filled, one ghost */
.hero-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.05rem 2.5rem;
  border: 1px solid var(--gold);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease;
  z-index: 0;

  /* filled by default */
  background: var(--gold);
  color: var(--charcoal-dark);
}

/* Shimmer sweep on filled button */
.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.55s var(--ease-out);
  z-index: 1;
  pointer-events: none;
}

.hero-btn:hover::before {
  background-position: 150% 0;
}

.hero-btn--ghost {
  background: transparent;
  color: rgba(245, 240, 232, 0.88);
  border-color: rgba(245, 240, 232, 0.38);
}

/* Slide-in fill on ghost button */
.hero-btn--ghost::before {
  background: rgba(245, 240, 232, 0.09);
  background-size: 100% 100%;
  background-position: 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out);
}

.hero-btn--ghost:hover::before {
  transform: scaleX(1);
  background-position: 0 0;
}

.hero-btn--ghost:hover {
  border-color: rgba(245, 240, 232, 0.65);
  color: var(--text-light);
}

/* ================================================================
   MANIFESTO SECTION
   ================================================================ */
#manifesto {
  background: var(--cream);
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle gold radial ambience toward the image */
#manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 75% at 78% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Faint editorial watermark */
.manifesto-watermark {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-serif);
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 300;
  color: rgba(201,168,76,0.05);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Two-column editorial layout: text | image */
.manifesto-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6.5rem;
  align-items: center;
}

.manifesto-content {
  text-align: left;
}

.manifesto-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.2;
  margin: 0 0 2.75rem;
  letter-spacing: 0.01em;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  text-align: left;
}

.manifesto-col p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--brown-muted);
  margin-bottom: 1.5rem;
}

.manifesto-col p:last-child {
  margin-bottom: 0;
}

.manifesto-closing {
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding-top: 2.5rem;
}

.manifesto-closing-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.manifesto-signature {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

/* ——— Manifesto image panel ——— */
.manifesto-image-panel {
  position: relative;
}

.manifesto-image-frame {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(26,23,20,0.15),
    0 4px 16px rgba(26,23,20,0.08);
}

/* Elegant inner gold border */
.manifesto-image-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,0.4);
  z-index: 2;
  pointer-events: none;
  transition: inset 0.5s ease;
}

.manifesto-image-frame:hover::after {
  inset: 16px;
}

.manifesto-image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.9) brightness(0.97);
  transition: filter 0.7s ease, transform 0.9s ease;
}

.manifesto-image-frame:hover img {
  filter: saturate(1.02) brightness(1.0);
  transform: scale(1.025);
}

.manifesto-image-frame video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Vertical credit label beside the image */
.manifesto-image-credit {
  position: absolute;
  left: calc(100% + 1.25rem);
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  white-space: nowrap;
}

/* ================================================================
   VIDEOGRAPHY SECTION
   ================================================================ */
#videography {
  background: linear-gradient(160deg, var(--cream-alt) 0%, #E8DDD0 100%);
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle warm radial on the text side */
#videography::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 75% 55%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Faint serif watermark */
#videography::after {
  content: 'FILM';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(9rem, 16vw, 16rem);
  font-weight: 300;
  color: rgba(59, 42, 26, 0.035);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

/* Thin horizontal accent lines */
.vg-hline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 8rem);
  pointer-events: none;
  z-index: 0;
  display: none; /* replaced by vertical rhythm lines below */
}

.vg-hline--top {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  display: block;
}

.vg-hline--bottom {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  display: block;
}

/* Faint large circle arc — behind image */
.vg-arc {
  position: absolute;
  left: -18rem;
  top: 50%;
  transform: translateY(-50%);
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.07);
  pointer-events: none;
  z-index: 0;
}

.videography-inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ——— Image ——— */
.videography-image-wrap {
  position: relative;
}

.videography-image-frame {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 28px 70px rgba(59, 42, 26, 0.14),
    0 6px 18px rgba(59, 42, 26, 0.08);
}

.videography-image-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, 0.38);
  z-index: 2;
  pointer-events: none;
  transition: inset 0.5s ease;
}

.videography-image-frame:hover::after {
  inset: 17px;
}

.videography-image-frame img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.9) brightness(0.98);
  transition: filter 0.7s ease, transform 0.9s ease;
}

.videography-image-frame:hover img {
  filter: saturate(1.02) brightness(1.0);
  transform: scale(1.025);
}

.videography-image-frame video {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Vertical label beside image */
.videography-img-label {
  position: absolute;
  left: calc(100% + 1.1rem);
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  white-space: nowrap;
}

/* ——— Text ——— */
.videography-text {
  padding-left: 1rem;
  text-align: center;
}

.videography-text .section-label {
  margin-bottom: 1.75rem;
}

.videography-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--brown);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
}

.videography-body {
  margin-top: 2.5rem;
  text-align: left;
}

.videography-body p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--brown-muted);
  margin-bottom: 1.25rem;
}

.videography-body p:last-child {
  margin-bottom: 0;
}

.videography-cta {
  margin-top: 3rem;
}

/* ================================================================
   PACKAGES SECTION (incl. Extra Opties)
   ================================================================ */
#packages {
  background: var(--cream);
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

#packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 18%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Thin top/bottom gold accent lines */
.pkg-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  pointer-events: none;
  z-index: 0;
}
.pkg-line--top    { top: 3rem; }
.pkg-line--bottom { bottom: 3rem; }

/* Faint large circle arc */
.pkg-arc {
  position: absolute;
  right: -22rem;
  top: 50%;
  transform: translateY(-50%);
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.065);
  pointer-events: none;
  z-index: 0;
}

.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.packages-intro {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

/* — Grids — */
.packages-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.packages-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.package-card {
  background: #FFFFFF;
  border: 1px solid rgba(59, 42, 26, 0.09);
  border-radius: 4px;
  padding: 3.25rem 2.75rem 3rem;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.55s ease, box-shadow 0.55s ease;
}

/* Gold top line — extends 1px beyond card edges so it reaches the corners */
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  opacity: 0.25;
  transition: opacity 0.55s ease;
}

.package-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: 0 6px 28px rgba(59, 42, 26, 0.08);
}

.package-card:hover::before {
  opacity: 1;
}

.package-card.featured {
  background: #FFFFFF;
  border-color: rgba(201, 168, 76, 0.35);
}

.package-card.featured::before {
  opacity: 1;
}

.package-card.featured:hover {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 6px 28px rgba(59, 42, 26, 0.09);
}

/* Package tag */
.package-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

/* Package name */
.package-name {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.package-name-sub {
  display: block;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--brown-muted);
  font-weight: 300;
  margin-top: 0.2rem;
}

.package-card.featured .package-name { color: var(--brown); }

/* Thin rule */
.package-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
  margin: 1.75rem 0;
}

/* Feature list */
.package-list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  flex: 1;
}

.package-list li {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--brown-muted);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(59, 42, 26, 0.06);
}

.package-list li:last-child { border-bottom: none; }

.package-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 0.2em;
}

.package-list li strong {
  color: var(--brown);
  font-weight: 600;
}

.package-card.featured .package-list li {
  color: var(--brown-muted);
  border-bottom-color: rgba(59, 42, 26, 0.06);
}

.package-card.featured .package-list li strong { color: var(--brown); }

/* Card contact CTA (replaces price block) */
.pkg-contact-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 42, 26, 0.08);
}

.pkg-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.pkg-contact-link i {
  font-size: 0.48rem;
  transition: transform 0.3s ease;
}

.pkg-contact-link:hover {
  color: var(--gold);
  gap: 0.85rem;
}

.pkg-contact-link:hover i {
  transform: translateX(4px);
}

/* CTA block below packages */
.pkg-cta {
  text-align: center;
  margin-top: 4.5rem;
}

.pkg-cta-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brown-muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.pkg-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Brochure text link */
.pkg-brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-muted);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}

.pkg-brochure-link i {
  font-size: 0.48rem;
  transition: transform 0.3s ease;
}

.pkg-brochure-link:hover {
  color: var(--gold-dark);
  gap: 0.85rem;
}

.pkg-brochure-link:hover i {
  transform: translateX(4px);
}

/* ── Package Info Block (replaces card grids) ── */
.pkg-info-block {
  max-width: 780px;
  margin: 0 auto 5.5rem;
  text-align: center;
}

.pkg-info-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2.05;
  color: var(--brown-muted);
  margin-bottom: 3.5rem;
}

.pkg-names-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 3.5rem;
}

.pkg-name-pill {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.pkg-name-sep {
  color: rgba(201, 168, 76, 0.55);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.pkg-info-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-style: italic;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.pkg-info-block .br-social-cta {
  margin-top: 2.25rem;
}

/* Reiskosten inline link */
.reiskosten-link {
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.reiskosten-link:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.7);
}

/* ── Packages two-column layout (brochure page) ── */
.pkg-layout-wrap {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5.5rem;
}

.pkg-layout-left {
  text-align: left;
}

.pkg-layout-left .section-header {
  text-align: left;
}

/* Override defaults when inside the split layout */
.pkg-info-block--inline {
  max-width: none;
  margin-bottom: 0;
  text-align: left;
}

.pkg-info-block--inline .br-social-cta {
  justify-content: flex-start;
}

.pkg-info-block--inline .pkg-info-sub {
  text-align: left;
}

.pkg-layout-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pkg-video-frame {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 2px 0 rgba(201, 168, 76, 0.55),
    0 16px 56px rgba(59, 42, 26, 0.22),
    0 4px 18px rgba(59, 42, 26, 0.12);
}

.pkg-video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  pointer-events: none;
  z-index: 1;
}

.pkg-video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.pkg-video-label {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* Section separator line */
.pkg-section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.28) 50%, transparent);
  margin: 6.5rem 0;
}

/* — Extra Opties (merged) — */
.pkg-extras-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
}

.pkg-extras-intro {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown-muted);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 4.5rem;
  line-height: 1.85;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 950px;
  margin: 0 auto 4rem;
}

.extra-item {
  background: #FFFFFF;
  border: 1px solid rgba(59, 42, 26, 0.08);
  padding: 2.75rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.extra-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.extra-item:hover::before { opacity: 1; }

.extra-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(59, 42, 26, 0.08);
  border-color: rgba(201, 168, 76, 0.32);
}

.extra-icon {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.extra-name {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0;
  line-height: 1.6;
}

.extra-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.extra-note {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--brown-muted);
  line-height: 1.6;
  opacity: 0.75;
}

.reiskosten-block {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  padding-top: 3.5rem;
  text-align: center;
}

.reiskosten-title {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.reiskosten-text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--brown-muted);
}

/* ================================================================
   JOURNEY SECTION
   ================================================================ */
#journey {
  background: var(--cream-dark);
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

#journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.journey-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ── Track wrapper: line elements are positioned relative to this ── */
.journey-track-wrap {
  position: relative;
}

/* Background (dim) line — left: 10% = center of col 1, right: 10% = center of col 5 */
.journey-line-bg {
  position: absolute;
  top: 1.5rem;   /* half of 3rem node = vertical center of circles */
  left: 10%;     /* center of column 1 in a 5-col equal grid */
  right: 10%;    /* center of column 5 from the right */
  height: 1px;
  background: rgba(201, 168, 76, 0.22);
  z-index: 0;
  pointer-events: none;
}

/* Animated gold fill (JS adds .animate to trigger the width transition) */
#journey-fill {
  position: absolute;
  top: calc(1.5rem - 1px); /* keep 2px line centered on the same axis */
  left: 10%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.45);
  z-index: 0;
  pointer-events: none;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#journey-fill.animate {
  width: 80%; /* 10% left + 80% width = stops at 90% = center of col 5 */
}

/* ── 5-step grid ── */
.journey-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch; /* all cells same height → equal cards */
  position: relative;
  z-index: 1;
}

/* ── Single step ── */
.journey-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  cursor: default;
}

/* Node circle */
.journey-node {
  position: relative;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.75rem;
  flex-shrink: 0;
  z-index: 2; /* above the line layers */
}

/* Vertical connector: thin gold fade from circle bottom to card top */
.journey-node::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 1.75rem; /* matches margin-bottom exactly */
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.55), rgba(201, 168, 76, 0.04));
  pointer-events: none;
  z-index: 1;
}

.journey-node-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  background: var(--cream-dark); /* matches section bg — visually cuts the line */
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  z-index: 2;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Card below the node */
.journey-card {
  flex: 1; /* fill remaining height → all cards equal */
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream) 0%, var(--cream-alt) 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-top: 2.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 8px;
  padding: 1.75rem 1.3rem 1.6rem;
  width: 100%;
  box-shadow:
    0 4px 24px rgba(59, 42, 26, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    border-top-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Large italic step number as subtle watermark behind content */
.journey-card::before {
  content: attr(data-step);
  position: absolute;
  bottom: -1rem;
  right: 0.6rem;
  font-family: var(--font-serif);
  font-size: 6.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: rgba(166, 124, 46, 0.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.journey-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.journey-desc {
  font-family: var(--font-sans);
  font-size: 0.71rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--brown-muted);
  position: relative;
  z-index: 1;
}

/* ── Hover state ── */
.journey-item:hover .journey-node-num {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  box-shadow:
    0 0 0 5px rgba(201, 168, 76, 0.12),
    0 4px 18px rgba(161, 128, 46, 0.35);
  transform: scale(1.08);
}

.journey-item:hover .journey-card {
  border-top-color: var(--gold-dark);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow:
    0 8px 36px rgba(59, 42, 26, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transform: translateY(-5px);
}

.journey-item:hover .journey-card::before {
  color: rgba(166, 124, 46, 0.14);
}

.journey-item:hover .journey-title {
  color: var(--gold-dark);
}

/* ================================================================
   REVIEWS SECTION
   ================================================================ */
#reviews {
  background: var(--cream-alt);
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal texture overlay */
#reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 65% 50% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.reviews-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 300;
  color: rgba(201, 168, 76, 0.055);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.review-card {
  background: linear-gradient(145deg, #F5EDD8 0%, #EDE0C4 50%, #E8D8B4 100%);
  border: 1px solid rgba(201, 168, 76, 0.28);
  padding: 3.5rem 3rem 2.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 2px 12px rgba(90, 60, 20, 0.08),
    0 12px 40px rgba(90, 60, 20, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

/* Vertical gold side accent */
.review-card::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent);
  border-radius: 0 2px 2px 0;
}

/* Large decorative opening quote */
.review-card::after {
  content: '\201C';
  position: absolute;
  top: 1.75rem;
  right: 2.5rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(171, 128, 40, 0.13);
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

.review-salutation {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 0.93rem;
  font-style: italic;
  color: #4A3320;
  line-height: 2.05;
  margin-bottom: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(171, 128, 40, 0.28);
  position: relative;
  z-index: 1;
}

.review-ring i {
  color: var(--gold-dark);
  font-size: 0.5rem;
}

.review-name {
  font-family: var(--font-sans);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7A5C30;
}

/* ================================================================
   CONTACT CTA SECTION
   ================================================================ */
#contact-cta {
  background: #6B4A28;
  padding: 5.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 120%, rgba(201,168,76,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(201,168,76,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(201,168,76,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-label {
  color: var(--gold) !important;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.2;
  margin: 1rem auto 0;
  max-width: 600px;
}

.cta-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.75rem auto 1.75rem;
  color: var(--gold);
}

.cta-orn-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45));
}

.cta-orn-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(201,168,76,0.45));
}

.cta-ornament .fa-clover {
  font-size: 0.5rem;
}

/* Inline contact links — no boxes */
.cta-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2.25rem;
}

.cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.55);
  padding: 0.4rem 1.1rem;
  transition: color 0.25s ease;
}

.cta-contact-link i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.cta-contact-link:hover {
  color: rgba(245, 240, 232, 0.9);
}

.cta-contact-link:hover i {
  color: var(--gold-light);
}

.cta-contact-sep {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(201, 168, 76, 0.25);
  flex-shrink: 0;
}



/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: #1E140A;
  padding: 5rem 3rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr;
  gap: 5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

.footer-brand-sub {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  display: block;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.82rem;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Two-column nav layout */
.footer-links--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.5rem;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-contact-row i {
  color: var(--gold);
  font-size: 0.82rem;
  width: 15px;
  flex-shrink: 0;
  opacity: 0.8;
}

.footer-contact-row a {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.45);
  transition: color 0.25s ease;
  letter-spacing: 0.02em;
}

.footer-contact-row a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.2);
  text-align: center;
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(55px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.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; }

/* ================================================================
   KEYFRAME ANIMATIONS
   ================================================================ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(9px); }
}

@keyframes heroBgZoom {
  from { transform: scale(1.0) translateZ(0); }
  to   { transform: scale(1.08) translateZ(0); }
}

@keyframes shimmerGold {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ================================================================
   SECTION CONTAINER HELPER
   ================================================================ */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

/* ================================================================
   RESPONSIVE — TABLET (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  #navbar {
    padding: 0 2rem;
    height: 68px;
    gap: 1.25rem;
  }

  #navbar.scrolled {
    padding: 0 2rem;
    height: 62px;
  }

  #navbar.page-light,
  #navbar.page-light.scrolled {
    height: 68px;
  }

  .navbar-left,
  .navbar-right {
    gap: 1.5rem;
  }

  .manifesto-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .manifesto-image-panel {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .manifesto-image-credit {
    display: none;
  }

  .manifesto-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .manifesto-col p:last-child {
    margin-bottom: 0;
  }

  .videography-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .videography-image-wrap {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .videography-img-label {
    display: none;
  }

  .videography-text {
    padding-left: 0;
  }

  .videography-image-frame img {
    height: 400px;
  }

  .videography-image-frame video {
    height: 400px;
  }

  .packages-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid-bottom {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .extras-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-links--two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar-left, .navbar-right { display: none; }
  .hamburger   { display: flex; }

  #navbar {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 62px;
  }

  #navbar.scrolled {
    padding: 0 1.5rem;
    height: 58px;
  }

  #navbar.page-light,
  #navbar.page-light.scrolled {
    height: 62px;
  }

  .navbar-logo-img { height: 90px; }
  #navbar.scrolled .navbar-logo-img { height: 82px; }
  #navbar.page-light .navbar-logo-img,
  #navbar.page-light.scrolled .navbar-logo-img { height: 82px; }
  .navbar-logo { transform: translateY(-2px) translateX(0); }

  /* Hero */
  .hero-title-top {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }
  .hero-title-italic {
    font-size: clamp(1.6rem, 7.5vw, 2.5rem);
  }
  .hero-side-label { display: none; }
  .hero-eyebrow-line { display: none; }
  .hero-eyebrow {
    font-size: 0.46rem;
    letter-spacing: 0.2em;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    gap: 0.75rem;
  }
  .hero-btn {
    text-align: center;
    width: 100%;
  }

  /* Manifesto */
  #manifesto { padding: 6rem 1.5rem; }

  .manifesto-layout {
    gap: 3rem;
  }

  .manifesto-headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .manifesto-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .manifesto-image-frame img {
    height: 380px;
  }

  .manifesto-image-frame video {
    height: 380px;
  }

  /* Videography */
  #videography { padding: 6rem 1.5rem; }

  .videography-image-frame img {
    height: 340px;
  }

  .videography-image-frame video {
    height: 340px;
  }

  /* Packages + Extras */
  #packages { padding: 6rem 1.5rem; }
  .packages-grid-top    { grid-template-columns: 1fr; }
  .packages-grid-bottom { grid-template-columns: 1fr; max-width: 100%; }
  .extras-grid          { grid-template-columns: 1fr; }
  .pkg-section-sep      { margin: 4rem 0; }

  /* Packages two-col → stack */
  .pkg-layout-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
  }
  .pkg-layout-left { text-align: center; }
  .pkg-info-block--inline { text-align: center; }
  .pkg-info-block--inline .pkg-info-sub { text-align: center; }
  .pkg-layout-right { max-width: 260px; margin: 0 auto; }

  /* Journey */
  #journey { padding: 6rem 1.5rem; }
  .journey-track { grid-template-columns: repeat(3, 1fr); gap: 3rem 0; }
  .journey-line-bg, #journey-fill { display: none; }

  /* Reviews */
  #reviews { padding: 6rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* CTA */
  #contact-cta { padding: 4rem 1.5rem; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 0.1rem; }
  .cta-contact-sep { width: 24px; height: 1px; }
  .cta-contact-link {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 0.5rem 0;
  }

  /* Footer */
  footer { padding: 4rem 1.5rem 2rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-links--two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================
   JOURNEY — Mobile override
   ================================================================ */
@media (max-width: 768px) {
  .journey-track {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1rem;
  }
  .journey-item { padding: 0 0.5rem; }
  .journey-node { width: 2.75rem; height: 2.75rem; margin-bottom: 1.5rem; }
  .journey-node-num { width: 2.75rem; height: 2.75rem; font-size: 0.8rem; }
  .journey-card { padding: 1.3rem 1rem; }
  .journey-title { font-size: 0.95rem; }
  .journey-desc  { font-size: 0.69rem; }
}

@media (max-width: 480px) {
  .journey-track { grid-template-columns: 1fr; gap: 1.75rem 0; }
}

/* ================================================================
   WHATSAPP FLOATING ACTION BUTTON
   ================================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #3ddc78 0%, #25D366 45%, #1aad54 100%);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.28s ease;
  animation: wa-fab-enter 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
}

.whatsapp-fab i {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
}

.whatsapp-fab__label {
  display: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.65),
    0 4px 14px rgba(0, 0, 0, 0.25);
}

.whatsapp-fab:active {
  transform: scale(0.95);
  box-shadow:
    0 3px 14px rgba(37, 211, 102, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.18);
}

.whatsapp-fab.hidden {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

@keyframes wa-fab-enter {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  .whatsapp-fab {
    bottom: 1.4rem;
    right: 1.4rem;
    width: 54px;
    height: 54px;
  }
}

/* ================================================================
   GOLD DIVIDER — Left-aligned modifier
   ================================================================ */
.gold-divider--left {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}

/* ================================================================
   NAVBAR — Page Light Mode (cream pages without dark hero)
   ================================================================ */
#navbar.page-light {
  height: 80px;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 2px 40px rgba(10, 8, 6, 0.06);
}

#navbar.page-light .nav-link         { color: rgba(59, 42, 26, 0.72); }
#navbar.page-light .nav-link:hover,
#navbar.page-light .nav-link.active  { color: var(--gold-dark); }
#navbar.page-light .navbar-logo-main { color: var(--brown); }
#navbar.page-light .navbar-logo-sub  { color: var(--gold-dark); }
#navbar.page-light .navbar-logo-img  { filter: none; height: 100px; }
#navbar.page-light .hamburger span   { background: var(--brown); }
/* ================================================================
   PORTFOLIO PAGE
   ================================================================ */

/* — Banner — */
#pf-banner {
  background: var(--cream);
  padding: 8.5rem 2rem 3rem;
  text-align: center;
}

.pf-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pf-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.pf-banner-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--brown-muted);
  letter-spacing: 0.01em;
  line-height: 1.7;
}

/* — Video Slider — */
#pf-gallery {
  background: var(--cream);
  padding: 3rem 0 6rem;
  position: relative;
  overflow: hidden;
}

#pf-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.pf-gallery-inner {
  position: relative;
  z-index: 1;
}

/* Counter */
.pf-counter {
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-muted);
}

.pf-counter-current {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* Slider wrapper — stage + arrows */
.pf-slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4.5rem;
}

/* Overflow window */
.pf-slider-stage {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(59, 42, 26, 0.22), 0 4px 20px rgba(59, 42, 26, 0.12);
}

/* Sliding track */
.pf-slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

/* Individual slide */
.pf-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--charcoal-dark);
}

.pf-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sound toggle button */
.pf-sound-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.75);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-muted);
  font-size: 0.68rem;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-appearance: none;
  appearance: none;
}

.pf-sound-btn:hover {
  transform: scale(1.1);
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
}

.pf-slide.sound-on .pf-sound-btn {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.2);
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.32);
}

.pf-icon-unmuted { display: none; }
.pf-slide.sound-on .pf-icon-muted   { display: none; }
.pf-slide.sound-on .pf-icon-unmuted { display: inline; }

/* Navigation arrows */
.pf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  background: rgba(250, 247, 242, 0.85);
  color: var(--gold-dark);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease,
              background 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.pf-nav--prev { left: 0; }
.pf-nav--next { right: 0; }

.pf-nav:hover {
  border-color: var(--gold);
  background: var(--cream-alt);
  color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.22);
  transform: translateY(-50%) scale(1.1);
}

/* Dot indicators */
.pf-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.pf-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(201, 168, 76, 0.25);
  cursor: pointer;
  transition: background 0.35s ease,
              transform 0.35s ease,
              box-shadow 0.35s ease;
}

.pf-dot.active {
  background: var(--gold);
  transform: scale(1.55);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.55);
}

.pf-dot:hover:not(.active) {
  background: rgba(201, 168, 76, 0.55);
}

/* — Portfolio Responsive — */
@media (max-width: 1024px) {
  #pf-banner { padding: 7.5rem 2rem 2.5rem; }
  .pf-slider-wrap { max-width: 100%; padding: 0 4rem; }
  .pf-nav { width: 42px; height: 42px; }
}

@media (max-width: 640px) {
  #pf-banner { padding: 7rem 1.5rem 2.5rem; }
  #pf-gallery { padding: 2.5rem 0 5rem; }
  .pf-slider-wrap { max-width: 100%; padding: 0 3rem; }
  .pf-nav { width: 36px; height: 36px; font-size: 0.75rem; }
  .pf-dots { margin-top: 1.5rem; }
}



/* ================================================================
   BROCHURE PAGE
   ================================================================ */

/* — Banner — */
#br-banner {
  background: var(--cream);
  padding: 8.5rem 2rem 3rem;
  text-align: center;
}

/* — Intro — */
#br-intro {
  background: var(--cream);
  padding: 5.5rem 3.5rem 0;
  text-align: center;
}

.br-intro-inner {
  max-width: 680px;
  margin: 0 auto;
}

.br-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.9;
}

/* — Packages (reuses index styles — already in sheet) — */
/* We only need a page-level wrapper tweak */
#br-packages {
  /* inherits #packages styles from global sheet */
  scroll-margin-top: 80px;
  background: var(--cream);
  padding: 9rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}

/* — Request section — */
#br-request {
  background: var(--cream);
  padding: 7rem 3.5rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#br-request::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.br-request-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.br-request-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.95;
  margin-bottom: 0.5rem;
}

/* — Request form — */
.br-form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.br-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.br-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.br-form-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

.br-form-input,
.br-form-select,
.br-form-textarea {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream-alt);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.br-form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C9A84C' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.br-form-input::placeholder,
.br-form-textarea::placeholder {
  color: rgba(122, 98, 82, 0.5);
}

.br-form-input:focus,
.br-form-select:focus,
.br-form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.br-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.br-form-submit {
  margin-top: 0.5rem;
  align-self: center;
}

/* — Brochure Social CTA — */
.br-social-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.br-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.br-social-link i {
  font-size: 1.1rem;
}

.br-social-link:hover {
  background: var(--gold);
  color: #fff;
}

/* — Brochure Responsive — */
@media (max-width: 1024px) {
  #br-intro    { padding: 4rem 2rem 0; }
  #br-request  { padding: 5.5rem 2rem 6.5rem; }
}

@media (max-width: 768px) {
  #br-banner  { padding: 7rem 1.5rem 2.5rem; }
  #br-intro   { padding: 3.5rem 1.5rem 0; }
  #br-request { padding: 5rem 1.5rem 6rem; }

  .br-form-row { grid-template-columns: 1fr; }
}


/* ================================================================
   FAQ PAGE
   ================================================================ */

/* — Banner — */
#fq-banner {
  background: var(--cream);
  padding: 8.5rem 2rem 3rem;
  text-align: center;
}

/* — Intro — */
#fq-intro {
  background: var(--cream);
  padding: 5.5rem 3.5rem 0;
  text-align: center;
}

.fq-intro-inner {
  max-width: 680px;
  margin: 0 auto;
}

.fq-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.9;
}

/* — FAQ Accordion — */
#fq-accordion {
  background: var(--cream);
  padding: 5rem 3.5rem 8rem;
}

.fq-accordion-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
  align-items: start;
}

.fq-category {
  margin-bottom: 4rem;
}

.fq-category-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fq-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.35), transparent);
}

.fq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.fq-item:first-of-type {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.fq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.fq-question-text {
  font-family: var(--font-sans);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.02em;
  line-height: 1.5;
  transition: color 0.25s;
}

.fq-item.open .fq-question-text {
  color: var(--gold-dark);
}

.fq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  transition: background 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.fq-item.open .fq-icon {
  background: var(--gold);
  color: var(--cream);
  transform: rotate(45deg);
}

.fq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fq-answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.95;
}

.fq-item.open .fq-answer-inner {
  padding-bottom: 1.5rem;
}

.fq-answer-inner a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(166, 124, 46, 0.35);
  transition: color 0.2s;
}

.fq-answer-inner a:hover {
  color: var(--gold);
}

.fq-item.open .fq-answer {
  grid-template-rows: 1fr;
}

/* Still have questions */
#fq-still {
  background: var(--cream-alt);
  padding: 6rem 3.5rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#fq-still::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.fq-still-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.fq-still-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.fq-still-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.95;
  margin-bottom: 2.5rem;
}

/* — FAQ Responsive — */
@media (max-width: 1024px) {
  #fq-intro     { padding: 4rem 2rem 0; }
  #fq-accordion { padding: 4.5rem 2rem 7rem; }
  #fq-still     { padding: 5rem 2rem 6rem; }
  .fq-accordion-inner { gap: 0 3rem; }
}

@media (max-width: 768px) {
  #fq-banner    { padding: 7rem 1.5rem 2.5rem; }
  #fq-intro     { padding: 3.5rem 1.5rem 0; }
  #fq-accordion { padding: 4rem 1.5rem 5.5rem; }
  #fq-still     { padding: 4.5rem 1.5rem 5.5rem; }
  .fq-accordion-inner { grid-template-columns: 1fr; gap: 0; }

  .fq-question  { padding: 1.25rem 0; }
}

/* ================================================================
   CONTACT PAGE  (ct-)
   ================================================================ */

#ct-banner {
  background: var(--cream);
  padding: 8.5rem 2rem 3rem;
  text-align: center;
}

/* ── Intro ── */
#ct-intro {
  background: var(--cream);
  padding: 5.5rem 2rem 0;
  text-align: center;
}

.ct-intro-inner { max-width: 640px; margin: 0 auto; }

.ct-intro-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.85;
}

/* ── Channel cards ── */
#ct-channels {
  background: var(--cream);
  padding: 5rem 2rem 7.5rem;
}

.ct-channels-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.ct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ct-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 2rem 3rem;
  background: var(--cream-alt);
  border: 1px solid rgba(201,168,76,0.18);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

/* gold line grows up from the bottom on hover */
.ct-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.ct-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(59,42,26,0.1);
}

.ct-card:hover::before { transform: scaleX(1); }

.ct-card-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
  font-size: 1.6rem;
  color: var(--gold);
  transition: border-color 0.35s, background 0.35s;
}

.ct-card:hover .ct-card-icon {
  border-color: rgba(201,168,76,0.7);
  background: rgba(201,168,76,0.09);
}

.ct-card-platform {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.ct-card-handle {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  word-break: break-word;
  transition: color 0.35s;
}

.ct-card:hover .ct-card-handle { color: var(--brown); }

.ct-card-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--brown-muted);
  line-height: 1.85;
}

.ct-card-cta {
  margin-top: auto;
  padding-top: 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: 0.45rem;
  transition: color 0.35s;
}

.ct-card:hover .ct-card-cta { color: var(--gold); }

.ct-card-cta i { transition: transform 0.3s ease; }
.ct-card:hover .ct-card-cta i { transform: translateX(4px); }

/* ── Response note ── */
#ct-note {
  background: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.ct-note-inner {
  position: relative; z-index: 1;
  max-width: 580px; margin: 0 auto;
}

/* ── Contact Responsive ── */
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  #ct-banner   { padding: 7rem 1.5rem 2.5rem; }
  #ct-intro    { padding: 4rem 1.5rem 0; }
  #ct-channels { padding: 4rem 1.5rem 5.5rem; }
  #ct-note     { padding: 4rem 1.5rem 5rem; }
  .ct-grid     { grid-template-columns: 1fr; }
}

/* ================================================================
   PORTFOLIO PREVIEW — Cinematic Video Carousel
   ================================================================ */

/* ---- Section shell ---- */
#portfolio-preview {
  background: var(--cream-alt);
  padding: 8rem 2rem 9rem;
  position: relative;
  overflow: hidden;
}

.pp-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Heading ---- */
.pp-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 1.25rem;
}

.pp-heading em {
  font-style: italic;
  color: var(--gold);
}

/* ---- Intro text ---- */
.pp-intro {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--brown-muted);
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 2.1;
  max-width: 460px;
  margin: 0 auto 4.5rem;
}

/* ---- Carousel outer (arrows + track) ---- */
.pp-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* ---- Navigation arrows ---- */
.pp-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  z-index: 10;
  position: relative;
}

.pp-arrow:hover {
  background: var(--gold);
  color: var(--charcoal-dark);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(201, 168, 76, 0.3);
}

/* ---- Track wrapper (clipping) ---- */
.pp-track-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(59, 42, 26, 0.2), 0 4px 20px rgba(59, 42, 26, 0.1);
  min-width: 0;
}

/* ---- Track — flex row, slides in line ---- */
.pp-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

/* ---- Individual slide ---- */
.pp-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--charcoal-dark);
  pointer-events: auto;
  cursor: default;
}

/* ---- Video wrapper — fills the entire slide ---- */
.pp-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--charcoal-dark);
}

.pp-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Sound toggle button ---- */
.pp-sound-btn {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  font-size: 0.7rem;
  z-index: 6;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pp-sound-btn:hover {
  background: rgba(201, 168, 76, 0.72);
  border-color: var(--gold);
}

.pp-slide.sound-on .pp-sound-btn {
  background: rgba(201, 168, 76, 0.65);
  border-color: var(--gold);
  color: #fff;
}

/* ---- Dot navigation ---- */
.pp-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 2.75rem;
}

.pp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(59, 42, 26, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  padding: 0;
}

.pp-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

.pp-dot:hover:not(.active) {
  background: rgba(201, 168, 76, 0.45);
  transform: scale(1.25);
}

/* ---- Bottom CTA ---- */
.pp-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .pp-carousel-outer { gap: 1rem; }
}

@media (max-width: 640px) {
  #portfolio-preview { padding: 6rem 1rem 7rem; }
  .pp-carousel-outer { gap: 0.75rem; }
  .pp-arrow          { width: 38px; height: 38px; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .pp-arrow { width: 34px; height: 34px; font-size: 0.65rem; }
}

/* Override desktop page-light logo height for mobile — must come last to win the cascade */
@media (max-width: 768px) {
  #navbar.page-light .navbar-logo-img,
  #navbar.page-light.scrolled .navbar-logo-img { height: 90px; }
}
