body {
  outline: 12px solid red !important;
}

  :root {
    --sky: #d6eaf8;
    --navy: #1a3a4a;
    --salmon: #d4836a;
    --amber: #e8a93a;
    --cream: #f5ede0;
    --white: #ffffff;
    --light-sky: #eaf4fb;
    --text: #1a3a4a;
    --muted: #5a7a8a;
    --border: rgba(26,58,74,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
  }

  .nav-logo-icon {
    width: 44px;
    height: 44px;
  }

  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.1;
  }

  .nav-logo-text span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--navy); }

  .nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--salmon) !important; color: var(--white) !important; }

  /* ─── PAGES ─── */
  .page {
  min-height: 100vh;
}


  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--light-sky) 0%, var(--sky) 50%, #c8dff0 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 80px 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,169,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: 40px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,131,106,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,58,74,0.08);
    border: 1px solid rgba(26,58,74,0.15);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 28px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--amber);
    border-radius: 50%;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 24px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--salmon);
  }

  .hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 400;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--salmon); transform: translateY(-1px); }

  .btn-secondary {
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    background: transparent;
  }

  .btn-secondary:hover { background: var(--navy); color: var(--white); }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
  }

  .stat { text-align: left; }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }

  .stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.04em;
  }

  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-logo-display {
    width: 380px;
    height: 380px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 100px rgba(26,58,74,0.15), 0 8px 24px rgba(26,58,74,0.08);
    animation: float 6s ease-in-out infinite;
  }

  .hero-logo-display img {
    width: 280px;
    height: 280px;
    object-fit: contain;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  /* ─── SECTIONS ─── */
  section { padding: 100px 80px; }

  .section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .section-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 600px;
  }

  /* ─── THREE PILLARS ─── */
  .pillars {
    background: var(--navy);
    padding: 100px 80px;
  }

  .pillars-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .pillars-header .section-eyebrow { color: var(--amber); }
  .pillars-header .section-title { color: var(--white); margin: 0 auto; }
  .pillars-header .section-body { color: rgba(255,255,255,0.6); margin: 16px auto 0; text-align: center; }

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

  .pillar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 36px;
    transition: all 0.3s;
  }

  .pillar:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
  }

  .pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }

  .pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .pillar-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
  }

  /* ─── STORY SECTION ─── */
  .story-section {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .story-image-area {
    position: relative;
  }

  .story-cards {
    display: grid;
    gap: 16px;
  }

  .person-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(26,58,74,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .person-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
    color: var(--white);
  }

  .avatar-matt { background: linear-gradient(135deg, var(--navy), #2a5a70); }
  .avatar-paula { background: linear-gradient(135deg, var(--salmon), #c06a50); }

  .person-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .person-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .person-tag {
    margin-left: auto;
    background: var(--light-sky);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  /* ─── SERVICES ─── */
  .services-section { background: var(--white); }

  .services-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .services-header .section-body { margin: 0 auto; text-align: center; }

  .services-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 24px;
  }

  .service-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
  }

  .service-card:hover { transform: translateY(-6px); }

  .service-card.featured {
    background: var(--navy);
    padding: 44px;
    color: var(--white);
  }

  .service-card.secondary {
    background: var(--sky);
    padding: 36px;
  }

  .service-card.tertiary {
    background: var(--cream);
    padding: 36px;
  }

  .service-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .service-card.secondary .service-badge { background: var(--navy); color: var(--white); }
  .service-card.tertiary .service-badge { background: var(--salmon); color: var(--white); }

  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    color: inherit;
  }

  .service-card.featured .service-title { color: var(--white); }
  .service-card.secondary .service-title, .service-card.tertiary .service-title { color: var(--navy); }

  .service-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
  .service-card.secondary .service-desc, .service-card.tertiary .service-desc { color: var(--muted); }

  .service-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
  }

  .service-card.featured .service-price { color: var(--amber); }
  .service-card.secondary .service-price, .service-card.tertiary .service-price { color: var(--navy); }

  .service-price-label {
    font-size: 12px;
    opacity: 0.6;
    font-weight: 400;
    margin-top: 4px;
  }

  .service-features {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .service-features li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .service-card.featured .service-features li { color: rgba(255,255,255,0.75); }
  .service-card.secondary .service-features li,
  .service-card.tertiary .service-features li { color: var(--muted); }

  .service-features li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--amber);
    color: var(--navy);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
  }

  .service-card.featured .service-features li,
  .service-card.featured .service-features li * { color: rgba(255,255,255,0.9); }

  /* ─── METHOD ─── */
  .method-section {
    background: linear-gradient(160deg, var(--light-sky), var(--sky));
    padding: 100px 80px;
  }

  .method-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .method-phases {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }

  .phase {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  .phase:last-child { border-bottom: none; }

  .phase-num {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .phase-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .phase-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
  }

  .method-aside {
    background: var(--white);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 8px 48px rgba(26,58,74,0.1);
    position: sticky;
    top: 100px;
    margin-top: 40px;
  }

  .method-aside h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .differentiator {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .differentiator:last-of-type { border-bottom: none; }

  .diff-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--light-sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .diff-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .diff-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { background: var(--white); }

  .testimonials-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .testimonials-header .section-body { margin: 0 auto; text-align: center; }

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

  .testimonial-card {
    background: var(--light-sky);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s;
  }

  .testimonial-card:hover { transform: translateY(-4px); }

  .testimonial-card.featured-t {
    background: var(--navy);
    grid-column: span 1;
  }

  .testimonial-quote {
    font-size: 32px;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
  }

  .testimonial-card.featured-t .testimonial-quote { color: var(--amber); }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 20px;
  }

  .testimonial-card.featured-t .testimonial-text { color: rgba(255,255,255,0.8); }

  .testimonial-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
  }

  .testimonial-card.featured-t .testimonial-name { color: var(--white); }

  .testimonial-role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }

  .testimonial-card.featured-t .testimonial-role { color: rgba(255,255,255,0.5); }

  .result-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
  }

  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: linear-gradient(135deg, var(--salmon) 0%, #c06a50 100%);
    padding: 80px;
    text-align: center;
  }

  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .cta-banner p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
  }

  .btn-white {
    background: var(--white);
    color: var(--salmon);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
  }

  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    padding: 60px 80px 32px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
  }

  .footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
  }

  .footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
    cursor: pointer;
  }

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

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  /* ─── STANDALONE PAGE STYLES ─── */
  .page-hero {
    background: linear-gradient(160deg, var(--light-sky), var(--sky));
    padding: 160px 80px 80px;
    text-align: center;
  }

  .page-hero .section-title { margin: 0 auto 20px; }
  .page-hero .section-body { margin: 0 auto; text-align: center; }

  /* ─── STORY PAGE ─── */
  .story-page-content {
    padding: 80px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .story-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
  }

  .founder-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 44px;
  }

  .founder-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
  }

  .founder-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .founder-card .role {
    font-size: 13px;
    color: var(--salmon);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .founder-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
  }

  .mission-strip {
    background: var(--navy);
    border-radius: 16px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
  }

  .mission-strip .icon { font-size: 28px; }

  .mission-strip p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }

  .mission-strip strong { color: var(--amber); }

  /* ─── SERVICES PAGE ─── */
  .services-page-grid {
    padding: 80px;
    display: grid;
    gap: 32px;
  }

  .service-full-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
  }

  .service-full-card.dark {
    background: var(--navy);
  }

  .service-full-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .service-full-card.dark h2 { color: var(--white); }

  .service-full-card .meta {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .service-full-card.dark .meta { color: rgba(255,255,255,0.6); }

  .service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .service-details .detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
  }

  .service-full-card.dark .service-details .detail { color: rgba(255,255,255,0.65); }

  .detail-icon {
    width: 28px;
    height: 28px;
    background: var(--light-sky);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }

  .service-full-card.dark .detail-icon { background: rgba(255,255,255,0.1); }

  .price-box {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    min-width: 220px;
    flex-shrink: 0;
    box-shadow: 0 4px 24px rgba(26,58,74,0.08);
  }

  .price-box .price-main {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }

  .price-box .price-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    margin-bottom: 20px;
  }

  /* ─── CONTACT PAGE ─── */
  .contact-page {
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-info { }

  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 40px;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }

  .contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .contact-detail h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .contact-detail p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
  }

  .contact-form {
    background: var(--cream);
    border-radius: 20px;
    padding: 44px;
  }

  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
  }

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

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* ─── FULL TESTIMONIALS PAGE ─── */
  .full-testimonials-grid {
    padding: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .full-t-card {
    background: var(--light-sky);
    border-radius: 16px;
    padding: 32px;
  }

  .full-t-card.navy-card { background: var(--navy); }

  .t-school {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--amber);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  /* ─── METHOD PAGE ─── */
  .method-page-content {
    padding: 80px;
  }

  .method-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
  }

  .method-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .big-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: var(--navy);
    border-radius: 24px;
    padding: 48px;
    margin-top: 60px;
  }

  .big-phase {
    padding: 32px 28px;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
  }

  .big-phase:hover { background: rgba(255,255,255,0.12); }

  .big-phase-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
  }

  .big-phase h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .big-phase p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
  }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
  }

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

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 64px 32px; }
    .hero { grid-template-columns: 1fr; padding: 120px 32px 64px; text-align: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .pillars-grid, .services-grid, .testimonials-grid, .full-testimonials-grid { grid-template-columns: 1fr; }
    .story-section, .method-layout, .story-page-grid, .method-intro-grid, .contact-page { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .services-page-grid, .method-page-content, .story-page-content, .full-testimonials-grid { padding: 40px 32px; }
    .page-hero { padding: 120px 32px 60px; }
    .service-full-card { grid-template-columns: 1fr; }
    .big-phases { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ─── LOGO SVG inline ─── */
  .logo-svg-wrap { display: flex; align-items: center; }
