/* ============================================================
   FOTOPROMEDIA.PL — Premium Wedding Photography
   Leszek | Fotograf Ślubny Bydgoszcz
   Author: fotopromedia.pl | Version: 2.0
   ============================================================ */

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Great+Vibes&display=swap');

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Pastel Premium Palette */
  --cream:          #FDFAF7;
  --cream-dark:     #F5EDE3;
  --blush:          #E8C4B4;
  --blush-dark:     #D4A898;
  --rose:           #C9A49A;
  --rose-deep:      #B0847A;
  --taupe:          #D4B8A5;
  --gold:           #C4A882;
  --gold-light:     #DBC49A;
  --gold-dark:      #A88B65;
  --champagne:      #F0E0CC;
  --warm-white:     #FFFCF8;
  --text-dark:      #2D2420;
  --text-mid:       #5A4A44;
  --text-light:     #8A7B75;
  --text-muted:     #B0A09A;
  --border:         #E8D8CC;
  --shadow-soft:    rgba(180, 140, 120, 0.15);
  --shadow-mid:     rgba(180, 140, 120, 0.25);
  --shadow-strong:  rgba(100, 70, 60, 0.2);

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Cormorant Garamond', Georgia, serif;
  --font-ui:       'Jost', sans-serif;
  --font-script:   'Great Vibes', cursive;

  /* Spacing */
  --section-py:    100px;
  --section-py-sm: 60px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--blush); color: var(--text-dark); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ── LOADER ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rose-deep);
  letter-spacing: 0.08em;
}
.loader-script {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--gold);
}
.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--blush), var(--rose-deep), var(--gold));
  border-radius: 2px;
  animation: loaderProgress 1.8s var(--ease) forwards;
}
@keyframes loaderProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* ── CURSOR CUSTOM ── */
.custom-cursor {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose);
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}
.custom-cursor.expand {
  width: 40px;
  height: 40px;
  background: var(--blush);
  opacity: 0.7;
}
@media (hover: none) { .custom-cursor { display: none; } }

/* ── NAVBAR ── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
}
#mainNav.scrolled {
  background: rgba(253, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px var(--shadow-soft);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--rose-deep);
  margin-top: -2px;
}

.nav-menu { display: flex; align-items: center; gap: 0; }

.nav-link-item {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-link-item:hover,
.nav-link-item.active {
  color: var(--rose-deep);
}
.nav-link-item:hover::after,
.nav-link-item.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 220px;
  box-shadow: 0 12px 40px var(--shadow-mid);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: 8px 0;
}
.nav-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item-custom {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: all 0.25s var(--ease);
}
.dropdown-item-custom:hover {
  background: var(--cream-dark);
  color: var(--rose-deep);
  padding-left: 28px;
}

/* CTA Nav Button */
.nav-cta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  padding: 10px 24px;
  border-radius: 2px;
  margin-left: 12px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 15px rgba(176, 132, 122, 0.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--rose-deep), var(--text-mid));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(176, 132, 122, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.45s var(--ease);
  box-shadow: -20px 0 60px var(--shadow-mid);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 36, 32, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.mobile-nav-link:hover { color: var(--rose-deep); padding-left: 10px; }
.mobile-sub-link {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 8px 0 8px 16px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-sub-link:hover { color: var(--rose-deep); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #F5EDE3 0%,
    #EDD5C5 30%,
    #E8C4B4 60%,
    #D4A898 100%
  );
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #F0E0CC, transparent);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #C9A49A, transparent);
  bottom: -100px; left: -80px;
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #DBC49A, transparent);
  top: 30%; right: 20%;
  animation-delay: -6s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.97); }
}

