/*
Theme Name:  Digital Foto Design – Premium Wedding
Theme URI:   https://www.digitalfotodesign.de
Author:      Marko Lorenz
Author URI:  https://www.digitalfotodesign.de
Description: Ultra-premium WordPress wedding photography theme. Full-screen hero with parallax, cinematic gallery layouts, animated reveals, floating petal effects, elegant typography. Built for Marko Lorenz – Hochzeitsfotograf Erzgebirge.
Version:     2.0.0
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 8.1
License:     Private – All Rights Reserved
Text Domain: dfd-premium
Tags:        photography, wedding, portfolio, fullscreen, parallax, animations, elegant
*/

/* ═══════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES — Premium Design System
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Palette — champagne, ivory, warm gold */
  --ivory:        #fdfaf6;
  --ivory-2:      #f8f3ec;
  --ivory-3:      #f0e9df;
  --champagne:    #e8d5b7;
  --gold:         #c9a96e;
  --gold-deep:    #a8863e;
  --gold-light:   #e8cc99;
  --blush:        #e8c4b8;
  --blush-soft:   #f5ede9;
  --sage:         #8a9b8e;
  --charcoal:     #1c1a18;
  --charcoal-2:   #2d2a25;
  --charcoal-3:   #3d3930;
  --warm-grey:    #7a756e;
  --light-grey:   #d4cfc8;
  --border:       rgba(201,169,110,0.2);
  --border-soft:  rgba(201,169,110,0.1);
  --white:        #ffffff;

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;
  --font-script:  'Great Vibes', cursive;

  /* Sizes */
  --nav-h:        90px;
  --max-w:        1520px;
  --section-pad:  140px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-fast:       0.2s;
  --t-med:        0.45s;
  --t-slow:       0.75s;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--ivory);
}

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--gold-deep); }

ul, ol { list-style: none; }

::selection { background: var(--champagne); color: var(--charcoal); }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY SCALE
   ═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 7rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; font-weight: 400; }

.script-heading {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--gold);
  line-height: 1.3;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 80px; }
.section { padding: var(--section-pad) 0; }
.section-sm { padding: 80px 0; }
.text-center { text-align: center; }
.bg-ivory   { background: var(--ivory); }
.bg-ivory2  { background: var(--ivory-2); }
.bg-ivory3  { background: var(--ivory-3); }
.bg-charcoal { background: var(--charcoal); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-110%) skewX(-10deg);
  transition: transform var(--t-med) var(--ease);
}
.btn:hover::after { transform: translateX(110%) skewX(-10deg); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 18px 52px;
}
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 17px 52px;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 17px 52px;
}
.btn-outline-white:hover { background: var(--white); color: var(--charcoal); }

.btn-text {
  color: var(--charcoal);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: none;
  border: none;
}
.btn-text .arrow { transition: transform var(--t-fast) var(--ease); }
.btn-text:hover .arrow { transform: translateX(6px); }
.btn-text:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="down"]  { transform: translateY(-48px); }
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — premium glassmorphism
   ═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t-med) var(--ease),
              height var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
#site-header.at-top {
  background: transparent;
}
#site-header.scrolled {
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  height: 70px;
  box-shadow: 0 1px 0 var(--border), 0 8px 40px rgba(44,42,38,0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 48px;
  width: auto;
  transition: filter var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
.at-top .site-logo img { filter: brightness(10); }
.scrolled .site-logo img { filter: none; height: 38px; }
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  transition: color var(--t-med) var(--ease);
}
.scrolled .logo-tagline { color: var(--warm-grey); }

/* Desktop menu */
#main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
#main-nav > li > a {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast) var(--ease);
  padding: 4px 0;
  position: relative;
}
#main-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--t-med) var(--ease);
}
#main-nav > li > a:hover::after, #main-nav > li > a.active::after { right: 0; }
#main-nav > li > a:hover { color: var(--white); }
.scrolled #main-nav > li > a { color: var(--charcoal-3); }
.scrolled #main-nav > li > a:hover { color: var(--gold); }
#main-nav li.cta-nav a {
  padding: 12px 32px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
