/*
Theme Name:   GeneratePress Premium Child
Theme URI:    https://generatepress.com
Description:  A modern premium child theme for GeneratePress with stunning landing page and minimalist blog
Author:       Custom
Template:     generatepress
Version:      1.0.0
Text Domain:  generatepress-child
*/

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@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=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Landing - Dark Luxury Palette */
  --land-bg:         #06060E;
  --land-surface:    #0D0D1A;
  --land-border:     rgba(255,255,255,0.08);
  --land-gold:       #C9A96E;
  --land-gold-light: #E8C98A;
  --land-text:       #F0EFE8;
  --land-muted:      #8887A0;
  --land-accent:     #7C6FCD;
  --land-accent2:    #C9A96E;

  /* Blog - Clean Light Palette */
  --blog-bg:         #FAFAF8;
  --blog-surface:    #FFFFFF;
  --blog-border:     #E8E6E0;
  --blog-text:       #1A1916;
  --blog-muted:      #6B6860;
  --blog-accent:     #1A1916;
  --blog-tag-bg:     #F0EDE6;

  /* Typography */
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-display:    'DM Serif Display', serif;
  --font-sans:       'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad:     clamp(5rem, 10vw, 9rem);
  --container:       1180px;

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

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* ============================================================
   LANDING — FULL-SCREEN SNAP SCROLL
   ============================================================ */
.gp-landing {
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  height: 100vh;
}

.gp-landing .lp-hero,
.gp-landing .lp-trust,
.gp-landing .lp-services,
.gp-landing .lp-about,
.gp-landing .lp-process,
.gp-landing .lp-testimonials,
.gp-landing .lp-cta,
.gp-landing .lp-footer {
  scroll-snap-align: start;
}

/* Each section fills the viewport */
.gp-landing .lp-services,
.gp-landing .lp-about,
.gp-landing .lp-process,
.gp-landing .lp-testimonials,
.gp-landing .lp-cta {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Trust bar is short — combine snap with hero */
.gp-landing .lp-trust {
  scroll-snap-align: none;
}

/* Footer doesn't need full height */
.gp-landing .lp-footer {
  min-height: auto;
}

/* Disable snap on mobile for better UX */
@media (max-width: 768px) {
  .gp-landing {
    scroll-snap-type: none;
    height: auto;
  }
  .gp-landing .lp-services,
  .gp-landing .lp-about,
  .gp-landing .lp-process,
  .gp-landing .lp-testimonials,
  .gp-landing .lp-cta {
    min-height: auto;
  }
}

/* ============================================================
   GLOBAL GENERATEPRESS OVERRIDES
   ============================================================ */
.gp-landing .site-header,
.gp-landing #masthead,
.gp-landing .site-footer,
.gp-landing #colophon { display: none !important; }

.gp-landing .site-content,
.gp-landing #content,
.gp-landing .content-area,
.gp-landing .site-main { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }

.gp-landing .inside-article,
.gp-landing .post-navigation,
.gp-landing .entry-header,
.gp-landing .entry-footer { display: none !important; }

.gp-blog .site-footer,
.gp-blog #colophon { display: none !important; }

.gp-blog .site-header,
.gp-blog #masthead { display: none !important; }

/* Ensure GP doesn't interfere with blog/single content */
.gp-blog .site-content,
.gp-blog #content,
.gp-blog .content-area,
.gp-blog .site-main { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }

.gp-blog .inside-article { padding: 0 !important; margin: 0 !important; }
.gp-blog .entry-header { display: none !important; }
.gp-blog .entry-content { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
.gp-blog .post-navigation,
.gp-blog .entry-footer,
.gp-blog #comments { display: none !important; }
.gp-blog .sidebar { display: none !important; }
.gp-blog #secondary { display: none !important; }

/* ============================================================
   LANDING PAGE — NAVIGATION
   ============================================================ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.lp-nav.scrolled {
  padding: 1rem 0;
  background: rgba(6, 6, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--land-border);
}

.lp-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--land-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-nav__logo span {
  color: var(--land-gold);
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.lp-nav__links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(240, 239, 232, 0.7);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.lp-nav__links a:hover { color: var(--land-gold); }

.lp-nav__cta {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--land-bg) !important;
  background: var(--land-gold);
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s var(--ease-spring) !important;
  display: inline-block;
}

.lp-nav__cta:hover {
  background: var(--land-gold-light) !important;
  transform: translateY(-1px) !important;
}

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

.lp-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124, 111, 205, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201, 169, 110, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(124, 111, 205, 0.08) 0%, transparent 60%);
}

.lp-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.lp-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 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)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.lp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}

.lp-hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(124, 111, 205, 0.15);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.lp-hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(201, 169, 110, 0.1);
  bottom: -50px; right: -50px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.lp-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--land-gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  background: rgba(201, 169, 110, 0.06);
  animation: fadeUp 0.8s var(--ease) both;
}

.lp-hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--land-gold);
  box-shadow: 0 0 8px var(--land-gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.lp-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--land-text);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.lp-hero__headline em {
  font-style: italic;
  color: var(--land-gold);
}

.lp-hero__headline strong {
  font-weight: 600;
  display: block;
}

.lp-hero__sub {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--land-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.lp-hero__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.btn-primary {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--land-bg);
  background: var(--land-gold);
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease);
}

.btn-primary:hover {
  background: var(--land-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.btn-secondary {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--land-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-secondary:hover { opacity: 1; }

.btn-secondary .play-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover .play-icon {
  border-color: var(--land-gold);
  background: rgba(201, 169, 110, 0.1);
}

/* Hero Visual Side */
.lp-hero__visual {
  position: relative;
  animation: fadeIn 1s var(--ease) 0.4s both;
}

.lp-hero__card-stack {
  position: relative;
  height: 460px;
}

.lp-hero__card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--land-border);
  background: var(--land-surface);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease);
}

