/* ============================================================
   SLATER PRODUCTIONS — style.css
   Art direction: warm/editorial, moody luxury photography
   Palette: deep charcoal + warm cream + gold accent
   Fonts: Cormorant Garamond (display) + Work Sans (body)
   ============================================================ */

/* ---- TOKENS ---- */
:root,
[data-theme='light'] {
  --color-bg: #f5f2ed;
  --color-surface: #f9f7f3;
  --color-surface-2: #fdfcfa;
  --color-surface-offset: #ede9e2;
  --color-border: #d8d2c8;
  --color-divider: #e2ddd6;
  --color-text: #1e1a14;
  --color-text-muted: #6b6558;
  --color-text-faint: #b5afa6;
  --color-text-inverse: #f5f2ed;
  --color-primary: #c49a3c;
  --color-primary-hover: #a67e28;
  --color-primary-active: #845f12;
  --color-gold: #c49a3c;
  --color-gold-light: #e8d5a0;
  --color-dark: #1e1a14;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(30,26,20,0.08);
  --shadow-md: 0 4px 16px rgba(30,26,20,0.10);
  --shadow-lg: 0 16px 48px rgba(30,26,20,0.14);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.28vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1280px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme='dark'] {
  --color-bg: #141210;
  --color-surface: #1a1814;
  --color-surface-2: #201e1a;
  --color-surface-offset: #1e1c18;
  --color-border: #302c26;
  --color-divider: #252119;
  --color-text: #e8e2d8;
  --color-text-muted: #8a8278;
  --color-text-faint: #4a4640;
  --color-text-inverse: #141210;
  --color-primary: #d4aa52;
  --color-primary-hover: #e0bc6a;
  --color-gold: #d4aa52;
  --color-gold-light: #4a3d1e;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #141210;
    --color-surface: #1a1814;
    --color-surface-2: #201e1a;
    --color-surface-offset: #1e1c18;
    --color-border: #302c26;
    --color-divider: #252119;
    --color-text: #e8e2d8;
    --color-text-muted: #8a8278;
    --color-text-faint: #4a4640;
    --color-text-inverse: #141210;
    --color-primary: #d4aa52;
    --color-primary-hover: #e0bc6a;
    --color-gold: #d4aa52;
    --color-gold-light: #4a3d1e;
  }
}

/* ---- BASE RESET ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; max-width: 68ch; }
::selection { background: color-mix(in oklab, var(--color-primary) 25%, transparent); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
button { cursor: pointer; background: none; border: none; }
a, button, [role='button'], input, textarea, select {
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ---- LAYOUT ---- */
.container { width: min(var(--content-default), 100% - var(--space-8)); margin-inline: auto; }
.container--wide { width: min(var(--content-wide), 100% - var(--space-8)); margin-inline: auto; }
.container--narrow { width: min(var(--content-narrow), 100% - var(--space-8)); margin-inline: auto; }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition), transform var(--transition-slow);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  max-width: var(--content-wide);
  margin-inline: auto;
}
.logo { display: flex; align-items: center; text-decoration: none; color: var(--color-text); }
.logo-svg { width: 160px; height: 36px; }
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
}
.nav-link:hover { color: var(--color-text); }
.nav-cta {
  padding: var(--space-2) var(--space-6);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-weight: 500;
}
.nav-cta:hover { background: var(--color-primary); color: var(--color-bg); }
.header-controls { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }
.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}
.mobile-menu-btn:hover { background: var(--color-surface-offset); }
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-4) var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-divider);
  gap: var(--space-1);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--color-text); }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .logo-svg { width: 130px; height: 30px; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: var(--color-bg); border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px color-mix(in oklab, var(--color-primary) 40%, transparent); }
