:root {
  --forest:    #2D4A3E;
  --pine:      #1A3028;
  --moss:      #4E7A5F;
  --sage:      #8FB89A;
  --cream:     #F5F0E8;
  --bark:      #8C6B4A;
  --amber:     #D4943A;
  --water:     #5B8FA8;
  --mist:      #E8EDE9;
  --text:      #1E2D26;
  --light-text:#6B7F72;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(29, 48, 40, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(143, 184, 154, 0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: var(--pine) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #e8a84a !important; color: var(--pine) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 5% 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(29,48,40,0.92) 0%, rgba(29,48,40,0.75) 50%, rgba(29,48,40,0.88) 100%),
    url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1600&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900'%3E%3Cpath fill='rgba(26,48,40,0.6)' d='M0 900V600l60-80 60 40 80-120 80 60 100-160 100 80 120-200 120 100 140-220 140 110 140-180 140 90 120-160 120 80 80-100 80 50V900z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,148,58,0.15);
  border: 1px solid rgba(212,148,58,0.4);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.82);
  max-width: 520px;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeUp 0.7s 0.45s ease both;
}
.hero-stats {
  position: absolute; bottom: 3rem; right: 5%;
  display: flex; gap: 2.5rem;
  animation: fadeUp 0.7s 0.6s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  margin-top: 0.3rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber); color: var(--pine); border: none;
  padding: 0.9rem 2rem; border-radius: 5px;
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: #e8a84a; transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(245,240,232,0.5);
  padding: 0.9rem 2rem; border-radius: 5px;
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--pine);
  padding: 1rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(245,240,232,0.7);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* ── SECTION COMMONS ── */
section { padding: 6rem 5%; }
.section-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2; color: var(--pine);
  max-width: 600px; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--light-text); max-width: 560px; margin-bottom: 3rem;
}

/* ── WHY US ── */
.why { background: var(--mist); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(143,184,154,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.why-card {
  background: white; border-radius: 10px; padding: 1.5rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  box-shadow: 0 2px 16px rgba(29,48,40,0.07);
  border-left: 4px solid var(--moss);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateX(4px); box-shadow: 0 4px 24px rgba(29,48,40,0.12); }
.why-icon {
  width: 44px; height: 44px; background: var(--mist);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--forest);
}
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--pine); margin-bottom: 0.3rem; }
.why-card p { font-size: 0.9rem; line-height: 1.6; color: var(--light-text); }
.why-image { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(29,48,40,0.2); }
.why-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.why-image-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--amber); color: var(--pine);
  padding: 0.6rem 1rem; border-radius: 6px;
  font-size: 0.85rem; font-weight: 700;
}

/* ── SERVICES ── */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: white; border-radius: 12px; padding: 2rem;
  border: 1px solid rgba(143,184,154,0.25);
  box-shadow: 0 2px 12px rgba(29,48,40,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--moss); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(29,48,40,0.12); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--mist);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--forest); margin-bottom: 1.2rem;
}
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--pine); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.92rem; line-height: 1.65; color: var(--light-text); margin-bottom: 1.2rem; }
.service-link {
  font-size: 0.88rem; font-weight: 700; color: var(--moss);
  text-decoration: none; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.3rem; transition: color 0.2s;
}
.service-link:hover { color: var(--amber); }