.lp-hero__card--main {
  width: 320px; height: 360px;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--land-surface) 0%, rgba(124, 111, 205, 0.1) 100%);
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.lp-hero__card--stat {
  width: 180px; height: 100px;
  bottom: 60px; left: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lp-hero__card--badge {
  width: 160px; height: 90px;
  top: 20px; right: 0;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--land-gold), var(--land-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hero-card-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--land-muted);
  margin-bottom: 0.3rem;
}

.hero-card-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--land-text);
  line-height: 1;
}

.hero-card-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--land-muted);
  margin-top: 0.2rem;
}

.hero-card-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--land-text);
  font-weight: 500;
}

.hero-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  flex-shrink: 0;
}

.hero-sparkline {
  margin-top: auto;
  height: 60px;
  background: linear-gradient(180deg, rgba(124,111,205,0.3) 0%, transparent 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.hero-sparkline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--land-accent), var(--land-gold), var(--land-accent), transparent);
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Stats bar */
.lp-hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--land-border);
  margin-top: 3rem;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

.lp-hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--land-text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.lp-hero__stat-num span { color: var(--land-gold); }

.lp-hero__stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--land-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   LANDING PAGE — LOGO STRIP / TRUST BAR
   ============================================================ */
.lp-trust {
  background: var(--land-surface);
  border-top: 1px solid var(--land-border);
  border-bottom: 1px solid var(--land-border);
  padding: 2rem 0;
  overflow: hidden;
}

.lp-trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.lp-trust__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--land-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-trust__logos {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex: 1;
  overflow: hidden;
}

.lp-trust__logo {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(240, 239, 232, 0.25);
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.2s;
}

.lp-trust__logo:hover { color: rgba(240, 239, 232, 0.5); }

/* ============================================================
   LANDING PAGE — SERVICES
   ============================================================ */
.lp-services {
  background: var(--land-bg);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.lp-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--land-border), transparent);
}

.lp-section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--land-gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--land-gold);
}

.lp-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--land-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.lp-section-title em { font-style: italic; color: var(--land-gold); }

.lp-section-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--land-muted);
  line-height: 1.7;
  max-width: 520px;
}

.lp-services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.lp-services__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.lp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--land-border);
  border: 1px solid var(--land-border);
}

.lp-service-card {
  background: var(--land-surface);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.lp-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--land-accent), var(--land-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.lp-service-card:hover {
  background: rgba(255,255,255,0.03);
}

.lp-service-card:hover::after { transform: scaleX(1); }

.lp-service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  border: 1px solid var(--land-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}

.lp-service-card:hover .lp-service-icon {
  border-color: var(--land-gold);
  background: rgba(201, 169, 110, 0.08);
}

.lp-service-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--land-muted);
  margin-bottom: 1rem;
}

.lp-service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--land-text);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.lp-service-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--land-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lp-service-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--land-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.lp-service-link:hover { gap: 0.7rem; }

/* ============================================================
   LANDING PAGE — ABOUT / STORY SPLIT
   ============================================================ */