#main-nav li.cta-nav a::after { display: none; }
#main-nav li.cta-nav a:hover { background: var(--white); color: var(--charcoal); }
.scrolled #main-nav li.cta-nav a { border-color: var(--gold); color: var(--gold); }
.scrolled #main-nav li.cta-nav a:hover { background: var(--gold); color: var(--white); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  width: 32px; height: 32px;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}
.scrolled .nav-burger span { background: var(--charcoal); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.05em;
  transition: color var(--t-fast) var(--ease);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 28px; right: 32px;
  color: var(--ivory);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Full-screen cinematic
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

/* Slideshow */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 8s linear;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,26,24,0.55) 0%,
    rgba(28,26,24,0.25) 50%,
    rgba(28,26,24,0.6) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 40px;
  max-width: 900px;
}
.hero-eyebrow {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  animation: heroFadeUp 1.2s var(--ease) 0.2s both;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  margin-bottom: 12px;
  animation: heroFadeUp 1.2s var(--ease) 0.5s both;
  letter-spacing: -0.02em;
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold-light);
  animation: heroFadeUp 1.2s var(--ease) 0.7s both;
  display: block;
  margin-bottom: 40px;
}
.hero-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 56px;
  animation: heroFadeUp 1.2s var(--ease) 0.9s both;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1.2s var(--ease) 1.1s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeUp 1s var(--ease) 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.15); }
}
.scroll-text {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 8px;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Petals canvas */
#petals-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   INTRO STRIP — 3 columns
   ═══════════════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--ivory-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: var(--border);
}
.intro-strip-item {
  padding: 56px 48px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.intro-strip-item:last-child { border-right: none; }
.intro-icon-wrap {
  width: 64px; height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: border-color var(--t-med), transform var(--t-med) var(--ease);
}
.intro-strip-item:hover .intro-icon-wrap {
  border-color: var(--gold);
  transform: rotate(45deg);
}
.intro-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--t-med) var(--ease);
}
.intro-strip-item:hover .intro-icon { transform: rotate(-45deg); }
.intro-strip-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.intro-strip-item p {
  font-size: 0.84rem;
  color: var(--warm-grey);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED GALLERY — Bento grid
   ═══════════════════════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 280px);
  gap: 6px;
  padding: 0 6px;
}
.bento-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.bento-item:hover img { transform: scale(1.06); }
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.bento-item:hover .bento-overlay { opacity: 1; }
.bento-label {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
/* Grid placement */
.bento-1  { grid-column: 1 / 6;  grid-row: 1 / 3; }
.bento-2  { grid-column: 6 / 9;  grid-row: 1 / 2; }
.bento-3  { grid-column: 9 / 13; grid-row: 1 / 2; }
.bento-4  { grid-column: 6 / 10; grid-row: 2 / 3; }
.bento-5  { grid-column: 10 / 13; grid-row: 2 / 3; }
.bento-6  { grid-column: 1 / 5;  grid-row: 3 / 4; }
.bento-7  { grid-column: 5 / 9;  grid-row: 3 / 4; }
.bento-8  { grid-column: 9 / 13; grid-row: 3 / 4; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT — Split layout with parallax
   ═══════════════════════════════════════════════════════════════ */
.about-section { background: var(--ivory); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
  align-items: stretch;
}
.about-visual {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.about-visual-inner {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ivory));
  pointer-events: none;
}
.about-visual-frame {
  position: absolute;
  top: 40px; left: 40px;
  right: -20px; bottom: -20px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 0;
}
.about-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 36px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 12px 48px rgba(44,42,38,0.1);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about-badge-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 6px;
  display: block;
}
.about-content {
  padding: 100px 80px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .eyebrow { margin-bottom: 24px; }
.about-content h2 { margin-bottom: 8px; }
.about-script { font-family: var(--font-script); font-size: 2.5rem; color: var(--gold); margin-bottom: 36px; display: block; }
.about-content p { font-size: 0.95rem; color: var(--warm-grey); line-height: 1.95; margin-bottom: 24px; }
.about-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 16px 0 16px 28px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal-2);
}
.signature {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-deep);
  display: block;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════════════
   QUOTE DIVIDER — full-screen atmospheric
   ═══════════════════════════════════════════════════════════════ */
