/*
Theme Name: morPh
Theme URI: https://morph-grow.com
Author: morPh
Author URI: https://morph-grow.com
Description: Official morPh brand theme — Excellence | Growth | Impact. A clean, modern, elevated business management and family-office-lite platform website.
Version: 1.0.0
License: Proprietary
License URI: https://morph-grow.com
Text Domain: morph
Tags: business, professional, custom-colors, custom-logo, full-width-template, sticky-post, theme-options
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --green-deep: #1a5c2a;
  --green-mid: #2e8b45;
  --green-bright: #4ecb6e;
  --green-lime: #a8e063;
  --green-pale: #d4f5b0;
  --green-ghost: #f0faf0;
  --charcoal: #1c1c1c;
  --charcoal-mid: #2e2e2e;
  --gray-dark: #4a4a4a;
  --gray-mid: #7a7a7a;
  --gray-light: #c8c8c8;
  --gray-pale: #f2f2f0;
  --off-white: #fafaf8;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --max-w: 1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.entry-content h1 { font-size: clamp(36px, 4vw, 58px); margin-bottom: 24px; }
.entry-content h2 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 20px; }
.entry-content h3 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 16px; }
.entry-content p { font-size: 16px; color: var(--gray-dark); font-weight: 300; line-height: 1.8; margin-bottom: 20px; }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; font-size: 15px; color: var(--gray-dark); font-weight: 300; }
.entry-content a { color: var(--green-mid); text-decoration: underline; }
.entry-content a:hover { color: var(--green-deep); }
.entry-content blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  color: var(--charcoal);
  border-left: 2px solid var(--green-mid);
  padding-left: 32px;
  margin: 40px 0;
  line-height: 1.4;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 120px 0; }
.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-body {
  font-size: 16px;
  color: var(--gray-dark);
  max-width: 620px;
  line-height: 1.8;
  font-weight: 300;
}
.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--green-mid), var(--green-lime));
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.25s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); color: var(--white); }
.btn-ghost {
  color: var(--charcoal);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 24px;
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--green-mid); color: var(--green-mid); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,139,69,0.12);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.site-branding a { display: flex; align-items: center; }
.site-branding img, .custom-logo { height: 38px; width: auto; }
.site-branding .site-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

/* Primary nav menu */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#primary-menu > li > a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dark);
  transition: color 0.2s;
  text-decoration: none;
}
#primary-menu > li > a:hover { color: var(--green-mid); }
#primary-menu .menu-cta > a {
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
#primary-menu .menu-cta > a:hover { background: var(--green-mid); color: var(--white); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  display: block;
  transition: all 0.3s;
}

/* WordPress menu dropdown */
#primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
  list-style: none;
}
#primary-menu li:hover > .sub-menu { opacity: 1; visibility: visible; }
#primary-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray-dark);
  text-transform: none;
  letter-spacing: 0;
  transition: color 0.2s;
}
#primary-menu .sub-menu li a:hover { color: var(--green-mid); }
#primary-menu li { position: relative; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-ghost) 60%, rgba(168,224,99,0.12) 100%);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-60%);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(78,203,110,0.18) 0%, rgba(168,224,99,0.10) 50%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-orb2 {
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,69,0.07) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green-mid);
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 32px;
  max-width: 760px;
}
.hero-headline em { font-style: italic; color: var(--green-mid); }
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-dark);
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: var(--charcoal); }
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   VALUE SECTION
   ============================================================ */
