/* ============================================================
   KursyFoto.waw.pl — Premium Photography Courses Warsaw
   Style: Editorial Minimal | Target: Women 30+
   Author: KursyFoto Team
   ============================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --bg:          #FAFAF5;
  --bg-alt:      #F2EDE3;
  --bg-dark:     #1C1A17;
  --white:       #FFFFFF;
  --text:        #1C1A17;
  --text-muted:  #6B6560;
  --accent:      #B8956A;
  --accent-dark: #8C6E4A;
  --accent-light:#E8D5BC;
  --border:      #E2D9CC;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

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

  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:   1200px;
  --section-py:  96px;
}

/* --- 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-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  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 --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-weight: 500; }

p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Layout Helpers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--alt { background-color: var(--bg-alt); }
.section--dark { background-color: var(--bg-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 560px; margin: 16px auto 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,106,0.35);
}

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

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Divider --- */
.divider {
  width: 48px;
  height: 1.5px;
  background: var(--accent);
  margin: 20px auto;
}
.divider--left { margin-left: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250,250,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0 24px;
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.nav.scrolled .nav__logo { color: var(--text); }

.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}
.nav.scrolled .nav__link { color: var(--text-muted); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--white); }
.nav.scrolled .nav__link:hover { color: var(--accent); }

.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--accent-dark); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav__hamburger span { background: var(--text); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--transition), visibility var(--transition);
  pointer-events: none;
}
.nav__mobile.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav__mobile-link {
  display: block;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__mobile-link:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1A17 0%, #2C2820 50%, #1A1510 100%);
  z-index: 0;
}

/* Decorative grain overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
}

.hero__image {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,26,23,0.85) 40%, rgba(28,26,23,0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero__eyebrow .label { color: var(--accent); }

.hero__title {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--accent);
  padding: 20px 0;
}
.intro-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.intro-strip__item svg { width: 18px; height: 18px; opacity: 0.8; }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0;
  transition: color var(--transition);
}
.nav.scrolled .nav__dropdown-toggle { color: var(--text-muted); }
.nav__dropdown-toggle:hover { color: var(--white); }
.nav.scrolled .nav__dropdown-toggle:hover { color: var(--accent); }
.nav__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__dropdown:hover .nav__dropdown-toggle::after { width: 100%; }

.nav__dropdown-toggle.open svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 2000;
}

/* Arrow tip */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  rotate: 45deg;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover,
.nav__dropdown-toggle.open + .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__dropdown-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.nav__dropdown-item:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

/* Mobile submenu group */
.nav__mobile-group {
  border-bottom: 1px solid var(--border);
}

.nav__mobile-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.nav__mobile-group-toggle.open svg { transform: rotate(180deg); }
.nav__mobile-group-toggle:hover { color: var(--accent); }

.nav__mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.nav__mobile-submenu.open { max-height: 500px; }

.nav__mobile-sub {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  padding: 12px 0 12px 16px !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid var(--border);
}

.nav__mobile-sub:last-child { border-bottom: none; }
.nav__mobile-sub:hover { color: var(--accent) !important; }


.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.offer-card:hover::before { transform: scaleX(1); }
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.offer-card__icon {
  width: 52px; height: 52px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.offer-card__icon svg { width: 22px; height: 22px; }

.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}
.offer-card p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.offer-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-card__link:hover { gap: 14px; }

/* ============================================================
   EEAT / AUTHORITY SECTION
   ============================================================ */
.authority__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.authority__image {
  position: relative;
}
.authority__photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.authority__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.authority__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-alt), var(--accent-light));
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

.authority__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
}
.authority__badge-number {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}
.authority__badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
  padding: 0 10px;
}

.authority__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.credential__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.credential__icon svg { width: 18px; height: 18px; }
.credential p {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
  font-weight: 400;
}

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-alt);
}
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(2) { aspect-ratio: 4/5; }
.gallery-item:nth-child(3) { aspect-ratio: 4/5; }
.gallery-item:nth-child(4) { aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { aspect-ratio: 4/3; }
.gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 4/3; }

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,26,23,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(28,26,23,0.4); }
.gallery-item__overlay svg {
  color: var(--white);
  width: 32px; height: 32px;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--accent);
  background: linear-gradient(135deg, #F2EDE3, #E8D5BC);
  gap: 8px;
}
.gallery-placeholder svg { width: 28px; height: 28px; opacity: 0.5; }
.gallery-placeholder span { font-size: 0.75rem; opacity: 0.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ============================================================
   BLOG / EXPERT TIPS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  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.04); }
.blog-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
  background: linear-gradient(135deg, var(--bg-alt), var(--accent-light));
  color: var(--accent);
}
.blog-card__img-placeholder svg { width: 36px; height: 36px; opacity: 0.4; }

.blog-card__body { padding: 28px 28px 32px; }
.blog-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.88rem; margin-bottom: 20px; }
.blog-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   SOCIAL MEDIA SECTION
   ============================================================ */
.social-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  min-width: 180px;
}
.social-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.social-card svg { width: 24px; height: 24px; }
.social-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.social-card--fb svg { color: #1877F2; }
.social-card--ig svg { color: #E4405F; }
.social-card--li svg { color: #0A66C2; }
.social-card--yt svg { color: #FF0000; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-dark);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,149,106,0.15), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #121110;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer__top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__logo span { color: var(--accent); }

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer__social-icon svg { width: 16px; height: 16px; }

.footer__heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__link:hover { color: var(--accent); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer__contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright {
  font-size: 0.78rem;
}
.footer__counter {
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__counter svg { width: 14px; height: 14px; color: var(--accent); }
#visitor-count { color: var(--accent); font-weight: 600; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28,26,23,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

/* ============================================================
   FORMS (Contact page)
   ============================================================ */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--accent); background: var(--white); }
textarea.form-control { min-height: 140px; resize: vertical; }

/* Honeypot */
.hp-field { display: none !important; }

/* ============================================================
   SUBPAGE HERO (shorter)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
}
.pricing-card--featured {
  background: var(--bg-dark);
  border-color: var(--accent);
  transform: scale(1.05);
}
.pricing-card--featured h3,
.pricing-card--featured .pricing-price { color: var(--white); }
.pricing-card--featured p,
.pricing-card--featured li { color: rgba(255,255,255,0.6); }

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin: 20px 0 4px;
}
.pricing-price sup { font-size: 1.2rem; }
.pricing-unit { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features { margin-bottom: 32px; text-align: left; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card--featured .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-features li svg { color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--text-muted);
}
.faq-icon svg { width: 12px; height: 12px; }
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p { padding-bottom: 24px; font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   AOS ANIMATIONS (custom minimal)
   ============================================================ */
/* ============================================================
   AOS ANIMATIONS
   IMPORTANT: Elements start visible by default.
   JS adds .aos-ready to <html> before hiding them.
   This prevents invisible content if JS fails/is slow.
   ============================================================ */

/* Only hide when JS has confirmed it's ready */
.aos-ready [data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-ready [data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-ready [data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-ready [data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animated state */
[data-aos="fade-up"].aos-animate,
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="zoom-in"].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* Delay utilities */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 16px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  flex-wrap: wrap;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.85rem; flex: 1; }
.cookie-bar a { color: var(--accent); }
.cookie-accept {
  padding: 10px 28px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .authority__grid { grid-template-columns: 1fr; gap: 48px; }
  .authority__image { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .hero__stats { gap: 28px; flex-wrap: wrap; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .authority__credentials { grid-template-columns: 1fr; }
  .intro-strip__inner { gap: 20px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .contact-form { padding: 32px 24px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .cookie-bar, .hero__scroll { display: none; }
}