.btn-ghost { background: rgba(20,18,14,0.55); color: #f5f2ed; border-color: rgba(255,255,255,0.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.9); }
.btn-outline-light { background: transparent; color: #f5f2ed; border-color: rgba(245,242,237,0.5); }
.btn-outline-light:hover { background: rgba(245,242,237,0.12); border-color: rgba(245,242,237,0.8); }
.btn-full { width: 100%; }

/* ---- SECTION HEADERS ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-8);
}
.section-title em { font-style: italic; color: var(--color-primary); }
.section-header { margin-bottom: var(--space-12); }
.section-intro { font-size: var(--text-base); color: var(--color-text-muted); max-width: 52ch; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(14,12,8,0.35) 0%,
    rgba(14,12,8,0.55) 50%,
    rgba(14,12,8,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-8);
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: #f5f2ed;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.hero-heading em { font-style: italic; color: var(--color-gold); }
.hero-sub {
  font-size: var(--text-base);
  color: rgba(245,242,237,0.8);
  margin-bottom: var(--space-10);
  line-height: 1.7;
  max-width: none;
}
.hero-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,242,237,0.5);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}
.intro-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-8);
}
.intro-stat { text-align: center; display: flex; flex-direction: column; gap: var(--space-1); }
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.intro-divider {
  width: 1px;
  height: 40px;
  background: var(--color-divider);
}
@media (max-width: 500px) {
  .intro-divider { display: none; }
  .intro-inner { gap: var(--space-8); }
}

/* ---- GALLERY / WORK ---- */
.work-section { background: var(--color-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
  aspect-ratio: 3/4;
}
.gallery-item--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.gallery-item--wide {
  grid-column: 2 / 4;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6) var(--space-5) var(--space-4);
  background: linear-gradient(to top, rgba(14,12,8,0.8) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 400;
  color: #f5f2ed;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9; }
  .gallery-item--wide { grid-column: 1 / 3; aspect-ratio: 16/9; }
  .gallery-item { aspect-ratio: 3/4; }
  .gallery-caption { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large, .gallery-item--wide { grid-column: auto; }
}

/* ---- SESSIONS ---- */
.sessions-section { background: var(--color-surface); }
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}
.session-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.session-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.session-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
}
.session-icon svg { width: 100%; height: 100%; }
.session-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.session-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  max-width: none;
}
.session-price {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.session-price strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
}

/* ---- MINI CTA BLOCK ---- */
.mini-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  background: var(--color-surface-2);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
}
.mini-cta-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.mini-cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.mini-cta-text p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 52ch; }
.mini-cta-price-badge {
  flex-shrink: 0;
  text-align: center;
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.badge-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-bg);
  line-height: 1;
}
.badge-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--color-bg) 80%, transparent);
}
@media (max-width: 640px) {
  .mini-cta-block { flex-direction: column; padding: var(--space-8); align-items: flex-start; }
  .mini-cta-price-badge { align-self: flex-start; }
}

/* ---- ABOUT ---- */
.about-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.about-image-wrap {
  position: absolute;
  inset: 0;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,12,8,0.88) 0%,
    rgba(14,12,8,0.75) 50%,
    rgba(14,12,8,0.3) 100%
  );
}
.about-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) clamp(var(--space-8), 8vw, var(--space-24));
}
.about-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: #f5f2ed;
  margin-bottom: var(--space-6);
}
.about-text {
  font-size: var(--text-base);
  color: rgba(245,242,237,0.82);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: none;
}

/* ---- CONTACT / BOOKING ---- */
.contact-section { background: var(--color-bg); }
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  margin-bottom: var(--space-8);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-bottom: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-primary) 20%, transparent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-faint); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8278' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-group { margin-bottom: 0; }
.contact-form .form-group:last-of-type { margin-bottom: var(--space-6); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.contact-alt { text-align: center; }
.contact-alt p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); }
.contact-links { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
}
.contact-link:hover { background: var(--color-primary); color: var(--color-bg); }

/* ---- FOOTER ---- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: var(--space-8);
  align-items: start;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: 0 var(--space-8) var(--space-10);
}
.footer-logo { width: 140px; height: 32px; margin-bottom: var(--space-3); }
.footer-tagline { font-size: var(--text-xs); color: var(--color-text-faint); letter-spacing: 0.08em; }
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-service-area {}
.footer-label { font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: var(--space-2); }
.footer-service-area p:last-child { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }
.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding: var(--space-5) var(--space-8);
  text-align: center;
  max-width: var(--content-wide);
  margin-inline: auto;
}
.footer-bottom p { font-size: var(--text-xs); color: var(--color-text-faint); max-width: none; }
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ---- APPLE-STYLE SCROLL ANIMATIONS ---- */