.quote-divider {
  position: relative;
  padding: 140px 80px;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal-2);
}
.quote-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  will-change: transform;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--charcoal-2) 0%, transparent 40%, transparent 60%, var(--charcoal-2) 100%);
}
.quote-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.55;
  margin-bottom: 32px;
}
.quote-author {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES — Cards with hover depth
   ═══════════════════════════════════════════════════════════════ */
.services-section { background: var(--ivory-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 72px;
}
.service-card {
  background: var(--ivory);
  padding: 56px 44px 48px;
  position: relative;
  overflow: hidden;
  transition: background var(--t-med) var(--ease), transform var(--t-slow) var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--champagne));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.service-card:hover { background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }
.service-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 28px;
  display: block;
  transition: color var(--t-med) var(--ease);
}
.service-card:hover .service-num { color: var(--gold); }
.service-card h3 { font-size: 1.25rem; font-weight: 400; margin-bottom: 16px; }
.service-card p { font-size: 0.88rem; color: var(--warm-grey); line-height: 1.85; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.service-card:hover .service-link { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO CAROUSEL — horizontal scroll
   ═══════════════════════════════════════════════════════════════ */
.portfolio-section { background: var(--charcoal); overflow: hidden; }
.portfolio-section .eyebrow { color: var(--gold); }
.portfolio-section h2 { color: var(--ivory); }
.portfolio-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  margin-top: 64px;
}
.portfolio-track-wrap:active { cursor: grabbing; }
.portfolio-track {
  display: flex;
  gap: 6px;
  transition: transform 0.4s var(--ease);
}
.portfolio-slide {
  flex-shrink: 0;
  width: 380px;
  height: 520px;
  overflow: hidden;
  position: relative;
}
.portfolio-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.portfolio-slide:hover img { transform: scale(1.06); }
.portfolio-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.85) 0%, transparent 100%);
  padding: 40px 28px 28px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.portfolio-slide:hover .portfolio-caption { opacity: 1; transform: none; }
.portfolio-caption span {
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS — elegant cards
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--ivory-3); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 72px;
}
.testimonial-card {
  background: var(--white);
  padding: 44px;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), transform var(--t-slow) var(--ease);
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(201,169,110,0.12);
  transform: translateY(-4px);
}
.testi-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.2;
  display: block;
  margin-bottom: 12px;
}
.testi-text {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  font-style: italic;
  color: var(--charcoal-2);
  line-height: 1.85;
  margin-bottom: 28px;
}
.testi-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; display: block; margin-bottom: 12px; }
.testi-name {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.contact-left {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.contact-left-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.contact-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,26,24,0.7) 0%, rgba(28,26,24,0.4) 100%);
}
.contact-left-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.contact-left-content h2 { color: var(--ivory); margin-bottom: 8px; }
.contact-left-content .script-heading { font-size: 2.5rem; display: block; margin-bottom: 36px; }
.contact-info-list { margin-top: 40px; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.contact-info-list li:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.ci-ico { color: var(--gold); font-size: 0.9rem; width: 18px; flex-shrink: 0; margin-top: 3px; }
.ci-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.contact-info-list a { color: rgba(255,255,255,0.85); transition: color var(--t-fast); }
.contact-info-list a:hover { color: var(--gold); }

.contact-right {
  background: var(--ivory-2);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 48px;
  color: var(--charcoal);
}

/* Form styles */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 10px;
  font-weight: 400;
}
.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--light-grey);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--border);
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201,169,110,0.08);
  background: var(--white);
}
.form-group textarea { height: 140px; resize: none; }
.wpcf7-submit, .btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background var(--t-med) var(--ease);
  border-radius: 0;
  margin-top: 8px;
}
.wpcf7-submit:hover, .btn-submit:hover { background: var(--gold-deep); }

/* ═══════════════════════════════════════════════════════════════
   FOTOBOX SECTION
   ═══════════════════════════════════════════════════════════════ */
.fotobox-section {
  background: var(--ivory);
  padding: var(--section-pad) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.fotobox-visual {
  position: relative;
}
.fotobox-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.fotobox-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--ivory);
}
.fotobox-content p { font-size: 0.95rem; color: var(--warm-grey); line-height: 1.95; margin-bottom: 24px; }
.fotobox-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0 44px;
}
.fotobox-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--charcoal-3);
}
.fotobox-feat::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM STRIP
   ═══════════════════════════════════════════════════════════════ */