/* Hero image placeholder area */
.hero-img-area {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}
.hero-img-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream-dark) 0%, transparent 40%);
  z-index: 1;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #DEC5B5 0%, #C9A49A 40%, #B8887A 100%);
  position: relative;
  overflow: hidden;
}
.hero-photo-placeholder::after {
  content: 'Twoje zdjęcie ślubne';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
}
.hero-photo-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rose-deep);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-deep);
}
.hero-title-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--gold-dark);
  display: block;
  line-height: 1.2;
  margin-top: 4px;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 450px;
  margin: 24px 0 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.hero-scroll span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── BUTTONS ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  box-shadow: 0 6px 20px rgba(176, 132, 122, 0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(176, 132, 122, 0.45);
}
.btn-primary-custom:hover::before { left: 100%; }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-dark);
  padding: 13px 32px;
  border: 1.5px solid var(--text-dark);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn-outline-custom:hover {
  background: var(--text-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 1.5px solid var(--rose);
  padding-bottom: 3px;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  gap: 14px;
}

/* ── SECTION UTILITIES ── */
.section-pad { padding: var(--section-py) 0; }
.section-pad-sm { padding: var(--section-py-sm) 0; }

.section-alt { background: var(--cream-dark); }
.section-dark {
  background: var(--text-dark);
  color: var(--cream);
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--rose-deep);
}
.section-title-light { color: var(--cream); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}
.section-subtitle-light { color: var(--champagne); }

.divider-ornament {
  text-align: center;
  margin: 20px 0;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.6;
  letter-spacing: 0.5em;
}

/* ── STATS BAR ── */
#stats-bar {
  background: var(--text-dark);
  padding: 50px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rose);
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  height: 80px;
  align-self: center;
}

/* ── ABOUT ── */
.about-img-wrap {
  position: relative;
}
.about-main-img {
  border-radius: 2px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(145deg, #DEC5B5, #C4A898);
  position: relative;
  overflow: hidden;
}
.about-main-img::after {
  content: 'Leszek';
  font-family: var(--font-script);
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-accent-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  border: 6px solid var(--cream);
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(145deg, #E8D0C0, #D4B8A5);
  box-shadow: 0 20px 60px var(--shadow-mid);
}
.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--rose-deep);
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(176, 132, 122, 0.4);
  z-index: 2;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.signature {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--rose-deep);
  line-height: 1;
  margin: 20px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-mid);
}
.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 36px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--rose-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px var(--shadow-mid);
  border-color: var(--blush);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose-deep);
  font-style: italic;
}

/* ── PORTFOLIO ── */
#portfolio { background: var(--text-dark); }

.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--text-muted);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: #3a2e2a;
}
.portfolio-item.wide { grid-column: span 2; aspect-ratio: 8/5; }
.portfolio-item.tall { grid-row: span 2; aspect-ratio: 4/10; }

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.portfolio-item:hover .portfolio-img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,36,32,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  font-style: italic;
}
.portfolio-overlay-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Portfolio placeholder */
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-script);
  font-size: 1.4rem;
}

/* ── PROCESS ── */
.process-timeline {
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rose), transparent);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}
.process-step:nth-child(even) { flex-direction: row-reverse; }
.process-step:nth-child(even) .process-content { text-align: right; }
.process-step-half { width: 50%; }

.process-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.process-dot {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rose);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 4px var(--blush);
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.process-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--champagne); }

.testimonial-card {
  background: var(--warm-white);
  padding: 48px 40px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 10px 40px var(--shadow-soft);
  height: 100%;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--blush);
  position: absolute;
  top: -20px;
  left: 24px;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.2rem;
  font-style: italic;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}
.testimonial-role {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Swiper customization */
.swiper-pagination-bullet {
  background: var(--rose) !important;
  opacity: 0.4 !important;
}
.swiper-pagination-bullet-active { opacity: 1 !important; }

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: flex;
  gap: 3px;
  overflow: hidden;
  margin: 60px 0;
}
.gallery-strip-item {
  flex: 1;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  min-width: 0;
  background: var(--blush);
  position: relative;
}
.gallery-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-strip-item:hover img { transform: scale(1.08); }
.gallery-strip-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
}

