:root {
      --gg-sage: #b7c88e;
      --gg-forest: #153828;
      --gg-dark: #231f20;
      --gg-cream: #f7f8de;
      --gg-blue: #0ea5e9;
      --gg-purple: #8b5cf6;
    }
    * { box-sizing: border-box; }
    body {
      font-family: Georgia, 'Times New Roman', serif;
      background: var(--gg-cream);
      margin: 0;
      color: var(--gg-dark);
      line-height: 1.7;
      font-size: 18px;
    }
    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 24px;
    }
    
    /* Header */
    .header {
      background: var(--gg-forest);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .logo-img {
      height: 60px;
      width: auto;
    }
    
    /* Urgency Bar */
    .urgency-bar {
      background: var(--gg-sage);
      color: var(--gg-dark);
      text-align: center;
      padding: 12px 20px;
      font-weight: bold;
      font-family: system-ui, sans-serif;
      font-size: 15px;
    }
    
    /* Hero */
    .hero {
      padding: 60px 0 50px;
      text-align: center;
    }
    .hero h1 {
      font-size: 42px;
      line-height: 1.2;
      margin: 0 0 24px;
      color: var(--gg-forest);
    }
    .hero .subhead {
      font-size: 22px;
      color: #444;
      margin-bottom: 32px;
    }
    .btn-primary {
      display: inline-block;
      background: var(--gg-forest);
      color: #fff;
      padding: 20px 40px;
      font-size: 22px;
      font-family: system-ui, sans-serif;
      font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 15px rgba(21, 56, 40, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(21, 56, 40, 0.4);
      background: #1e4d38;
    }
    .hero-note {
      margin-top: 16px;
      font-size: 14px;
      color: #666;
      font-family: system-ui, sans-serif;
    }
    
    /* Section Styling */
    .section {
      padding: 50px 0;
    }
    .section-alt {
      background: #fff;
    }
    .section h2 {
      font-size: 32px;
      margin: 0 0 24px;
      color: var(--gg-forest);
    }
    .section p {
      margin: 0 0 20px;
    }
    
    /* Expose Section */
    .expose {
      background: var(--gg-forest);
      color: #e5e5e5;
      padding: 60px 0;
    }
    .expose h2 {
      color: #fff;
      font-size: 34px;
      margin-bottom: 30px;
    }
    .expose-intro {
      font-style: italic;
      font-size: 20px;
      border-left: 4px solid var(--gg-sage);
      padding-left: 20px;
      margin-bottom: 30px;
    }
    .expose ul {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }
    .expose li {
      padding: 12px 0 12px 32px;
      position: relative;
      font-family: system-ui, sans-serif;
      font-size: 17px;
    }
    .expose li::before {
      content: "✗";
      position: absolute;
      left: 0;
      color: #ef4444;
      font-weight: bold;
    }
    
    /* Solution Section */
    .solution-list {
      list-style: none;
      padding: 0;
      margin: 30px 0;
    }
    .solution-list li {
      padding: 14px 0 14px 36px;
      position: relative;
      font-family: system-ui, sans-serif;
    }
    .solution-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--gg-sage);
      font-weight: bold;
      font-size: 20px;
    }
    
    /* Testimonials */
    .testimonial {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      margin: 24px 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border-left: 5px solid var(--gg-sage);
    }
    .testimonial p {
      font-style: italic;
      margin-bottom: 16px;
    }
    .testimonial .author {
      font-weight: bold;
      font-family: system-ui, sans-serif;
      font-size: 15px;
      color: var(--gg-forest);
    }
    .stars {
      color: #d4a855;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    
    /* Clean Club Value Stack */
    .value-stack {
      background: linear-gradient(135deg, var(--gg-cream) 0%, #e8ebd4 100%);
      border: 3px solid var(--gg-sage);
      border-radius: 16px;
      padding: 36px;
      margin: 40px 0;
    }
    .value-stack h3 {
      margin: 0 0 20px;
      font-size: 26px;
      color: var(--gg-forest);
    }
    .value-stack ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .value-stack li {
      padding: 10px 0;
      font-family: system-ui, sans-serif;
      font-size: 17px;
    }
    .value-stack li strong {
      color: var(--gg-dark);
    }
    .value-item-value {
      color: var(--gg-forest);
      font-weight: bold;
    }
    
    /* Guarantee */
    .guarantee {
      text-align: center;
      padding: 40px;
      background: #fff;
      border-radius: 12px;
      margin: 40px 0;
    }
    .guarantee h3 {
      margin: 0 0 16px;
      font-size: 24px;
      color: var(--gg-forest);
    }
    
    /* Service Area */
    .service-area {
      font-family: system-ui, sans-serif;
      font-size: 15px;
      color: #666;
      text-align: center;
      padding: 20px;
    }
    
    /* Calculator Modal */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      z-index: 1000;
      overflow-y: auto;
      padding: 20px;
    }
    .modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
    .modal {
      background: #fff;
      border-radius: 16px;
      max-width: 600px;
      width: 100%;
      margin: 40px 0;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      overflow: hidden;
    }
    .modal-header {
      padding: 20px 24px;
      background: var(--gg-forest);
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .modal-header h2 { margin: 0; font-size: 22px; }
    .modal-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      line-height: 1;
    }
    .modal-body { padding: 24px; }
    .progress {
      display: flex;
      gap: 8px;
      margin-bottom: 24px;
    }
    .step-dot {
      flex: 1;
      height: 6px;
      background: #e5e7eb;
      border-radius: 999px;
      overflow: hidden;
    }
    .step-dot.active, .step-dot.done { background: var(--gg-sage); }
    .step-dot.done { opacity: 0.6; }
    
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 500px) {
      .form-grid { grid-template-columns: 1fr; }
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {
      font-weight: 600;
      font-size: 14px;
      font-family: system-ui, sans-serif;
      color: var(--gg-forest);
    }
    .form-group input, .form-group select {
      padding: 12px 14px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      font-size: 16px;
      font-family: system-ui, sans-serif;
    }
    .form-group input:focus, .form-group select:focus {
      outline: none;
      border-color: var(--gg-sage);
      box-shadow: 0 0 0 3px rgba(183, 200, 142, 0.3);
    }
    .referral-note {
      background: #fef3c7;
      border: 1px solid #fbbf24;
      border-radius: 10px;
      padding: 12px;
      font-size: 14px;
      font-family: system-ui, sans-serif;
      color: #78350f;
      margin-top: 8px;
    }
    .form-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 24px;
      gap: 12px;
    }
    .btn {
      padding: 14px 24px;
      border-radius: 10px;
      font-weight: 700;
      font-family: system-ui, sans-serif;
      font-size: 16px;
      cursor: pointer;
      border: none;
    }
    .btn-back {
      background: #f1f5f9;
      color: var(--gg-forest);
    }
    .btn-next {
      background: var(--gg-sage);
      color: var(--gg-forest);
    }
    .radio-group {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin: 12px 0;
      font-family: system-ui, sans-serif;
    }
    .radio-group label {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }
    .hint {
      font-size: 13px;
      color: #64748b;
      font-family: system-ui, sans-serif;
      margin-top: 6px;
    }
    
    /* Results */
    .results-box {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 20px;
      margin: 20px 0;
      font-family: system-ui, sans-serif;
    }
    .results-box h3 {
      margin: 0 0 16px;
      font-size: 20px;
    }
    .club-benefits-box {
      background: linear-gradient(135deg, var(--gg-cream) 0%, #e8ebd4 100%);
      border: 2px solid var(--gg-sage);
      border-radius: 12px;
      padding: 20px;
      margin: 16px 0;
      font-family: system-ui, sans-serif;
    }
    .checkout-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }
    .btn-deposit { background: var(--gg-forest); color: #fff; }
    .btn-sub { background: var(--gg-sage); color: var(--gg-forest); }
    .btn-annual { background: var(--gg-purple); color: #fff; }
    .terms-note {
      font-size: 12px;
      color: #64748b;
      margin-top: 12px;
      font-family: system-ui, sans-serif;
    }
    .terms-note a { color: #475569; }
    
    /* Blog Section */
    .blog-section { padding: 60px 0; }
    .blog-section h2 {
      text-align: center;
      margin-bottom: 40px;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .blog-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.2s;
    }
    /* Blog cards: image */
    .blog-card img{
      width: 100%;
      height: 190px;
      object-fit: contain;
      background: #f6f8f6;
      display:block;
    }

    .blog-card:hover { transform: translateY(-4px); }
    .blog-card-body {
      padding: 20px;
    }
    .blog-card h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }
    .blog-card h3 a {
      color: var(--gg-forest);
      text-decoration: none;
    }
    .blog-card h3 a:hover { color: var(--gg-sage); }
    .blog-card .date {
      font-size: 13px;
      color: #64748b;
      font-family: system-ui, sans-serif;
    }
    .blog-card .excerpt {
      font-size: 15px;
      color: #555;
      margin-top: 10px;
    }
    .blog-cta {
      text-align: center;
      margin-top: 32px;
    }
    .blog-cta a {
      color: var(--gg-forest);
      font-weight: bold;
      font-family: system-ui, sans-serif;
    }
    
    /* Footer */
    .footer {
      background: var(--gg-forest);
      color: #c5d4c0;
      padding: 40px 0;
      font-family: system-ui, sans-serif;
      font-size: 14px;
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }
    .footer h4 {
      color: #fff;
      margin: 0 0 12px;
      font-size: 16px;
    }
    .footer a {
      color: var(--gg-sage);
      text-decoration: none;
    }
    .footer-bottom {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid #1e4d38;
      text-align: center;
      font-size: 13px;
    }
    
    @media (max-width: 640px) {
      .hero h1 { font-size: 32px; }
      .hero .subhead { font-size: 18px; }
      .section h2 { font-size: 26px; }
      .expose h2 { font-size: 28px; }
    }

article img, .post img{
  max-width:100%;
  height:auto;
  object-fit:contain;
}
figure{margin:18px 0;}
figcaption{font-size:0.95rem; opacity:0.85; margin-top:6px;}



.owner-section{
  padding:48px 0;
  background:#f6f8f6;
}
.owner-grid{
  display:grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap:32px;
  align-items:center;
}
.owner-img{
  width:100%;
  height:auto;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
}
@media (max-width: 900px){
  .owner-grid{grid-template-columns:1fr;}
}



.approach-hero{
  display:grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap:24px;
  align-items:start;
  margin: 22px 0 10px;
}
.approach-page .lead{
  font-size:1.1rem;
  opacity:0.9;
  margin-top:6px;
}
.owner-block{
  background:#f3f6f4;
  border-radius:16px;
  padding:18px;
}
.owner-photo{
  width:100%;
  height:auto;
  border-radius:14px;
  display:block;
}
.owner-name{font-weight:800;margin:12px 0 0;}
.owner-title{margin:2px 0 0;opacity:0.85;}
.owner-note{margin:10px 0 0;opacity:0.85;}
.approach-section{margin: 26px 0;}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:18px;}
.header-nav a{margin-left:12px; text-decoration:none;}
@media (max-width: 900px){
  .approach-hero{grid-template-columns:1fr;}
}