.instagram-section { background: var(--ivory-3); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 60px;
}
.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.ig-item:hover img { transform: scale(1.08); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  color: var(--white);
  font-size: 1.4rem;
}
.ig-item:hover .ig-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 80px 80px 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  filter: brightness(10) opacity(0.85);
  display: block;
  margin-bottom: 20px;
}
.footer-about {
  font-size: 0.84rem;
  line-height: 1.95;
  max-width: 280px;
  color: rgba(255,255,255,0.45);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: all var(--t-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.1); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.28); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lb-overlay {
  position: fixed; inset: 0;
  background: rgba(18,16,14,0.95);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
  backdrop-filter: blur(8px);
}
.lb-overlay.open { opacity: 1; pointer-events: all; }
.lb-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform var(--t-slow) var(--ease);
  box-shadow: 0 48px 120px rgba(0,0,0,0.7);
}
.lb-overlay.open .lb-img { transform: scale(1); }
.lb-close {
  position: absolute; top: 28px; right: 36px;
  color: rgba(255,255,255,0.6); font-size: 1.6rem;
  cursor: pointer; background: none; border: none;
  transition: color var(--t-fast); line-height: 1;
}
.lb-close:hover { color: var(--gold); }
.lb-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.5); font-size: 1.8rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 18px 22px; cursor: pointer; line-height: 1;
  transition: all var(--t-fast); border-radius: 0;
}
.lb-nav-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
.lb-counter {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE LAYOUTS
   ═══════════════════════════════════════════════════════════════ */
.page-banner {
  background: var(--charcoal);
  padding: 120px 80px 80px;
  margin-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 { color: var(--ivory); font-size: clamp(2rem, 5vw, 4rem); }
.page-banner .breadcrumb { margin-top: 16px; font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }
.page-banner .breadcrumb a { color: var(--gold); }
.entry-wrap { padding: 80px; max-width: 960px; margin: 0 auto; }
.entry-wrap h2, .entry-wrap h3 { margin: 2.5rem 0 1rem; }
.entry-wrap p { color: var(--warm-grey); margin-bottom: 1.4rem; font-size: 0.95rem; line-height: 1.9; }
.entry-wrap a { color: var(--gold); border-bottom: 1px solid var(--border); }
.entry-wrap a:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ═══════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 80px;
}
.blog-card { overflow: hidden; transition: transform var(--t-slow) var(--ease); }
.blog-card:hover { transform: translateY(-6px); }
.blog-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 28px 0 0; }
.blog-cat { font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); font-weight: 400; display: block; margin-bottom: 12px; }
.blog-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 14px; line-height: 1.35; }
.blog-title a { color: var(--charcoal); }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: 0.85rem; color: var(--warm-grey); line-height: 1.8; margin-bottom: 20px; }
.blog-meta { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--light-grey); }

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --section-pad: 100px; }
  .container, .container-narrow { padding: 0 48px; }
  .about-content { padding: 80px 60px; }
  .contact-left-content, .contact-right { padding: 60px; }
  #site-footer { padding: 64px 48px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bento-grid { grid-template-rows: repeat(3, 220px); }
  .portfolio-slide { width: 320px; height: 440px; }
  .fotobox-section { padding: var(--section-pad) 48px; }
  .blog-grid { padding: 60px 48px; }
  .page-banner { padding: 120px 48px 60px; }
  .entry-wrap { padding: 60px 48px; }
}

@media (max-width: 1024px) {
  .nav-wrap { padding: 0 32px; }
  #main-nav { display: none !important; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-title { font-size: clamp(3rem, 10vw, 6rem); }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 500px; }
  .about-visual-overlay { background: linear-gradient(to top, var(--ivory) 0%, transparent 50%); }
  .about-content { padding: 60px 32px; }

  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .bento-1 { grid-column: 1 / 4; grid-row: 1 / 3; }
  .bento-2 { grid-column: 4 / 7; grid-row: 1 / 2; }
  .bento-3 { grid-column: 4 / 7; grid-row: 2 / 3; }
  .bento-4 { grid-column: 1 / 4; grid-row: 3 / 4; }
  .bento-5 { grid-column: 4 / 7; grid-row: 3 / 4; }
  .bento-6 { grid-column: 1 / 3; grid-row: 4 / 5; }
  .bento-7 { grid-column: 3 / 5; grid-row: 4 / 5; }
  .bento-8 { grid-column: 5 / 7; grid-row: 4 / 5; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { min-height: 400px; }
  .contact-left-content { padding: 60px 32px; }
  .contact-right { padding: 60px 32px; }
  .fotobox-section { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; padding: 60px 32px; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 640px) {
  :root { --section-pad: 72px; --nav-h: 70px; }
  .container, .container-narrow { padding: 0 24px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-1,.bento-2,.bento-3,.bento-4,.bento-5,.bento-6,.bento-7,.bento-8
  { grid-column: span 1; grid-row: span 1; height: 200px; }
  .about-badge { bottom: 24px; right: 24px; padding: 20px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  #site-footer { padding: 48px 24px 32px; }
  .page-banner { padding: 100px 24px 48px; }
  .entry-wrap { padding: 40px 24px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-left-content, .contact-right { padding: 48px 24px; }
  .fotobox-section { padding: 72px 24px; }
  .quote-divider { padding: 100px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