.lp-about {
  background: var(--land-bg);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.lp-about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.lp-about__visual {
  position: relative;
}

.lp-about__img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--land-surface);
}

.lp-about__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--land-surface) 0%, rgba(124, 111, 205, 0.15) 50%, var(--land-surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lp-about__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 40%,
    rgba(201, 169, 110, 0.08) 50%,
    transparent 60%
  );
  animation: shimmerSlow 4s linear infinite;
}

@keyframes shimmerSlow {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.lp-about__img-icon {
  font-size: 4rem;
  opacity: 0.15;
}

.lp-about__counter {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--land-gold);
  color: var(--land-bg);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
}

.lp-about__counter-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.lp-about__counter-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}

.lp-about__content { padding-top: 2rem; }

.lp-about__quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--land-text);
  line-height: 1.5;
  border-left: 2px solid var(--land-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.lp-about__text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--land-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.lp-about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
}

.lp-about__list li {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--land-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-about__list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid var(--land-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%23C9A96E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   LANDING PAGE — PROCESS / TIMELINE
   ============================================================ */
.lp-process {
  background: var(--land-surface);
  padding: 3rem 0;
  position: relative;
}

.lp-process__header {
  text-align: center;
  margin-bottom: 4rem;
}

.lp-process__header .lp-section-eyebrow { justify-content: center; }
.lp-process__header .lp-section-eyebrow::before { display: none; }
.lp-process__header .lp-section-sub { max-width: 500px; margin: 0 auto; }

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

.lp-process__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--land-gold), var(--land-accent), var(--land-gold));
}

.lp-step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

.lp-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--land-bg);
  border: 1px solid var(--land-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--land-gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}

.lp-step:hover .lp-step__num {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--land-gold);
}

.lp-step__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--land-text);
  margin-bottom: 0.6rem;
}

.lp-step__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--land-muted);
  line-height: 1.65;
}

/* ============================================================
   LANDING PAGE — TESTIMONIALS
   ============================================================ */
.lp-testimonials {
  background: var(--land-bg);
  padding: 3rem 0;
}

.lp-testimonials__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lp-testimonials__header .lp-section-eyebrow { justify-content: center; }
.lp-testimonials__header .lp-section-eyebrow::before { display: none; }

.lp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-testimonial {
  background: var(--land-surface);
  border: 1px solid var(--land-border);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.lp-testimonial:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.lp-testimonial__stars {
  color: var(--land-gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.lp-testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--land-text);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.lp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--land-border);
  padding-top: 1.2rem;
}

.lp-testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--land-accent), var(--land-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--land-bg);
  flex-shrink: 0;
}

.lp-testimonial__name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--land-text);
}

.lp-testimonial__role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--land-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   LANDING PAGE — CTA SECTION
   ============================================================ */
.lp-cta {
  background: var(--land-surface);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(124, 111, 205, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.lp-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.lp-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--land-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.lp-cta__title em { font-style: italic; color: var(--land-gold); }

.lp-cta__sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--land-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.lp-cta__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.lp-cta__input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--land-text);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--land-border);
  border-radius: 2px;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 0.2s;
}

.lp-cta__input::placeholder { color: var(--land-muted); }
.lp-cta__input:focus { border-color: var(--land-gold); }

.lp-cta__form .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

.lp-cta__note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--land-muted);
  margin-top: 1rem;
}

/* ============================================================
   LANDING PAGE — FOOTER
   ============================================================ */
.lp-footer {
  background: var(--land-bg);
  border-top: 1px solid var(--land-border);
  padding: 4rem 0 2rem;
}

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

.lp-footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--land-border);
  margin-bottom: 2rem;
}

.lp-footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--land-text);
  margin-bottom: 0.8rem;
}

.lp-footer__brand-name span { color: var(--land-gold); }

.lp-footer__brand-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--land-muted);
  line-height: 1.7;
  max-width: 280px;
}

.lp-footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--land-text);
  margin-bottom: 1.2rem;
}

.lp-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.lp-footer__links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--land-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer__links a:hover { color: var(--land-gold); }

.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-footer__copy {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--land-muted);
}

.lp-footer__socials {
  display: flex;
  gap: 1rem;
}

.lp-footer__social {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--land-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--land-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}