/* Hero content fades in on load */
.hero-eyebrow { animation: heroFadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero-heading  { animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.hero-sub      { animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.4s both; }
.hero-actions  { animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.55s both; }
.hero-scroll-hint { animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.9s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered base */
.fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.scale-up {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-up.visible { opacity: 1; transform: scale(1) translateY(0); }

/* Gallery items get extra smooth image reveal */
.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease;
}

/* Smooth gold hover glow on team cards */
.team-card:hover .team-photo-wrap {
  box-shadow: 0 24px 60px rgba(196, 154, 60, 0.18);
  transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Section number parallax feel */
.section-label-number {
  transition: color 0.4s ease;
}
.page-section:hover .section-label-number {
  color: var(--color-primary);
  text-shadow: 0 0 40px color-mix(in oklab, var(--color-primary) 30%, transparent);
}

/* ---- GALLERY TABS ---- */
.gallery-tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.gallery-tab {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gallery-tab.active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-bg); }

/* ---- MASONRY GALLERY ---- */
.gallery-masonry {
  columns: 3;
  column-gap: var(--space-4);
}
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: unset;
  background: var(--color-surface-offset);
}
.gallery-masonry .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-masonry .gallery-item:hover img { transform: scale(1.04); }
.gallery-masonry .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-5) var(--space-4) var(--space-3);
  background: linear-gradient(to top, rgba(14,12,8,0.75) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: #f5f2ed;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-masonry .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-masonry .gallery-item.hidden { display: none; }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 500px) { .gallery-masonry { columns: 1; } }

/* ---- FOOTER SOCIAL ---- */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
}
.footer-social-link:hover { color: var(--color-primary); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(var(--space-24), 14vw, var(--space-32));
  padding-top: calc(clamp(var(--space-24), 14vw, var(--space-32)) + 72px);
  background: var(--color-bg);
}
.church-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.church-hero .hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.church-hero .hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38);
}
.church-hero .hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
.page-hero-content {
  max-width: 720px;
  padding-inline: var(--space-6);
}
.portfolio-cta {
  text-align: center;
  padding-block: clamp(var(--space-12), 5vw, var(--space-20));
  border-top: 1px solid var(--color-divider);
  margin-top: var(--space-12);
}
.portfolio-cta-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

/* ---- CHURCH PAGE ---- */
.church-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--space-6), 3vw, var(--space-10));
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}
.church-service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.church-service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(196,154,60,0.1);
}
.church-service-icon {
  color: var(--color-primary);
}
.church-service-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
}
.church-service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: none;
}
.church-gallery-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-8);
}
.text-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.church-cta-wrap {
  max-width: 600px;
}
@media (max-width: 640px) {
  .church-services-grid { grid-template-columns: 1fr; }
  .church-cta-wrap .btn { margin-left: 0 !important; margin-top: var(--space-3); display: block; text-align: center; }
}

/* ---- LOGO IMAGE ---- */
.logo-img {
  height: 48px;
  width: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  display: block;
}
.footer-logo-img {
  height: 56px;
  width: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  margin-bottom: var(--space-3);
  display: block;
}

/* ============================================================
   THREE-SECTION LAYOUT
   01 About  |  02 Portfolio  |  03 Booking
   ============================================================ */

/* ---- PAGE SECTION wrapper ---- */
.page-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.about-page    { background: var(--color-bg); }
.portfolio-page { background: var(--color-surface); }
.booking-page  { background: var(--color-bg); }

/* ---- SECTION LABEL BAR (01 / 02 / 03) ---- */
.section-label-bar {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
  padding-inline: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}
.section-label-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.section-label-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.section-label-line {
  flex: 1;
  height: 1px;
  background: var(--color-divider);
}

/* ---- ABOUT SECTION ---- */
.about-intro {
  max-width: 680px;
  margin-bottom: clamp(var(--space-12), 5vw, var(--space-20));
}
.about-intro-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.about-intro-heading em { font-style: italic; color: var(--color-primary); }
.about-intro-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 58ch;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  margin-bottom: clamp(var(--space-16), 6vw, var(--space-24));
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.team-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-surface-offset);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover .team-photo { transform: scale(1.03); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,12,8,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--color-text-faint);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-8);
}
.team-photo-placeholder p { max-width: none; color: var(--color-text-faint); }
.team-info {}
.team-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.team-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.team-bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 42ch;
}

/* Stats strip */
.about-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.about-stats .stat-number {
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  text-align: left;
}
.about-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-divider);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-bio { max-width: none; }
  .about-stats { gap: var(--space-8); }
  .about-stat-divider { display: none; }
}

/* ---- PORTFOLIO SECTION ---- */
.portfolio-intro {
  margin-bottom: var(--space-8);
}
.portfolio-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}
.portfolio-heading em { font-style: italic; color: var(--color-primary); }

/* ---- BOOKING SECTION ---- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: start;
}
.booking-left {}
.booking-right {}
.booking-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}
.booking-heading em { font-style: italic; color: var(--color-primary); }
.booking-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-10);
  max-width: 42ch;
}

/* Session list */
.session-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-divider);
  margin-bottom: var(--space-8);
}
.session-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.session-list-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text);
}
.session-list-price {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Locations + social under session list */
.booking-locations {
  margin-bottom: var(--space-8);
}
.booking-locations-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-2);
}
.booking-locations p:last-child {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.booking-social {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Contact form inside booking */
.booking-right .contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-heading { font-size: var(--text-xl); }
}