.value-section { background: var(--charcoal); color: var(--white); padding: 100px 0; }
.value-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.value-left .section-title { color: var(--white); }
.value-left .section-label { color: var(--green-lime); }
.value-body { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.85; font-weight: 300; margin-top: 24px; }
.value-cards { display: flex; flex-direction: column; gap: 1px; }
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 28px 32px;
  transition: background 0.25s;
}
.value-card:hover { background: rgba(78,203,110,0.08); }
.value-card-title { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-lime); font-weight: 500; margin-bottom: 8px; font-family: var(--font-sans); }
.value-card-text { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 300; }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-section { background: var(--off-white); padding: 120px 0; }
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--gray-light);
}
.what-item {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: border-color 0.25s, transform 0.2s;
}
.what-item:hover { border-color: var(--green-pale); transform: translateY(-3px); }
.what-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  position: relative;
}
.what-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-ghost);
  border: 1px solid var(--green-pale);
}
.what-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-mid);
}
.what-item-title { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; font-family: var(--font-sans); }
.what-item-text { font-size: 13px; color: var(--gray-mid); font-weight: 300; line-height: 1.7; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--white); padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 100px; align-items: start; }
.about-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--charcoal);
  border-left: 2px solid var(--green-mid);
  padding-left: 32px;
  margin: 40px 0;
}
.about-quote span { color: var(--green-mid); }
.about-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-ghost);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
  border: 1px solid var(--green-pale);
  font-family: var(--font-sans);
}
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 16px; padding: 0; }
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-dark);
  font-weight: 300;
}
.promise-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-lime));
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--gray-pale); padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; margin-top: 64px; }
.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--green-mid), var(--green-lime));
  transition: width 0.4s;
}
.service-card:hover::after { width: 100%; }
.service-num { font-family: var(--font-serif); font-size: 52px; font-weight: 300; color: var(--green-pale); line-height: 1; margin-bottom: 20px; }
.service-title { font-size: 15px; font-weight: 500; color: var(--charcoal); margin-bottom: 16px; font-family: var(--font-sans); }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.service-list li { font-size: 13px; color: var(--gray-mid); font-weight: 300; padding-left: 16px; position: relative; }
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--green-bright); font-size: 11px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--charcoal); padding: 120px 0; }
.how-section .section-title { color: var(--white); }
.how-section .section-label { color: var(--green-lime); }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 80px; position: relative; }
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,224,99,0.3), rgba(168,224,99,0.3), transparent);
  z-index: 0;
}
.how-step { display: flex; flex-direction: column; align-items: flex-start; padding: 0 32px; position: relative; z-index: 1; }
.how-step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.06); }
.step-dot { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(168,224,99,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; background: rgba(168,224,99,0.05); }
.step-num { font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: var(--green-lime); }
.step-title { font-size: 14px; font-weight: 500; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; font-family: var(--font-sans); }
.step-text { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.75; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-section { background: var(--white); padding: 120px 0; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.client-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 36px; padding: 0; }
.client-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray-pale); transition: padding-left 0.2s; }
.client-item:hover { padding-left: 8px; }
.client-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--green-mid), var(--green-lime)); flex-shrink: 0; }
.client-label { font-size: 15px; font-weight: 400; color: var(--charcoal); }
.who-criteria { background: var(--gray-pale); padding: 44px 40px; border-left: 2px solid var(--green-mid); margin-top: 16px; }
.criteria-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 24px; font-family: var(--font-sans); }
.criteria-list { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; }
.criteria-list li { font-size: 14px; color: var(--gray-dark); font-weight: 300; display: flex; align-items: flex-start; gap: 12px; }
.criteria-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; margin-top: 9px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--off-white); padding: 120px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.price-card { background: var(--white); padding: 44px 36px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform 0.25s; }
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { background: var(--charcoal); z-index: 1; transform: scale(1.02) translateY(-4px); }
.price-card.featured:hover { transform: scale(1.02) translateY(-8px); }
.price-badge { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; background: linear-gradient(135deg, var(--green-mid), var(--green-lime)); color: var(--white); padding: 6px 14px; display: inline-block; margin-bottom: 24px; border-radius: 2px; font-weight: 500; font-family: var(--font-sans); }
.price-tier { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 12px; font-family: var(--font-sans); }
.price-card.featured .price-tier { color: var(--green-lime); }
.price-name { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--charcoal); margin-bottom: 8px; line-height: 1.1; }
.price-card.featured .price-name { color: var(--white); }
.price-desc { font-size: 13px; color: var(--gray-mid); font-weight: 300; margin-bottom: 28px; line-height: 1.6; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.5); }
.price-divider { height: 1px; background: var(--gray-pale); margin-bottom: 24px; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.08); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 32px; padding: 0; }
.price-list li { font-size: 13px; color: var(--gray-dark); font-weight: 300; display: flex; gap: 10px; align-items: flex-start; }
.price-card.featured .price-list li { color: rgba(255,255,255,0.65); }
.price-list li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--green-ghost); border: 1px solid var(--green-pale); flex-shrink: 0; margin-top: 1px; }
.price-card.featured .price-list li::before { background: rgba(168,224,99,0.12); border-color: rgba(168,224,99,0.25); }
.best-for { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 10px; font-family: var(--font-sans); }
.price-card.featured .best-for { color: var(--green-lime); }
.best-for-text { font-size: 12px; color: var(--gray-mid); font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
.price-card.featured .best-for-text { color: rgba(255,255,255,0.4); }
.btn-price { display: block; text-align: center; padding: 14px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; text-decoration: none; border-radius: 2px; transition: all 0.25s; font-family: var(--font-sans); }
.btn-price-ghost { border: 1px solid var(--gray-light); color: var(--charcoal); }
.btn-price-ghost:hover { border-color: var(--green-mid); color: var(--green-mid); }
.btn-price-solid { background: linear-gradient(135deg, var(--green-mid), var(--green-lime)); color: var(--charcoal); }
.btn-price-solid:hover { opacity: 0.9; transform: translateY(-1px); }
.addon-box { margin-top: 48px; background: var(--white); border: 1px solid var(--gray-light); padding: 36px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.addon-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-mid); font-weight: 500; margin-bottom: 16px; font-family: var(--font-sans); }
.addon-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.addon-list li { font-size: 13px; color: var(--gray-dark); font-weight: 300; padding-left: 14px; position: relative; }
.addon-list li::before { content: '+'; position: absolute; left: 0; color: var(--green-mid); font-weight: 500; }