/* ── HOSTING ── */
.hosting { background: var(--pine); }
.hosting .section-title { color: var(--cream); }
.hosting .section-label { color: var(--sage); }
.hosting .section-sub { color: rgba(245,240,232,0.65); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(143,184,154,0.2);
  border-radius: 12px; padding: 2rem 1.5rem;
  position: relative; transition: background 0.2s, border-color 0.2s;
}
.plan-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(143,184,154,0.45); }
.plan-card.featured { background: var(--forest); border-color: var(--amber); transform: scale(1.03); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--pine);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.9rem;
  border-radius: 100px; white-space: nowrap;
}
.plan-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--cream); margin-bottom: 0.3rem; }
.plan-tagline { font-size: 0.82rem; color: var(--sage); margin-bottom: 1.2rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 0.2rem; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--sage); }
.plan-divider { height: 1px; background: rgba(143,184,154,0.2); margin: 1.2rem 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.plan-features li { font-size: 0.88rem; color: rgba(245,240,232,0.75); display: flex; align-items: center; gap: 0.5rem; }
.plan-features li::before {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234E7A5F'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-plan {
  width: 100%; background: transparent;
  border: 2px solid rgba(143,184,154,0.5);
  color: var(--cream); padding: 0.7rem; border-radius: 6px;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  text-decoration: none; display: block; text-align: center;
}
.btn-plan:hover { background: var(--moss); border-color: var(--moss); }
.plan-card.featured .btn-plan { background: var(--amber); border-color: var(--amber); color: var(--pine); }
.plan-card.featured .btn-plan:hover { background: #e8a84a; }

/* ── DESIGN PACKAGES ── */
.design { background: var(--mist); }
.design-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.design-card {
  background: white; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(143,184,154,0.2);
  box-shadow: 0 2px 16px rgba(29,48,40,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.design-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(29,48,40,0.13); }
.design-card-header { background: var(--forest); padding: 2rem 1.8rem 1.5rem; position: relative; }
.design-card-header.amber { background: var(--amber); }
.design-card-header.bark  { background: var(--bark); }
.design-card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.2); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 100px;
}
.design-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; margin-bottom: 0.25rem; }
.design-card-sub { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.design-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: white; margin-top: 0.8rem; line-height: 1; }
.design-price span { font-size: 0.95rem; font-weight: 400; opacity: 0.75; }
.design-card-body { padding: 1.8rem; }
.design-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.design-features li { font-size: 0.9rem; color: var(--text); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.4; }
.check { color: var(--moss); font-size: 1rem; line-height: 1.4; flex-shrink: 0; }
.design-delivery { font-size: 0.82rem; color: var(--light-text); margin-bottom: 1.2rem; padding-top: 0.8rem; border-top: 1px solid var(--mist); }
.btn-design {
  width: 100%; background: var(--forest); color: var(--cream); border: none;
  padding: 0.8rem; border-radius: 6px;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; display: block; text-align: center;
}
.btn-design:hover { background: var(--pine); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: white; border-radius: 12px; padding: 2rem;
  border: 1px solid rgba(143,184,154,0.2);
  box-shadow: 0 2px 12px rgba(29,48,40,0.06);
  position: relative;
}
.stars { color: var(--amber); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.9rem; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--forest); font-weight: 600; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--pine); }
.author-biz { font-size: 0.8rem; color: var(--light-text); }
.quote-mark {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-family: 'Playfair Display', serif; font-size: 4rem;
  line-height: 1; color: var(--mist); user-select: none;
}

/* ── BLOG PREVIEW ── */
.blog-preview { background: var(--mist); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: white; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(143,184,154,0.2);
  box-shadow: 0 2px 12px rgba(29,48,40,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(29,48,40,0.12); }
.blog-card-img {
  width: 100%; height: 190px; object-fit: cover; display: block;
  background: var(--mist);
}
.blog-card-img-placeholder {
  width: 100%; height: 190px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: var(--mist); color: var(--moss);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.65rem;
  border-radius: 100px; margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--pine);
  line-height: 1.35; margin-bottom: 0.6rem;
}
.blog-card p { font-size: 0.88rem; line-height: 1.6; color: var(--light-text); margin-bottom: 1rem; }
.blog-meta { font-size: 0.78rem; color: var(--light-text); }
.blog-preview-footer { text-align: center; margin-top: 2.5rem; }

/* ── CONTACT ── */
.contact {
  background: linear-gradient(160deg, var(--pine) 0%, var(--forest) 100%);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,148,58,0.08) 0%, transparent 65%);
  border-radius: 50%;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.contact-left .section-title { color: var(--cream); }
.contact-left .section-label { color: var(--sage); }
.contact-left .section-sub { color: rgba(245,240,232,0.65); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.85rem; color: rgba(245,240,232,0.8); font-size: 0.95rem; }
.contact-info-item svg { color: var(--amber); flex-shrink: 0; }
.contact-form-wrap { background: white; border-radius: 14px; padding: 2.5rem; box-shadow: 0 24px 64px rgba(0,0,0,0.25); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--pine); margin-bottom: 0.4rem; }
.form-subtitle { font-size: 0.9rem; color: var(--light-text); margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid #e0e8e2; border-radius: 7px;
  font-family: 'Lato', sans-serif; font-size: 0.95rem;
  color: var(--text); background: white;
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--moss); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--forest); color: var(--cream); border: none;
  padding: 1rem; border-radius: 7px;
  font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--pine); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--pine); margin-bottom: 0.5rem; }
.form-success p { color: var(--light-text); font-size: 0.95rem; }

/* ── FOOTER ── */
footer { background: #0F1E16; padding: 3rem 5% 2rem; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border-bottom: 1px solid rgba(143,184,154,0.12);
  padding-bottom: 2rem; margin-bottom: 1.5rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); font-weight: 600; }