.lp-footer__social:hover { border-color: var(--land-gold); color: var(--land-gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BLOG PAGE — HEADER
   ============================================================ */
.gp-blog body,
.blog-page { background: var(--blog-bg); }

.blog-header {
  background: var(--blog-surface);
  border-bottom: 1px solid var(--blog-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s;
}

.blog-header.scrolled {
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.blog-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blog-text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.blog-logo span { color: var(--land-gold); }

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

.blog-nav a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--blog-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-nav a:hover { color: var(--blog-text); }

.blog-nav a.active { color: var(--blog-text); }

.blog-header__search {
  width: 32px; height: 32px;
  border: 1px solid var(--blog-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: transparent;
  color: var(--blog-muted);
  font-size: 0.85rem;
}

.blog-header__search:hover {
  border-color: var(--blog-text);
  color: var(--blog-text);
}

/* ============================================================
   BLOG PAGE — HERO INTRO
   ============================================================ */
.blog-hero {
  background: var(--blog-surface);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--blog-border);
}

.blog-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.blog-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blog-muted);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.blog-hero__eyebrow::before,
.blog-hero__eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--blog-border);
}

.blog-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--blog-text);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.blog-hero__title em { font-style: italic; }

.blog-hero__sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--blog-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.blog-hero__categories {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-cat-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blog-muted);
  background: var(--blog-tag-bg);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.blog-cat-tag:hover,
.blog-cat-tag.active {
  background: var(--blog-text);
  color: var(--blog-surface);
}

/* ============================================================
   BLOG PAGE — FEATURED POST
   ============================================================ */
/* ============================================================
   BLOG — FEATURED POST (Typography Only)
   ============================================================ */
.blog-featured {
  padding: 0 0 2rem;
}
.blog-featured__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-featured__card-typo {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 4rem 0;
  border-bottom: 1px solid var(--blog-border);
  transition: all 0.4s var(--ease);
}
.blog-featured__card-typo:hover {
  padding-left: 1rem;
}
.blog-featured__meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.blog-featured__cat {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--land-gold);
  padding: 0.35rem 1rem;
  border: 1px solid var(--land-gold);
  border-radius: 100px;
}
.blog-featured__date,
.blog-featured__readtime {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--blog-muted);
  font-weight: 400;
}
.blog-featured__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--blog-border);
}
.blog-featured__title-typo {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--blog-text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.blog-featured__card-typo:hover .blog-featured__title-typo {
  color: var(--land-gold);
}
.blog-featured__excerpt-typo {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--blog-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.blog-featured__footer-typo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-featured__author-typo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blog-text);
}
.blog-featured__avatar-typo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--land-gold), var(--land-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}
.blog-featured__read-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blog-text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.blog-featured__card-typo:hover .blog-featured__read-link { gap: 0.8rem; color: var(--land-gold); }

/* ============================================================
   BLOG — POSTS LIST (Typography Only)
   ============================================================ */
.blog-posts {
  padding: 0 0 5rem;
}
.blog-posts__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-posts__divider-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0;
  padding: 2rem 0;
}
.blog-posts__divider-label span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blog-muted);
  white-space: nowrap;
}
.blog-posts__divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--blog-border);
}
.blog-posts__list {
  display: flex;
  flex-direction: column;
}

/* Individual list item */
.blog-list-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--blog-border);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
}
.blog-list-item:hover {
  padding-left: 0.5rem;
}
.blog-list-item__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--blog-border);
  line-height: 1;
  min-width: 50px;
  padding-top: 0.2rem;
  transition: color 0.3s;
}
.blog-list-item:hover .blog-list-item__number {
  color: var(--land-gold);
}
.blog-list-item__body {
  flex: 1;
}
.blog-list-item__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.blog-list-item__cat {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--land-gold);
}
.blog-list-item__date,
.blog-list-item__readtime {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--blog-muted);
}
.blog-list-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--blog-text);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.blog-list-item:hover .blog-list-item__title {
  color: var(--land-gold);
}
.blog-list-item__excerpt {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--blog-muted);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}
.blog-list-item__arrow {
  color: var(--blog-border);
  padding-top: 1.5rem;
  transition: all 0.3s;
  min-width: 20px;
}
.blog-list-item:hover .blog-list-item__arrow {
  color: var(--land-gold);
  transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  color: var(--blog-muted);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.blog-pagination .page-numbers li a:hover {
  color: var(--blog-text);
  background: var(--blog-surface);
}
.blog-pagination .page-numbers li .current {
  color: var(--blog-text);
  font-weight: 600;
  background: var(--blog-surface);
}

/* Old grid/card styles removed — now using typography-only list layout */

/* ============================================================
   BLOG PAGE — NEWSLETTER
   ============================================================ */
.blog-newsletter {
  background: var(--blog-text);
  padding: 5rem 0;
}

.blog-newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.blog-newsletter__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--land-gold);
  margin-bottom: 1rem;
}