/* ============================================================
   WHY MORPH
   ============================================================ */
.why-section { background: var(--white); padding: 120px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-intro { font-family: var(--font-serif); font-size: clamp(22px, 2.5vw, 32px); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--charcoal); margin-bottom: 36px; }
.benefit-items { display: flex; flex-direction: column; gap: 28px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.benefit-icon { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--green-ghost); border: 1px solid var(--green-pale); border-radius: 2px; }
.benefit-icon svg { width: 16px; height: 16px; stroke: var(--green-mid); fill: none; stroke-width: 1.5; }
.benefit-label { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; font-family: var(--font-sans); }
.benefit-text { font-size: 13px; color: var(--gray-mid); font-weight: 300; line-height: 1.7; }
.why-close { font-family: var(--font-serif); font-size: 20px; font-style: italic; font-weight: 300; color: var(--green-mid); margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--green-pale); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: linear-gradient(135deg, var(--green-deep) 0%, var(--charcoal) 60%); padding: 140px 0; position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; right: -200px; top: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(168,224,99,0.12) 0%, transparent 60%); pointer-events: none; }
.contact-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.contact-section .section-label { color: var(--green-lime); display: block; text-align: center; }
.contact-title { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 68px); font-weight: 300; color: var(--white); line-height: 1.12; margin-bottom: 24px; }
.contact-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; font-weight: 300; margin-bottom: 48px; }
.contact-details { display: flex; gap: 36px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.contact-detail { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 300; text-decoration: none; transition: color 0.2s; }
.contact-detail:hover { color: var(--green-lime); }
.contact-detail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green-lime); opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--charcoal-mid);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 28px; opacity: 0.6; }
.footer-logo .site-title { font-family: var(--font-serif); font-size: 22px; font-weight: 300; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.site-info { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer-nav ul { display: flex; gap: 24px; list-style: none; padding: 0; }
.footer-nav ul li a { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.footer-nav ul li a:hover { color: var(--green-lime); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   WORDPRESS CORE - ALIGNMENT & BLOCKS
   ============================================================ */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray-mid); font-style: italic; margin-top: 8px; }
.screen-reader-text { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; top: -100px; left: 0; background: var(--green-deep); color: var(--white); padding: 12px 20px; z-index: 99999; transition: top 0.3s; }
.skip-link:focus { top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  #site-header { padding: 0 24px; }
  #primary-menu { display: none; }
  #primary-menu.toggled {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--off-white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-light);
    align-items: flex-start;
    z-index: 999;
  }
  .menu-toggle { display: flex; }
  .hero-section { padding: 120px 24px 80px; }
  .value-inner { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .addon-box { grid-template-columns: 1fr; gap: 28px; }
  #colophon { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
}
@media (max-width: 560px) {
  .how-steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
}