/* ── PACKAGES / PRICING ── */
.package-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
  height: 100%;
}
.package-card.featured {
  border-color: var(--rose);
  background: linear-gradient(145deg, var(--warm-white), var(--champagne));
  transform: scale(1.03);
  box-shadow: 0 20px 60px var(--shadow-mid);
}
.package-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}
.package-name {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.package-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.package-price-note {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}
.package-features {
  text-align: left;
  margin-bottom: 36px;
}
.package-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-mid);
}
.package-feature::before {
  content: '✓';
  color: var(--rose-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.package-feature.disabled { color: var(--text-muted); text-decoration: line-through; }
.package-feature.disabled::before { content: '–'; color: var(--border); }

/* ── CONTACT ── */
#contact { background: var(--cream-dark); }

.contact-form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 60px;
  box-shadow: 0 20px 60px var(--shadow-soft);
}

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-control-custom {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s var(--ease);
  outline: none;
}
.form-control-custom::placeholder { color: var(--text-muted); }
.form-control-custom:focus {
  border-color: var(--rose);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(201, 164, 154, 0.15);
}
textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.form-select-custom {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%238A7B75' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.3s var(--ease);
}
.form-select-custom:focus { border-color: var(--rose); outline: none; }

.form-message {
  padding: 16px 20px;
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: none;
}
.form-message.success {
  background: #D5F5E3;
  color: #1E8449;
  border: 1px solid #A9DFBF;
  display: block;
}
.form-message.error {
  background: #FADBD8;
  color: #C0392B;
  border: 1px solid #F5B7B1;
  display: block;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--rose-deep);
}
.contact-info-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: color 0.3s;
}
.contact-info-value a:hover { color: var(--rose-deep); }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.social-link:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-3px);
}

/* ── VISIT COUNTER ── */
.visit-counter-bar {
  background: var(--champagne);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.visit-counter-text {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.visit-count {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--rose-deep);
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.footer-brand-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  display: block;
  margin-top: -4px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: all 0.3s var(--ease);
}
.footer-link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-link.external::after {
  content: ' ↗';
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 60px;
}
.footer-bottom-text {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.footer-schema { display: none; }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 20px rgba(176, 132, 122, 0.4);
  z-index: 900;
  font-size: 1rem;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover { transform: translateY(-4px); }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(45, 36, 32, 0.97);
  backdrop-filter: blur(12px);
  padding: 20px 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  border-top: 2px solid var(--rose);
}
#cookieBanner.show { transform: translateY(0); }
.cookie-text {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.cookie-link { color: var(--gold-light); border-bottom: 1px solid; }
.btn-cookie {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-cookie-accept { background: var(--rose); color: #fff; }
.btn-cookie-accept:hover { background: var(--rose-deep); }
.btn-cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.15); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  height: 55vh;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2D2420 0%, #4a3530 50%, #2D2420 100%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,36,32,0.9) 0%, rgba(45,36,32,0.3) 100%);
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,164,154,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(196,168,130,0.12) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero-title em { color: var(--blush); font-style: italic; }
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.breadcrumb-link:hover { color: var(--gold-light); }
.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}
.breadcrumb-current {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

/* ── AOS-LIKE ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate="fade-left"] { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="scale"] { transform: scale(0.9); }
[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero-img-area { width: 100%; opacity: 0.3; }
  .hero-content { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .about-accent-img { right: -10px; }
  .process-timeline::before { left: 24px; }
  .process-step, .process-step:nth-child(even) { flex-direction: column; }
  .process-step:nth-child(even) .process-content { text-align: left; }
  .process-step-half { width: 100%; }
  .process-dot { left: 24px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 2; }
  .package-card.featured { transform: none; }
  .contact-form-wrap { padding: 36px 24px; }
  :root { --section-py: 70px; }
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.tall { grid-row: auto; aspect-ratio: 4/5; }
  .gallery-strip { gap: 2px; }
  .gallery-strip-item { flex: 0 0 33.33%; }
  .hero-title { font-size: 2.4rem; }
  .stat-divider { display: none; }
  :root { --section-py: 55px; }
}

@media (max-width: 576px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; aspect-ratio: 4/5; }
  .hero-desc { font-size: 1rem; }
  .contact-form-wrap { padding: 28px 18px; }
  .footer-col { margin-bottom: 36px; }
  .gallery-strip-item { flex: 0 0 50%; }
}
