/* ============================================================
   KursyFoto Berlin — Premium Photography Courses
   Aesthetic: Luxury Editorial | Light & Airy
   Palette: Warm Ivory · Charcoal · Gold · Blush
   Typography: Cormorant Garamond + Outfit
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --ivory:       #FAF8F4;
  --ivory-warm:  #F3EDE3;
  --cream:       #EDE6D6;
  --gold:        #B8965A;
  --gold-light:  #D4B07A;
  --gold-pale:   #F0E6D0;
  --blush:       #E8C5B5;
  --blush-deep:  #C9967E;
  --charcoal:    #1C1A18;
  --dark:        #2D2B28;
  --mid:         #6B665E;
  --light-text:  #9C9488;
  --border:      #E0D9CC;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Outfit', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-pill: 100px;

  --shadow-sm:   0 2px 12px rgba(28,26,24,0.06);
  --shadow-md:   0 8px 32px rgba(28,26,24,0.10);
  --shadow-lg:   0 20px 60px rgba(28,26,24,0.14);

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 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-sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul { list-style: none; }

/* ─── Typography Scale ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p { color: var(--mid); font-size: 1.05rem; }

.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--mid); font-weight: 300; }

/* ─── Layout Helpers ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--ivory-warm); }
.section-cream { background: var(--cream); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Section Label */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Decorative line */
.deco-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blush));
  margin: 1.5rem auto;
}
.deco-line.left { margin-left: 0; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.navbar-logo span { color: var(--gold); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.navbar-menu a:hover { color: var(--gold); }
.navbar-menu a:hover::after { width: 100%; }

.navbar-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.825rem !important;
}
.navbar-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}
.navbar-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ivory);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ivory-warm);
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(184,150,90,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(232,197,181,0.15) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

.hero-content { padding-right: 2rem; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: var(--light-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-stat-sep { width: 1px; height: 40px; background: var(--border); }

.hero-image {
  position: relative;
}
.hero-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
  position: relative;
}
.hero-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-image-main:hover img { transform: scale(1.03); }

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-badge-text { font-size: 0.8rem; color: var(--mid); }
.hero-badge-text strong { display: block; font-size: 0.95rem; color: var(--charcoal); font-weight: 600; }

.hero-dot {
  position: absolute;
  top: 30px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush));
  opacity: 0.6;
}

/* ─── SERVICES / OFFER ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.service-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.service-price span { font-size: 0.9rem; font-weight: 400; color: var(--mid); }

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.8rem; color: var(--charcoal); }

/* ─── E-E-A-T / AUTHORITY ─────────────────────────────────── */
.eeat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.eeat-photo {
  position: relative;
}
.eeat-photo-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--cream);
}
.eeat-photo-img img { width: 100%; height: 100%; object-fit: cover; }

.eeat-stats {
  position: absolute;
  right: -30px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eeat-stat-pill {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
}
.eeat-stat-pill .big {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.eeat-stat-pill .small {
  font-size: 0.72rem;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eeat-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.eeat-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(184,150,90,0.3);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
}

.eeat-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.eeat-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.eeat-feature-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.eeat-feature-text { font-size: 0.9rem; color: var(--mid); }
.eeat-feature-text strong { display: block; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 0.15rem; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.testimonial-city { font-size: 0.8rem; color: var(--light-text); }

/* ─── BLOG / PORADNIK ─────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-body { padding: 1.75rem; }
.blog-card-date { font-size: 0.78rem; color: var(--light-text); margin-bottom: 0.5rem; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card p { font-size: 0.9rem; color: var(--mid); }

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.blog-card-read:hover { gap: 0.8rem; color: var(--charcoal); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 3rem auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  background: none;
  border: none;
  outline: none;
  text-align: left;
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--mid);
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--blush) 100%);
  border: 1px solid rgba(184,150,90,0.2);
  border-radius: var(--radius-lg);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--charcoal); }
.cta-banner p { color: var(--mid); margin: 1rem 0 2.5rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── SOCIAL MEDIA ───────────────────────────────────────── */
.social-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.social-btn svg { width: 18px; height: 18px; }

/* ─── PORTFOLIO GALLERY ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  background: var(--cream);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,26,24,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(28,26,24,0.35); }
.gallery-overlay-icon {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; max-width: 300px; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 600;
}
.footer-logo span { color: var(--gold); }

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-icon { font-size: 0.9rem; margin-top: 2px; color: var(--gold); min-width: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* Visit Counter */
.visit-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.visit-counter span { color: var(--gold-light); font-weight: 600; }

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,150,90,0.1);
}

textarea.form-control { resize: vertical; min-height: 130px; }

.form-honey { display: none; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── PRICING TABLE ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: scale(1.04);
}
.pricing-card:hover:not(.featured) {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.featured .pricing-label { color: var(--gold-light); }
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.featured h3 { color: var(--white); }
.pricing-card > p { font-size: 0.9rem; margin-bottom: 2rem; }
.featured > p { color: rgba(255,255,255,0.55); }

.price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.price .amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.featured .price .amount { color: var(--white); }
.price .currency {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.featured .price .currency { color: rgba(255,255,255,0.55); }
.price .period { font-size: 0.85rem; color: var(--light-text); margin-bottom: 0.3rem; }
.featured .price .period { color: rgba(255,255,255,0.35); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--mid);
}
.featured .pricing-feature { color: rgba(255,255,255,0.7); }
.pricing-check {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
}
.featured .pricing-card-btn {
  background: var(--gold);
  color: var(--white);
}
.featured .pricing-card-btn:hover {
  background: var(--white);
  color: var(--charcoal);
}

.featured-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ─── PAGE HEADER (inner pages) ──────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  background: var(--ivory-warm);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 60% 40%, rgba(184,150,90,0.07) 0%, transparent 70%);
}
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}
.page-header .breadcrumb a { color: var(--gold); }
.page-header .breadcrumb span { color: var(--border); }

/* ─── PROCESS STEPS ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step-card { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.step-card:hover .step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.step-card h4 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; }

/* ─── AOS Custom ─────────────────────────────────────────── */
[data-aos] { transition-duration: 0.7s !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-content { padding-right: 0; text-align: center; }
  .hero-label { justify-content: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }

  .eeat-grid { grid-template-columns: 1fr; gap: 3rem; }
  .eeat-stats { right: -10px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-wrapper { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .container { padding: 0 1.25rem; }
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-wrapper { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .eeat-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 2rem 1.5rem; }
  .cta-banner { padding: 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .eeat-stats { position: static; flex-direction: row; justify-content: center; margin-top: 2rem; }
  .hero-badge { left: 0; bottom: -15px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .eeat-awards { justify-content: center; }
}

/* ─── Lightbox ───────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: opacity var(--transition);
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ─── Scroll progress bar ────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blush));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── Back to top ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  font-size: 1rem;
  z-index: 500;
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ─── Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 2000;
  max-width: 800px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden { transform: translateX(-50%) translateY(200%); opacity: 0; pointer-events: none; }
.cookie-banner a { color: var(--gold-light); }
.cookie-banner .cookie-actions { display: flex; gap: 0.75rem; margin-left: auto; }

/* ─── Utility: highlight text ────────────────────────────── */
.highlight {
  background: linear-gradient(120deg, var(--gold-pale) 0%, var(--gold-pale) 100%);
  background-size: 100% 35%;
  background-position: 0 85%;
  background-repeat: no-repeat;
  padding: 0 2px;
}
