/* ============================================
   Cincuenta Svatby — V3 "Luxe Burgundy"
   WordPress Theme
   ============================================ */

:root {
  --color-primary: #7B2D40;
  --color-primary-dark: #5A1F2E;
  --color-primary-light: #F2E0E4;
  --color-accent: #C9A96E;
  --color-accent-light: #D4B87A;
  --color-accent-glow: rgba(201, 169, 110, 0.15);
  --color-text: #1A1A1A;
  --color-text-muted: #666660;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F6F4;
  --color-bg-dark: #1A1118;
  --color-border: #E8E2DF;
  --font-heading: 'Bodoni Moda', 'Georgia', serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --container-max: 1280px;
  --section-pad: 7.5rem 0;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2.5rem;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: 4.25rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.05rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
  background-size: 200% 100%;
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
}

.btn-gold:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4), 0 0 48px rgba(201, 169, 110, 0.15);
}

.btn-gold-lg {
  font-size: 1rem;
  padding: 1.25rem 3rem;
  letter-spacing: 0.08em;
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

/* --- Gold Separator --- */
.gold-sep {
  width: 80px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem auto 0;
  opacity: 0.5;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 3.5rem;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-header h2 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.15rem 0;
  background: rgba(26, 17, 24, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: background var(--transition-slow), padding var(--transition);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.4);
  font-style: normal;
  display: block;
  margin-top: -0.15rem;
}

.nav-brand:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover { color: var(--color-accent); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-links .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}


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

.hero .hero-glow-burgundy {
  position: absolute;
  top: 0;
  right: -10%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse 70% 60% at 60% 45%, rgba(123, 45, 64, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-glow-gold {
  position: absolute;
  top: -20%;
  left: -15%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse 50% 50% at 40% 40%, rgba(201, 169, 110, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-noise {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 30%, var(--color-accent) 70%, transparent 100%);
  opacity: 0.35;
  z-index: 2;
}

.hero .container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: #FFFFFF; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 2rem;
  color: #FFFFFF;
  max-width: 580px;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}

.hero-line {
  width: 80px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 2rem;
  opacity: 0.6;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 2.75rem;
}

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

.hero-img-wrap {
  position: relative;
  padding: 14px;
}

.hero-img-wrap .hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 2px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 2;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 2;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 30px; }
}


/* ========================================
   TRUST BAR
   ======================================== */
.trust {
  padding: 5rem 0;
  background: var(--color-bg);
  position: relative;
}

.trust::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.trust .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.trust-item {
  position: relative;
  padding: 1.5rem 2rem;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
  opacity: 0.5;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 0 0 3px 3px;
  transition: width var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 45, 64, 0.07), 0 0 0 1px rgba(201, 169, 110, 0.12), 0 0 80px rgba(201, 169, 110, 0.06);
}

.service-card:hover::before {
  width: 100%;
  border-radius: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 1.4rem;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}


/* ========================================
   ABOUT — Split-Tone
   ======================================== */
.about {
  padding: var(--section-pad);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: var(--color-bg-dark);
  z-index: 0;
}

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

.about-img-wrap {
  position: relative;
}

.about-img-wrap .about-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: -1.75rem;
  width: 3px;
  height: 220px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(201, 169, 110, 0.1) 100%);
  border-radius: 3px;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  opacity: 0.35;
  pointer-events: none;
}

.about-content .section-label {
  text-align: left;
  padding-left: 0;
}

.about-content .section-label::before { display: none; }

.about-content .section-label::after {
  left: calc(100% + 1rem);
  right: auto;
}

.about-content h2 {
  margin-bottom: 1.75rem;
  text-align: left;
  font-size: 3rem;
}

.about-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.about-text:last-of-type { margin-bottom: 0; }

.about-signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.about-signature-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.about-signature-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}


/* ========================================
   PROCESS
   ======================================== */
.process {
  padding: var(--section-pad);
  background: var(--color-bg-alt);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 12%;
  right: 12%;
  height: 1px;
  border-top: 1px dashed var(--color-accent);
  opacity: 0.35;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 2rem;
  z-index: 1;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.7;
  transition: all var(--transition);
  display: inline-block;
}

.process-step:hover .process-number {
  opacity: 1;
  transform: scale(1.08);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 1.25rem;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}


/* ========================================
   E-BOOKY
   ======================================== */
.ebooks {
  padding: var(--section-pad);
  background: var(--color-bg);
}

.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ebook-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.ebook-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  opacity: 0.5;
  transition: opacity var(--transition);
}

.ebook-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(123, 45, 64, 0.08);
}

.ebook-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.ebook-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ebook-card:hover .ebook-img-wrap img {
  transform: scale(1.05);
}

.ebook-content {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ebook-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.ebook-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.ebook-content .btn {
  align-self: flex-start;
}


/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--color-accent) 50%, transparent 90%);
  opacity: 0.4;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--color-accent) 50%, transparent 90%);
  opacity: 0.4;
}

.cta-banner .cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 40px rgba(201, 169, 110, 0.2);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-bg-dark);
  padding: 5rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.footer-brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.4);
  font-style: normal;
  margin-top: 0.25rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.75rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

.footer-contact-item {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  color: rgba(201, 169, 110, 0.5);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--color-accent); }


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content { order: 1; }
  .hero-img-wrap { order: 0; }

  .hero h1 { max-width: 100%; }
  .hero-text { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-label { justify-content: center; }

  .hero-img-wrap .hero-img { height: 400px; }

  .about::before { display: none; }

  .about .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap .about-img { height: 400px; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process-steps::before { display: none; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-banner h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 5rem 0;
  }

  .container { padding: 0 1.5rem; }

  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 17, 24, 0.96);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  }

  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 7rem 0 4rem; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-img-wrap::before,
  .hero-img-wrap::after { width: 60px; height: 60px; }

  .trust .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-item:not(:last-child)::after { display: none; }
  .trust-item {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
  }
  .trust-item:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .ebooks-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  .scroll-indicator { display: none; }

  .cta-banner h2 { font-size: 2rem; }
  .cta-banner p { font-size: 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn { width: 100%; justify-content: center; }
}


/* ========================================
   WP ADMIN BAR FIX
   ======================================== */
.admin-bar .nav {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .nav {
    top: 46px;
  }
}