.blog-newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #F5F4EF;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.blog-newsletter__title em { font-style: italic; }

.blog-newsletter__sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(245, 244, 239, 0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-newsletter__form {
  display: flex;
  gap: 0.5rem;
}

.blog-newsletter__input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #F5F4EF;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.85rem 1.2rem;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.blog-newsletter__input::placeholder { color: rgba(255,255,255,0.3); }
.blog-newsletter__input:focus { border-color: var(--land-gold); }

.blog-newsletter__btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blog-text);
  background: var(--land-gold);
  border: none;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}

.blog-newsletter__btn:hover { background: var(--land-gold-light); }

/* ============================================================
   BLOG PAGE — FOOTER
   ============================================================ */
.blog-footer {
  background: var(--blog-surface);
  border-top: 1px solid var(--blog-border);
  padding: 2rem 0;
}

.blog-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-footer__copy {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--blog-muted);
}

.blog-footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.blog-footer__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--blog-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-footer__links a:hover { color: var(--blog-text); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post {
  background: var(--blog-bg);
}

/* ============================================================
   SINGLE POST — PREMIUM EDITORIAL
   ============================================================ */

/* --- Top Bar --- */
.sp-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 60px;
  background: rgba(252, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sp-topbar__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--blog-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.sp-topbar__logo span { color: var(--land-gold); }
.sp-topbar__links {
  display: flex;
  gap: 2.5rem;
}
.sp-topbar__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blog-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.sp-topbar__links a:hover { color: var(--blog-text); }

/* --- Progress Bar --- */
.sp-progress {
  position: fixed;
  top: 60px; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--land-gold), var(--land-accent));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* --- Hero --- */
.sp-hero {
  padding: 10rem 2rem 5rem;
  background: var(--blog-surface);
  text-align: center;
}
.sp-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.sp-hero__category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--land-gold);
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--land-gold);
  border-radius: 100px;
}
.sp-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--blog-text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.sp-hero__excerpt {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--blog-muted);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.sp-hero__divider {
  width: 60px;
  height: 1px;
  background: var(--land-gold);
  margin: 0 auto 2.5rem;
}
.sp-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.sp-hero__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.sp-hero__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--land-gold), var(--land-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}
.sp-hero__author-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blog-text);
}
.sp-hero__author-role {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--blog-muted);
  font-weight: 400;
}
.sp-hero__details {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--blog-muted);
  font-weight: 400;
}
.sp-hero__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--blog-border);
}

/* --- Featured Image --- */
.sp-featured-img {
  max-width: 1000px;
  margin: -2rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.sp-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.04);
}

/* --- Article Body --- */
.sp-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

/* Drop cap for first paragraph */
.sp-article__body > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  margin: 0.1em 0.12em 0 0;
  color: var(--blog-text);
  font-weight: 400;
}

.sp-article__body p {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  line-height: 1.9;
  color: #3D3A35;
  margin-bottom: 1.8rem;
  font-weight: 350;
}

.sp-article__body h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--blog-text);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 4rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blog-border);
}

.sp-article__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blog-text);
  line-height: 1.25;
  margin: 3rem 0 1rem;
}

.sp-article__body h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blog-muted);
  margin: 2.5rem 0 1rem;
}

.sp-article__body blockquote {
  margin: 3rem -2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, rgba(201,169,110,0.02) 100%);
  border-left: 3px solid var(--land-gold);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.sp-article__body blockquote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--land-gold);
  opacity: 0.3;
  position: absolute;
  top: -0.1em;
  left: 0.3em;
  line-height: 1;
}
.sp-article__body blockquote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--blog-text);
  margin: 0;
  font-weight: 400;
}

.sp-article__body a {
  color: var(--blog-text);
  text-decoration: underline;
  text-decoration-color: var(--land-gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.3s, color 0.3s;
}
.sp-article__body a:hover {
  color: var(--land-gold);
}

.sp-article__body ul, .sp-article__body ol {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.sp-article__body li {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.85;
  color: #3D3A35;
  font-weight: 350;
  margin-bottom: 0.5rem;
}
.sp-article__body li::marker {
  color: var(--land-gold);
}

.sp-article__body strong {
  font-weight: 700;
  color: var(--blog-text);
}

.sp-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.sp-article__body figure {
  margin: 3rem -2rem;
}
.sp-article__body figure img {
  width: calc(100% + 0px);
  border-radius: 8px;
}
.sp-article__body figcaption {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--blog-muted);
  text-align: center;
  margin-top: 0.8rem;
  font-style: italic;
}

.sp-article__body pre {
  background: #1a1a1a;
  color: #e6e1d9;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  overflow-x: auto;
  margin: 2rem 0;
}
.sp-article__body code {
  font-size: 0.88em;
  background: rgba(0,0,0,0.05);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}
.sp-article__body pre code {
  background: none;
  padding: 0;
}

/* --- Tags --- */
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blog-border);
}
.sp-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blog-muted);
  background: var(--blog-tag-bg);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
}
.sp-tag:hover {
  background: var(--blog-text);
  color: #fff;
}

