/* ============================================================
   ESE QuickSell™ — Stylesheet
   Mobile-first, responsive
   ============================================================ */

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

:root {
  --dark:        #0D0C09;
  --dark-card:   #131208;
  --dark-border: #2A2710;
  --surface:     #1A1810;
  --gold:        #C9A84C;
  --gold-light:  #E5C96A;
  --cream:       #F0EAD6;
  --text-muted:  #6B6450;
  --text-mid:    #8A8470;
  --text-base:   #C8C3B0;
  --link:        https://trinity.es.biz.pl/strony-i-sklepy-internetowe-stala-obsluga/52-done-4-u-sprzedaz-twojego-ebooka-na-autopilocie.html;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--dark);
  color: var(--text-base);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

::selection { background: #C9A84C33; color: var(--gold-light); }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- TYPOGRAPHY ---------- */
.font-display { font-family: 'Playfair Display', serif; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

/* ---------- BACKGROUNDS ---------- */
.grid-bg {
  background-image:
    linear-gradient(#2A271015 1px, transparent 1px),
    linear-gradient(90deg, #2A271015 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ---------- GLOW HELPERS ---------- */
.glow-gold        { box-shadow: 0 0 40px #C9A84C18, 0 0 80px #C9A84C08; }
.glow-gold-strong { box-shadow: 0 0 30px #C9A84C35, 0 0 70px #C9A84C18; }
.text-glow        { text-shadow: 0 0 40px #C9A84C50, 0 0 80px #C9A84C20; }

/* ---------- GOLD BORDER CARD ---------- */
.gold-border {
  position: relative;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
}
.gold-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, #C9A84C35, transparent 45%, transparent 55%, #C9A84C20);
  z-index: -1;
}

/* ---------- DIVIDER ---------- */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C30, transparent);
}

/* ---------- BUTTONS ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, #ffffff25, transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px #C9A84C50, 0 8px 30px #C9A84C20;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--text-base);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--dark-border);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover {
  border-color: #C9A84C50;
  color: var(--gold);
  box-shadow: 0 0 20px #C9A84C12;
}

/* Mobile: full-width buttons in hero */
@media (max-width: 480px) {
  .btn-gold, .btn-outline { width: 100%; padding: 15px 20px; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes pulse-gold {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
.pulse { animation: pulse-gold 3s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float { animation: float 6s ease-in-out infinite; }

/* ---------- FADE-UP ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }
.fade-up.d5 { transition-delay: 0.40s; }

/* Reduce motion on mobile */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .float, .pulse { animation: none; }
}

/* ---------- CARD HOVER ---------- */
.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.card-hover:hover {
  transform: translateY(-4px);
  border-color: #C9A84C40 !important;
  box-shadow: 0 0 40px #C9A84C12;
}
@media (hover: none) {
  .card-hover:hover { transform: none; }
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 20px;
  left: 20px;
  background: var(--dark-card);
  border: 1px solid #C9A84C35;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 13px;
  color: var(--gold);
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px #C9A84C18;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }

@media (min-width: 480px) {
  .toast { left: auto; width: auto; min-width: 240px; }
}

/* ---------- TOP BAR ---------- */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(13,12,9,0.97);
  border-bottom: 1px solid var(--dark-border);
  height: 32px;
  display: flex;
  align-items: center;
}
.top-bar .container { display: flex; align-items: center; }
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.top-bar-link:hover { color: var(--gold); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 50;
  background: rgba(13,12,9,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 7px;
  padding: 4px 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--dark);
}
.nav-logo-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.nav-logo-name sup { font-size: 10px; color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-gold-sm {
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-gold-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px #C9A84C40;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .btn-gold-sm { display: inline-flex; }
}

/* ---------- BURGER ---------- */
.burger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-base);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
.burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
.burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (min-width: 768px) { .burger { display: none; } }

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  position: fixed;
  top: 92px; left: 0; right: 0;
  z-index: 49;
  background: rgba(13,12,9,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-base);
  border-bottom: 1px solid var(--dark-border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn-gold { margin-top: 16px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 92px;
  overflow: hidden;
}
.hero-inner {
  padding: 48px 0 60px;
  width: 100%;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .hero-inner { padding: 80px 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
}

.hero-h1 {
  font-size: clamp(36px, 8vw, 62px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--text-base); font-weight: 400; }

/* Hero badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  font-size: 12px;
  color: var(--text-base);
}
.hero-badge-item .footnote { color: #4A4535; }
.hero-badge-footnote {
  width: 100%;
  font-size: 11px;
  color: #3A3525;
  margin-top: 4px;
}

/* Hero CTA row */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero image */
.hero-img-wrap {
  display: none;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-img-wrap { display: flex; }
}
.hero-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #C9A84C25;
  box-shadow: 0 0 60px #C9A84C10, 0 24px 80px #00000060;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 2 / 3;
}
.hero-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ---------- SECTION SHARED ---------- */
section { position: relative; overflow: hidden; }

.section-py { padding: 72px 0; }
@media (min-width: 768px) { .section-py { padding: 96px 0; } }

.section-py-sm { padding: 56px 0; }
@media (min-width: 768px) { .section-py-sm { padding: 72px 0; } }

/* Section header */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  margin-bottom: 20px;
}
.section-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
}

.section-h2 {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- DLA KOGO — GRID ---------- */
.dla-kogo-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 480px)  { .dla-kogo-grid { grid-template-columns: repeat(3, 1fr); } }

.dla-kogo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--dark-border);
}
.dla-kogo-card span:first-of-type {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-base);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.3;
}

/* ---------- CO OTRZYMUJESZ — GRID ---------- */
.features-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 28px 24px;
  border: 1px solid var(--dark-border);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C9A84C15;
  border: 1px solid #C9A84C30;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.feature-p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* Special last card */
.feature-card-highlight {
  border: 1px dashed #C9A84C30;
  background: linear-gradient(135deg, #C9A84C08, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 32px 24px;
}
.feature-card-highlight p:first-of-type {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
}
.feature-card-highlight p:last-of-type {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- SHOWCASE (image + text) ---------- */
.showcase-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
@media (max-width: 767px) {
  .showcase-grid.reverse-mobile > *:first-child { order: 2; }
  .showcase-grid.reverse-mobile > *:last-child  { order: 1; }
}

.showcase-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #C9A84C25;
  box-shadow: 0 0 50px #C9A84C08, 0 20px 60px #00000050;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.showcase-img img { width: 100%; height: 100%; object-fit: cover; }

.showcase-text .section-badge { margin-bottom: 16px; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-base);
}
.checklist li svg { flex-shrink: 0; }

/* ---------- JAK TO DZIAŁA — STEPS ---------- */
.steps-grid {
  display: grid;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

/* connector line desktop */
.steps-grid::before {
  content: '';
  display: none;
  position: absolute;
  top: 32px;
  left: calc(33.33% - 0px);
  right: calc(33.33% - 0px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C40, transparent);
}
@media (min-width: 768px) { .steps-grid::before { display: block; } }

.step { text-align: center; }
.step-num {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C9A84C20, #C9A84C08);
  border: 1px solid #C9A84C40;
  box-shadow: 0 0 40px #C9A84C18, 0 0 80px #C9A84C08;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}
.step-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.step-p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  font-size: 12px;
  color: var(--text-mid);
}

/* ---------- STATS GRID ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat-card {
  padding: 16px;
  border-radius: 12px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
}
.stat-val {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(18px, 4vw, 26px);
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.2;
}
.stat-label { font-size: 12px; color: var(--text-muted); }

/* ---------- CENNIK ---------- */
.pricing-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 0;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 10vw, 80px);
  color: var(--gold);
  text-shadow: 0 0 40px #C9A84C50, 0 0 80px #C9A84C20;
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }

.pricing-card {
  background: var(--dark-card);
  border: 1px solid #C9A84C30;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, #C9A84C35, transparent 45%, transparent 55%, #C9A84C20);
  z-index: -1;
}
.pricing-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pricing-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}
.pricing-sub-label { font-size: 13px; color: var(--text-muted); }
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-period { font-size: 12px; color: var(--text-muted); text-align: right; }

.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pricing-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-base); }
.pricing-list li svg { flex-shrink: 0; }

.pricing-footnote { font-size: 11px; color: #3A3525; margin-bottom: 20px; }
.pricing-contact { font-size: 12px; color: #4A4535; margin-top: 20px; }
.pricing-contact a { color: var(--gold); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  border: 1px solid #C9A84C25;
  background: linear-gradient(135deg, #C9A84C08, transparent);
  border-radius: var(--radius-lg);
  padding: 48px 28px;
  text-align: center;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, #C9A84C35, transparent 45%, transparent 55%, #C9A84C20);
  z-index: -1;
}
.cta-banner-icon { margin: 0 auto 24px; }
.cta-banner-h2 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}
.cta-banner-sub {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cta-banner { padding: 64px 56px; }
}

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--dark-border); padding: 48px 0; }
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--dark-border);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-copy { font-size: 12px; color: #3A3525; }
.footer-company { font-size: 11px; color: #4A4535; }
.footer-company strong { color: var(--text-muted); font-weight: 500; }
.footer-logo-img { height: 48px; object-fit: contain; opacity: 0.75; transition: opacity 0.2s; }
.footer-logo-img:hover { opacity: 1; }

/* ---------- NAV HOVER COLORS ---------- */
.nav-link { color: var(--text-mid); transition: color 0.2s; }
.nav-link:hover { color: var(--gold); }
