/* ========================================
   ALIGNED HER — Global Styles
   ======================================== */

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

:root {
  --ivory: #F6F1EB;
  --clay: #D8CFC4;
  --rose: #C6A9A3;
  --brown: #3E332F;
  --brown-light: #5a4d48;
  --gold: #C9A46A;
  --gold-hover: #d4b37a;
  --white: #FFFFFF;
  --text: #3E332F;
  --text-muted: #8a7e78;
  --text-light: rgba(62, 51, 47, 0.6);
  --bg: #F6F1EB;
  --card: #FFFFFF;
  --border: rgba(216, 207, 196, 0.6);
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(62, 51, 47, 0.04);
  --shadow-md: 0 8px 30px rgba(62, 51, 47, 0.06);
  --shadow-lg: 0 20px 60px rgba(62, 51, 47, 0.08);
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-headline);
  color: var(--brown);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.text-gold { color: var(--gold); }
.text-rose { color: var(--rose); }
.text-muted { color: var(--text-muted); }

.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 164, 106, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--clay);
}
.btn-outline:hover {
  border-color: var(--brown);
  background: rgba(62, 51, 47, 0.03);
  transform: translateY(-2px);
}

.btn-brown {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-brown:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(62, 51, 47, 0.2);
}

.btn-white {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.nav.scrolled {
  background: rgba(246, 241, 235, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(62, 51, 47, 0.06);
  padding: 14px 0;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.5px;
}

.nav-brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

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

.nav-links .btn {
  padding: 10px 24px;
  font-size: 12px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.5;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 200;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown) !important;
  transition: background var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--ivory);
  color: var(--gold) !important;
}

.nav-dropdown-menu a .tool-desc {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 16px;
    min-width: auto;
  }
  .nav-dropdown > a::after { content: ' ▸'; }
  .nav-dropdown.open > a::after { content: ' ▾'; }
  .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brown);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: 100px 24px;
}

.section-white { background: var(--white); }
.section-ivory { background: var(--ivory); }
.section-brown {
  background: var(--brown);
  color: var(--white);
}
.section-brown h2,
.section-brown h3 { color: var(--white); }
.section-brown p { color: rgba(255,255,255,0.7); }
.section-brown .label { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--clay) 50%, var(--rose) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 120px 24px 100px;
}

.hero h1 {
  margin-bottom: 24px;
  font-weight: 700;
}

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

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.hero-divider svg {
  display: block;
  width: 100%;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ivory), var(--clay));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   GRIDS
   ======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ========================================
   METHOD PILLARS
   ======================================== */
.pillar {
  text-align: center;
  padding: 40px 24px;
}

.pillar-number {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 8px;
  line-height: 1;
}

.pillar h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pillar .pillar-subtitle {
  font-size: 0.85rem;
  color: var(--rose);
  font-style: italic;
  margin-bottom: 16px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.testimonial blockquote {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--brown);
  margin-bottom: 20px;
}

.testimonial .author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}

.testimonial .author span {
  font-weight: 400;
  color: var(--rose);
  display: block;
  margin-top: 2px;
}

/* ========================================
   "FOR YOU IF" SECTIONS
   ======================================== */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.cross-list li::before {
  content: '✕';
  color: var(--rose);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--brown);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 106, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clay);
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1;
  min-width: 120px;
}

.radio-option input { display: none; }

.radio-option label {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.radio-option input:checked + label {
  border-color: var(--gold);
  background: rgba(201, 164, 106, 0.08);
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  margin: 16px 0 4px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card .features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card .features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ========================================
   BLOG GRID
   ======================================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--clay), var(--rose));
}

.blog-card-body {
  padding: 28px;
}

.blog-card-body .category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   PAGE HERO (Interior pages)
   ======================================== */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--clay) 100%);
}

.page-hero h1 {
  margin-bottom: 16px;
}

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

/* ========================================
   SPLIT SECTIONS
   ======================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-text h2 {
  margin-bottom: 16px;
}

.split-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--clay), var(--rose));
  min-height: 400px;
}

/* ========================================
   VALUES
   ======================================== */
.value-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 164, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--brown);
  padding: 64px 24px 32px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand span { color: var(--gold); }

.footer-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer ul li { margin-bottom: 10px; }

.footer ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ========================================
   QUOTE BLOCK
   ======================================== */
.quote-block {
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 16px;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246, 241, 235, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 48px 24px; }
  .split-img { min-height: 280px; }
}