/* --- End Divider --- */
.sp-end-divider {
  text-align: center;
  margin: 4rem 0 0;
  padding-top: 3rem;
}
.sp-end-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blog-surface);
  border: 1px solid var(--blog-border);
  font-size: 1rem;
  color: var(--land-gold);
}

/* --- Author Card --- */
.sp-author-card {
  background: var(--blog-surface);
  border-top: 1px solid var(--blog-border);
  border-bottom: 1px solid var(--blog-border);
  padding: 4rem 2rem;
}
.sp-author-card__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.sp-author-card__avatar {
  width: 64px; height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--land-gold), var(--land-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.sp-author-card__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blog-muted);
  margin-bottom: 0.3rem;
}
.sp-author-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blog-text);
  margin-bottom: 0.6rem;
}
.sp-author-card__bio {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--blog-muted);
  font-weight: 300;
  margin: 0;
}

/* --- Related Posts --- */
.sp-related {
  padding: 6rem 2rem;
}
.sp-related__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sp-related__heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--blog-text);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  text-align: center;
}
.sp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sp-related__card {
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--blog-border);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}
.sp-related__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.sp-related__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.sp-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.sp-related__card:hover .sp-related__img img {
  transform: scale(1.05);
}
.sp-related__body {
  padding: 1.5rem;
}
.sp-related__date {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blog-muted);
  letter-spacing: 0.04em;
}
.sp-related__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--blog-text);
  line-height: 1.3;
  margin: 0.6rem 0;
}
.sp-related__excerpt {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--blog-muted);
  font-weight: 300;
  margin: 0;
}

/* --- Footer --- */
.sp-footer {
  border-top: 1px solid var(--blog-border);
  padding: 2.5rem 3rem;
}
.sp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.sp-footer__logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--blog-text);
  text-decoration: none;
}
.sp-footer__copy {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--blog-muted);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .sp-topbar { padding: 0 1.5rem; }
  .sp-topbar__links { gap: 1.5rem; }
  .sp-hero { padding: 8rem 1.5rem 3rem; }
  .sp-hero__meta { flex-direction: column; gap: 1rem; }
  .sp-article { padding: 3rem 1.5rem; }
  .sp-article__body blockquote { margin: 2rem 0; padding: 1.5rem 1.5rem; }
  .sp-article__body figure { margin: 2rem 0; }
  .sp-related__grid { grid-template-columns: 1fr; }
  .sp-author-card__inner { flex-direction: column; text-align: center; align-items: center; }
  .sp-footer__inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lp-hero__content { grid-template-columns: 1fr; gap: 3rem; }
  .lp-hero__visual { display: none; }
  .lp-services__header { grid-template-columns: 1fr; }
  .lp-services__header-right { align-items: flex-start; margin-top: 0; }
  .lp-services__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .lp-process__steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .lp-process__steps::before { display: none; }
  .lp-testimonials__grid { grid-template-columns: 1fr 1fr; }
  .lp-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-featured__excerpt-typo { max-width: 100%; }
}

@media (max-width: 768px) {
  .lp-nav__links { display: none; }
  .lp-hero__stats { gap: 2rem; flex-wrap: wrap; }
  .lp-services__grid { grid-template-columns: 1fr; }
  .lp-process__steps { grid-template-columns: 1fr; }
  .lp-testimonials__grid { grid-template-columns: 1fr; }
  .lp-cta__form { flex-direction: column; }
  .lp-footer__top { grid-template-columns: 1fr; }
  .lp-footer__bottom { flex-direction: column; gap: 1rem; }
  .blog-list-item { gap: 1rem; }
  .blog-list-item__number { font-size: 1.8rem; min-width: 36px; }
  .blog-newsletter__form { flex-direction: column; }
  .blog-footer__inner { flex-direction: column; gap: 1rem; }
}