.footer-logo span { color: var(--amber); }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { color: rgba(245,240,232,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
.footer-copy { font-size: 0.8rem; color: rgba(245,240,232,0.35); }

/* ── BLOG PAGE ── */
.page-hero {
  padding: 10rem 5% 5rem;
  background: linear-gradient(160deg, var(--pine) 0%, var(--forest) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cpath fill='rgba(26,48,40,0.5)' d='M0 400V250l60-60 60 30 80-90 80 45 100-120 100 60 120-150 120 75 140-165 140 82 140-135 140 67 120-120 120 60 80-75 80 37V400z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 0.8rem; }
.page-hero p { font-size: 1.1rem; color: rgba(245,240,232,0.75); max-width: 540px; }

.blog-listing { background: var(--cream); padding: 5rem 5%; }
.blog-listing-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }

.blog-posts { display: flex; flex-direction: column; gap: 2rem; }
.blog-post-card {
  background: white; border-radius: 12px; overflow: hidden;
  display: grid; grid-template-columns: 240px 1fr;
  border: 1px solid rgba(143,184,154,0.2);
  box-shadow: 0 2px 12px rgba(29,48,40,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
}
.blog-post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(29,48,40,0.11); }
.blog-post-img {
  width: 100%; height: 100%; min-height: 180px; object-fit: cover;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-post-body { padding: 1.5rem; }
.blog-post-body .blog-tag { margin-bottom: 0.6rem; }
.blog-post-body h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--pine); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-post-body p { font-size: 0.9rem; line-height: 1.65; color: var(--light-text); margin-bottom: 0.8rem; }
.blog-post-meta { font-size: 0.78rem; color: var(--light-text); display: flex; gap: 1rem; }

.blog-sidebar { display: flex; flex-direction: column; gap: 1.8rem; }
.sidebar-widget { background: white; border-radius: 12px; padding: 1.5rem; border: 1px solid rgba(143,184,154,0.2); }
.sidebar-widget h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--pine); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--mist); }
.sidebar-categories { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-categories li a { text-decoration: none; color: var(--text); font-size: 0.9rem; display: flex; justify-content: space-between; padding: 0.3rem 0; transition: color 0.2s; }
.sidebar-categories li a:hover { color: var(--moss); }
.sidebar-categories .count { background: var(--mist); color: var(--light-text); font-size: 0.75rem; padding: 0.1rem 0.5rem; border-radius: 100px; }
.sidebar-cta { background: var(--forest); color: var(--cream); text-align: center; }
.sidebar-cta h3 { color: var(--amber); border-bottom-color: rgba(143,184,154,0.3); }
.sidebar-cta p { font-size: 0.88rem; color: rgba(245,240,232,0.75); margin-bottom: 1rem; }
.btn-sidebar {
  display: block; width: 100%;
  background: var(--amber); color: var(--pine);
  text-decoration: none; text-align: center;
  padding: 0.7rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-sidebar:hover { background: #e8a84a; }

/* ── SINGLE POST ── */
.post-content { background: var(--cream); padding: 5rem 5%; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.post-article { background: white; border-radius: 14px; padding: 3rem; box-shadow: 0 2px 16px rgba(29,48,40,0.07); }
.post-article h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--pine); margin-bottom: 1rem; line-height: 1.2; }
.post-article-meta { display: flex; gap: 1.5rem; font-size: 0.82rem; color: var(--light-text); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--mist); flex-wrap: wrap; }
.post-article-body { font-size: 1rem; line-height: 1.8; color: var(--text); }
.post-article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--pine); margin: 2rem 0 0.8rem; }
.post-article-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--pine); margin: 1.5rem 0 0.6rem; }
.post-article-body p { margin-bottom: 1.2rem; }
.post-article-body ul, .post-article-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.post-article-body li { margin-bottom: 0.4rem; }
.post-article-body blockquote { border-left: 4px solid var(--moss); padding-left: 1.2rem; margin: 1.5rem 0; font-style: italic; color: var(--light-text); }
.post-article-body a { color: var(--moss); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { position: static; flex-direction: row; gap: 2rem; margin-top: 3rem; }
  .hero-content { max-width: 100%; }
  .blog-listing-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-img { min-height: 200px; }
}
@media (max-width: 600px) {
  nav { padding: 1rem 4%; }
  .nav-links { display: none; }
  section { padding: 4rem 4%; }
  .plans-grid, .design-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .hero-stats { flex-direction: row; justify-content: flex-start; gap: 1.8rem; }
  .contact-form-wrap { padding: 1.8rem 1.2rem; }
}
