
  :root {
    --forest: #1a5c52;
    --forest-deep: #12403a;
    --forest-mid: #2a7a6d;
    --mint: #7dd4b8;
    --mint-light: #c0ede1;
    --mint-pale: #e8f8f3;
    --cream: #f2ede6;
    --cream-dark: #e8e1d8;
    --sand: #d4c9b8;
    --text-dark: #1a2e2a;
    --text-mid: #3d5a54;
    --text-light: #6a8880;
    --white: #ffffff;
  }
  .grecaptcha-badge { visibility: hidden !important; }
  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
  }

  /* ── PAGES ── */
  .page { display: none; }
  .page.active { display: block; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(242, 237, 230, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
  }

  nav.scrolled {
    height: 60px;
    background: rgba(242, 237, 230, 0.98);
    box-shadow: 0 2px 20px rgba(26,92,82,0.08);
  }

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

  .nav-logo img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 8px;
  }

  .nav-logo-text {
    line-height: 1;
  }

  .nav-logo-text .brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 0.02em;
  }

  .nav-logo-text .tagline {
    font-size: 0.6rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
  }

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

  .nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--forest);
    border-bottom-color: var(--mint);
  }

  .nav-cta {
    background: var(--forest) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    border-bottom: none !important;
    font-weight: 600 !important;
    transition: background 0.25s, transform 0.2s !important;
    cursor: pointer;
  }
  .nav-cta:hover {
    background: var(--forest-mid) !important;
    transform: translateY(-1px);
  }

  .nav-contact {
    display: none;
    align-items: center;
    gap: 16px;
  }

  .nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--forest);
    text-decoration: none;
    letter-spacing: 0.03em;
    white-space: nowrap;
    transition: color 0.2s;
  }
  .nav-phone:hover { color: var(--forest-mid); }
  .nav-phone .fa-solid { font-size: 0.82rem; flex-shrink: 0; }

  /* Show full nav only on large screens */
  @media (min-width: 1025px) {
    .nav-links { display: flex; }
    .nav-contact { display: flex; }
    .hamburger { display: none !important; }
  }

  /* Show hamburger on mobile/tablet */
  @media (max-width: 1024px) {
    .hamburger { display: flex !important; }
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 118px;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 20px 5% 24px;
    z-index: 997;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text-mid);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--cream-dark);
    cursor: pointer;
  }

  .mobile-menu a:last-child { border-bottom: none; }

  /* ── SHARED ── */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest-mid);
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--mint);
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--white);
    padding: 15px 34px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-primary:hover {
    background: var(--forest-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,92,82,0.3);
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--forest);
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid var(--forest);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-outline:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
  }

  /* ============================================================
     HOME PAGE
  ============================================================ */

  /* HERO */
  .hero {
    min-height: 100vh;
    padding: 148px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }

  .hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(125,212,184,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,92,82,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

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

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mint-pale);
    border: 1px solid var(--mint-light);
    color: var(--forest);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
  }

  .hero-badge span { font-size: 1rem; }
  .hero-badge .fa-solid { font-size: 0.85rem; color: var(--forest-mid); }

  .service-card .card-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
  .service-card .card-icon .fa-solid,
  .service-card .card-icon .fa-regular { font-size: 2rem; color: var(--forest-mid); }

  .why-tile .tile-icon { font-size: 1.5rem; margin-bottom: 14px; color: var(--forest-mid); }
  .why-tile .tile-icon .fa-solid { font-size: 1.4rem; }
  .why-tile.highlight .tile-icon { margin-bottom: 0; flex-shrink: 0; color: var(--mint); }

  .value-icon { width: 68px; height: 68px; background: var(--mint-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 20px; color: var(--forest-mid); }

  .service-item .s-icon { font-size: 1.7rem; margin-bottom: 14px; color: var(--forest-mid); }

  .pricing-features li .check { color: var(--mint); font-size: 0.85rem; }

  .contact-detail .d-icon { width: 44px; height: 44px; background: var(--mint-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; color: var(--forest-mid); }

  .social-btn { font-size: 1rem; color: var(--text-mid); }
  .social-btn:hover { color: var(--white); }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--forest-deep);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease both;
  }

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

  .hero-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s ease both;
  }

  .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--cream-dark);
    animation: fadeInUp 0.8s 0.4s ease both;
  }

  .hero-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
  }

  .hero-stat .label {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-top: 4px;
  }

  .hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s 0.3s ease both;
  }

  /* Hero image outer wrap — NO overflow:hidden so tags can stick out */
  .hero-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
    margin: 0 24px; /* space for tags that stick out the sides */
  }

  /* Inner container clips the image with rounded corners */
  .hero-img-inner {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    overflow: hidden;
    background: var(--mint-pale);
    box-shadow: 0 24px 60px rgba(26,92,82,0.18);
  }

  .hero-img-inner img,
  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--mint-pale) 0%, var(--cream) 100%);
    gap: 20px;
  }

  .hero-logo-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
  }

  .hero-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(26,92,82,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 155px;
    z-index: 10;
    white-space: nowrap;
  }

  /* Dynamic positions — relative to .hero-img-wrap */
  .hero-card[data-pos="top-left"]     { top: 8%;  left: -10px; }
  .hero-card[data-pos="top-right"]    { top: 8%;  right: -10px; }
  .hero-card[data-pos="middle-left"]  { top: 45%; left: -10px;  transform: translateY(-50%); }
  .hero-card[data-pos="middle-right"] { top: 45%; right: -10px; transform: translateY(-50%); }
  .hero-card[data-pos="bottom-left"]  { bottom: 8%; left: -10px; }
  .hero-card[data-pos="bottom-right"] { bottom: 8%; right: -10px; }

  /* Legacy fallback */
  .hero-card.card-1 { bottom: 8%; left: -10px; }
  .hero-card.card-2 { top: 8%;   right: -10px; }

  .hero-card .icon {
    width: 40px;
    height: 40px;
    background: var(--mint-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; color: var(--forest-mid);
    flex-shrink: 0;
  }

  .hero-card .card-text .title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .hero-card .card-text .sub {
    font-size: 0.75rem;
    color: var(--text-light);
  }

  /* MARQUEE */
  .marquee-strip {
    background: var(--forest);
    color: var(--mint-light);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 998;
    transition: top 0.3s ease;
  }

  nav.scrolled ~ * ~ .marquee-strip,
  nav.scrolled ~ .marquee-strip {
    top: 60px;
  }

  .marquee-inner {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 0;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 28px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
    flex-shrink: 0;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SERVICES OVERVIEW */
  .services-overview {
    padding: 100px 5%;
    background: var(--white);
  }

  .services-overview .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--forest-deep);
    line-height: 1.1;
    max-width: 500px;
  }

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

  .service-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
    border: 1px solid transparent;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,92,82,0.12);
    border-color: var(--mint-light);
    background: var(--mint-pale);
  }

  .service-card .card-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
  }

  .service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .service-card .arrow {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.05em;
    transition: gap 0.25s;
    gap: 6px;
  }

  .service-card:hover .arrow { gap: 12px; }

  /* WHY US */
  .why-us {
    padding: 100px 5%;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .why-us::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125,212,184,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .why-us .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .why-us-visual {
    position: relative;
  }

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

  .why-tile {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
  }

  .why-tile:hover {
    box-shadow: 0 8px 24px rgba(26,92,82,0.1);
    border-color: var(--mint-light);
  }

  .why-tile.highlight {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .why-tile .tile-icon { font-size: 1.8rem; margin-bottom: 14px; }
  .why-tile.highlight .tile-icon { margin-bottom: 0; flex-shrink: 0; font-size: 2rem; }
  .why-tile h4 { font-size: 1.1rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; }
  .why-tile p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }
  .why-tile.highlight h4 { color: var(--mint-light); }
  .why-tile.highlight p { color: rgba(255,255,255,0.75); }

  .why-us-text h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: var(--forest-deep);
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .why-us-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 300;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: 100px 5%;
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(125,212,184,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .testimonials .container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

  .testimonials .section-label { color: var(--mint); }
  .testimonials .section-label::before { background: var(--mint); }

  .testimonials h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.1;
    max-width: 500px;
  }

  /* Service detail mobile card — hidden on desktop, shown on mobile */
  .svc-details-mobile { display: none; }

  /* Service body grid */
  .svc-body-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    width: 100%;
  }
  .blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Blog full listing grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
  }

  .testimonial-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(125,212,184,0.3);
    transform: translateY(-4px);
  }

  .stars { color: var(--mint); font-size: 0.88rem; margin-bottom: 18px; display: flex; gap: 3px; }

  .testimonial-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
  }

  .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mint-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    flex-shrink: 0;
  }

  .reviewer-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
  .reviewer-type { font-size: 0.78rem; color: var(--mint); }

  /* CTA BANNER */
  .cta-banner {
    padding: 100px 5%;
    background: var(--cream);
  }

  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
    border-radius: 32px;
    padding: 70px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(125,212,184,0.2) 0%, transparent 70%);
  }

  .cta-inner::after {
    content: '🌿';
    position: absolute;
    right: 60px;
    bottom: -20px;
    font-size: 8rem;
    opacity: 0.08;
  }

  .cta-text { position: relative; z-index: 1; }
  .cta-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .cta-text p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 480px; }

  .cta-actions { display: flex; gap: 16px; position: relative; z-index: 1; flex-shrink: 0; flex-wrap: wrap; }

  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--forest);
    padding: 15px 34px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }
  .btn-white:hover { background: var(--mint-pale); transform: translateY(-2px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  /* ============================================================
     ABOUT PAGE
  ============================================================ */
  .page-hero {
    padding: 168px 5% 80px;
    background: linear-gradient(170deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    right: 0; bottom: 0;
    width: 600px;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(125,212,184,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .page-hero .breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.08;
    max-width: 700px;
  }

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

  .page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    margin-top: 24px;
    max-width: 580px;
    line-height: 1.75;
    font-weight: 300;
  }

  /* About Story */
  .about-story {
    padding: 100px 5%;
    background: var(--white);
  }

  .about-story .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .story-image {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    background: var(--mint-pale);
  }

  .story-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--mint-pale), var(--cream));
    flex-direction: column;
    gap: 16px;
  }

  .story-image-placeholder img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    opacity: 0.85;
  }

  .story-badge {
    position: absolute;
    bottom: 28px;
    right: -18px;
    background: var(--forest);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(26,92,82,0.3);
  }

  .story-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
  }

  .story-badge .txt { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

  .story-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    color: var(--forest-deep);
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .story-text p {
    font-size: 0.96rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 18px;
    font-weight: 300;
  }

  /* Values */
  .values {
    padding: 100px 5%;
    background: var(--cream);
  }

  .values .container { max-width: 1200px; margin: 0 auto; }

  .values-header { text-align: center; margin-bottom: 60px; }

  .values-header h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 16px;
  }

  .values-header p {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 300;
  }

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

  .value-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
  }

  .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(26,92,82,0.1);
    border-color: var(--mint-light);
  }

  .value-icon {
    width: 68px;
    height: 68px;
    background: var(--mint-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
  }

  .value-card h3 { font-size: 1.2rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 12px; }
  .value-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

  /* Team */
  .team {
    padding: 100px 5%;
    background: var(--white);
  }

  .team .container { max-width: 1200px; margin: 0 auto; }

  .team-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }

  .team-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    color: var(--forest-deep);
  }

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

  .team-card {
    background: var(--cream);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--cream-dark);
    display: flex;
    flex-direction: column;
  }

  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(26,92,82,0.12);
  }

  .team-photo {
    width: 100%;
    height: 220px;
    background: linear-gradient(160deg, var(--mint-pale) 0%, var(--cream) 100%);
    overflow: hidden;
    flex-shrink: 0;
    display: block;
  }

  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    display: block;
  }

  .team-photo .fa-user {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    color: var(--forest-mid);
    opacity: 0.4;
  }

  .team-info { padding: 24px; background: var(--cream); position: relative; z-index: 1; }
  .team-info h3 { font-size: 1.3rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 4px; }
  .team-info .role { font-size: 0.82rem; color: var(--forest-mid); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
  .team-info p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }

  /* ============================================================
     SERVICES PAGE
  ============================================================ */
  .services-hero { padding-bottom: 100px; }

  .services-full {
    padding: 80px 5% 100px;
    background: var(--cream);
  }

  .services-full .container { max-width: 1200px; margin: 0 auto; }

  .service-section { margin-bottom: 80px; }

  .service-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest-mid);
    background: var(--mint-pale);
    border: 1px solid var(--mint-light);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
  }

  .service-section h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 36px;
    line-height: 1.15;
  }

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

  .service-item {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mint), var(--forest-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .service-item:hover::before { transform: scaleX(1); }
  .service-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(26,92,82,0.1); }

  .service-item .s-icon { font-size: 2rem; margin-bottom: 14px; }
  .service-item h3 { font-size: 1.15rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; }
  .service-item p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }

  .service-item .price-badge {
    display: inline-block;
    background: var(--mint-pale);
    color: var(--forest);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
  }

  /* Pricing */
  .pricing {
    padding: 100px 5%;
    background: var(--white);
  }

  .pricing .container { max-width: 1200px; margin: 0 auto; }

  .pricing-header { text-align: center; margin-bottom: 60px; }
  .pricing-header h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 600; color: var(--forest-deep); margin-bottom: 16px; }
  .pricing-header p { font-size: 1rem; color: var(--text-mid); max-width: 520px; margin: 0 auto; line-height: 1.7; }

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

  .pricing-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px 32px;
    border: 2px solid var(--cream-dark);
    position: relative;
    transition: all 0.3s ease;
  }

  .pricing-card.featured {
    background: var(--forest);
    border-color: var(--forest);
    transform: scale(1.03);
  }

  .pricing-card:hover { box-shadow: 0 12px 36px rgba(26,92,82,0.14); }

  .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    color: var(--forest-deep);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .pricing-card .plan-name {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-mid);
    margin-bottom: 12px;
  }

  .pricing-card.featured .plan-name { color: var(--mint); }

  .pricing-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--forest-deep);
    line-height: 1;
    margin-bottom: 4px;
  }

  .pricing-card.featured .price { color: var(--white); }

  .pricing-card .price-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 28px;
  }

  .pricing-card.featured .price-note { color: rgba(255,255,255,0.6); }

  .pricing-features { list-style: none; margin-bottom: 32px; }

  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-mid);
    padding: 9px 0;
    border-bottom: 1px solid var(--cream-dark);
  }

  .pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.82);
    border-bottom-color: rgba(255,255,255,0.12);
  }

  .pricing-features li:last-child { border-bottom: none; }

  .pricing-features li .check { color: var(--mint); font-size: 0.9rem; }

  /* ============================================================
     CONTACT PAGE
  ============================================================ */
  .contact-layout {
    padding: 80px 5% 100px;
    background: var(--cream);
  }

  .contact-layout .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
  }

  .contact-info h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600;
    color: var(--forest-deep);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .contact-info > p {
    font-size: 0.96rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--cream-dark);
    transition: all 0.3s ease;
  }

  .contact-detail:hover {
    border-color: var(--mint-light);
    box-shadow: 0 4px 16px rgba(26,92,82,0.08);
  }

  .contact-detail .d-icon {
    width: 44px;
    height: 44px;
    background: var(--mint-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; color: var(--forest-mid);
    flex-shrink: 0;
  }

  .contact-detail .d-text .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
  }

  .contact-detail .d-text .value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
  }

  .social-links { display: flex; gap: 12px; }

  .social-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; color: var(--forest-mid);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-btn:hover {
    background: var(--forest);
    border-color: var(--forest);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(26,92,82,0.2);
  }

  /* Contact Form */
  .contact-form-wrap {
    background: var(--white);
    border-radius: 28px;
    padding: 48px 44px;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 8px 40px rgba(26,92,82,0.07);
  }

  .contact-form-wrap h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 8px;
  }

  .contact-form-wrap > p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 32px;
  }

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

  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

  .form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.04em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--cream);
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: all 0.25s ease;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--forest-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(42,122,109,0.1);
  }

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

  .form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233d5a54' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

  .form-submit { margin-top: 8px; }

  .form-submit .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; }

  .form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 12px; }

  .success-message {
    display: none;
    background: var(--mint-pale);
    border: 1px solid var(--mint-light);
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
    color: var(--forest);
    font-weight: 500;
    margin-top: 16px;
  }

  /* ============================================================
     FOOTER
  ============================================================ */
  footer {
    background: var(--forest-deep);
    color: rgba(255,255,255,0.7);
    padding: 70px 5% 36px;
  }

  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
  }

  .footer-brand .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .footer-brand .logo-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--cream);
    padding: 4px;
  }

  .footer-brand .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
  }

  .footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 260px; }

  .footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--mint); }

  .footer-newsletter p { font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; }

  .newsletter-input {
    display: flex;
    gap: 8px;
  }

  .newsletter-input input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    outline: none;
  }

  .newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-input input:focus { border-color: var(--mint); }

  .newsletter-input button {
    background: var(--mint);
    color: var(--forest-deep);
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
  }

  .newsletter-input button:hover { background: var(--mint-light); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p { font-size: 0.82rem; }

  .footer-bottom-links {
    display: flex;
    gap: 24px;
  }

  .footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom-links a:hover { color: var(--mint); }

  /* ============================================================
     ANIMATIONS
  ============================================================ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .animate-in.visible {
    opacity: 1;
    transform: none;
  }

  /* ============================================================
     MOBILE DRAWER
  ============================================================ */
  /* ── OLD mobile-menu unused ── */
  .mobile-menu { display: none !important; }

  /* ============================================================
     MOBILE DRAWER — slide in from right
  ============================================================ */
  .mob-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1199;
  }
  .mob-backdrop.open { display: block; }

  .mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #12403a;
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .mobile-overlay.open {
    transform: translateX(0);
  }

  .mob-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
    background: #1a5c52;
  }
  .mob-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mob-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    padding: 3px;
  }
  .mob-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #7dd4b8;
  }
  .mob-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mob-nav {
    flex: 1;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
  }
  .mob-link {
    display: flex;
    align-items: center;
    padding: 15px 24px;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s, color 0.2s;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
  }
  .mob-link:last-child { border-bottom: none; }
  .mob-link:hover { background: rgba(255,255,255,0.08); color: #7dd4b8; }
  .mob-link.active { color: #7dd4b8; background: rgba(125,212,184,0.1); }

  .mob-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
  }
  .mob-cta {
    display: block;
    width: 100%;
    background: #7dd4b8;
    color: #12403a;
    border: none;
    border-radius: 50px;
    padding: 13px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    margin-bottom: 16px;
  }
  .mob-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mob-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
  }
  .mob-contact-link:hover { color: #7dd4b8; }
  .mob-contact-link .fa-solid,
  .mob-contact-link .fa-brands { font-size: 0.85rem; width: 16px; flex-shrink: 0; }

  /* ============================================================
     CONTACT PROMINENT CARDS
  ============================================================ */
  .contact-prominent {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .contact-prominent-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  a.phone-card, a.phone-card:visited {
    background: var(--forest);
    color: var(--white) !important;
  }
  a.phone-card:hover {
    background: var(--forest-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,92,82,0.3);
  }

  a.email-card, a.email-card:visited {
    background: var(--mint-pale);
    color: var(--forest) !important;
    border-color: var(--mint-light);
  }
  a.email-card:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125,212,184,0.25);
  }

  a.whatsapp-card, a.whatsapp-card:visited {
    background: var(--mint-pale);
    color: var(--forest) !important;
    border: 1px solid var(--mint);
  }
  a.whatsapp-card:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(125,212,184,0.25);
  }
  a.whatsapp-card .cp-icon { background: var(--mint); color: var(--forest); }

  .cp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
  }
  a.email-card .cp-icon { background: rgba(26,92,82,0.1); }

  .cp-text { flex: 1; }

  .cp-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 4px;
  }

  .cp-value {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .cp-arrow {
    font-size: 1rem;
    opacity: 0.5;
    transition: transform 0.2s, opacity 0.2s;
  }
  .contact-prominent-card:hover .cp-arrow {
    transform: translateX(5px);
    opacity: 1;
  }

  /* ============================================================
     RESPONSIVE — TABLET (≤1024px)
  ============================================================ */
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      padding-top: 148px;
      padding-bottom: 60px;
      text-align: center;
    }
    .hero-visual { display: none; }
    .hero-sub { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-badge { margin: 0 auto 28px; }

    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-us .container { grid-template-columns: 1fr; }
    .why-us-visual { display: none; }
    .why-us-text { text-align: center; }
    .why-us-text .section-label { justify-content: center; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .service-items-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .contact-layout .container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-story .container { grid-template-columns: 1fr; }
    .story-image { display: none; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .cta-inner { padding: 52px 48px; flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
  }

  /* ============================================================
     RESPONSIVE — MOBILE (≤768px)
  ============================================================ */
  @media (max-width: 768px) {
    /* Nav */
    nav { padding: 0 20px; overflow: hidden; }
    .nav-logo-text .brand { font-size: 1.2rem; }

    /* Marquee */
    .marquee-strip { top: 60px; }
    .marquee-item { padding: 0 18px; font-size: 0.75rem; }

    /* Hero */
    .hero {
      padding: 130px 20px 60px;
      text-align: center;
      min-height: auto;
    }
    .hero h1 { font-size: 2.6rem; }
    .hero-badge { display: inline-flex; }
    .hero-sub { font-size: 0.96rem; max-width: 100%; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; justify-content: center; }
    .hero-stats { gap: 0; flex-wrap: wrap; padding-top: 28px; margin-top: 36px; }
    .hero-stat { flex: 1 1 45%; text-align: center; padding: 12px 8px; min-width: 90px; }
    .hero-stat .num { font-size: 1.9rem; }

    /* Page heroes */
    .page-hero { padding: 140px 20px 52px; }
    .page-hero h1 { font-size: 2.4rem; }

    /* Sections padding */
    .services-overview,
    .why-us,
    .testimonials,
    .cta-banner,
    .about-story,
    .values,
    .team,
    .services-full,
    .pricing,
    .contact-layout { padding-left: 20px; padding-right: 20px; }
    .services-overview, .about-story, .team, .pricing { padding-top: 64px; padding-bottom: 64px; }
    .why-us, .values, .services-full { padding-top: 64px; padding-bottom: 64px; }
    .testimonials { padding-top: 64px; padding-bottom: 64px; }
    .cta-banner { padding-top: 48px; padding-bottom: 48px; }
    .contact-layout { padding-top: 48px; padding-bottom: 64px; }

    /* Section headers */
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
    .section-header h2 { font-size: 2rem; }
    .section-header .btn-outline { width: 100%; justify-content: center; }

    /* Services grid – single col with horizontal scroll feel */
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 24px; }

    /* Why us */
    .why-us-text h2 { font-size: 2rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials h2 { font-size: 2rem; margin-bottom: 36px; }

    /* CTA */
    .cta-inner {
      padding: 40px 24px;
      border-radius: 20px;
      flex-direction: column;
      text-align: center;
      gap: 28px;
    }
    .cta-inner::after { display: none; }
    .cta-text h2 { font-size: 1.9rem; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn-white,
    .cta-actions .btn-ghost { width: 100%; justify-content: center; }

    /* Values */
    .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .values-header h2 { font-size: 2rem; }
    .value-card { padding: 24px 18px; }

    /* Blog preview grid */
    .services-grid[style*="repeat"] { grid-template-columns: 1fr !important; }

    /* Gallery grid */
    .gallery-albums-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }

    /* Blog post */
    #page-blog-post section { padding: 40px 20px !important; }

    /* Blog grids - stack to 1 column on mobile */
    .blog-preview-grid,
    .blog-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Service body grid */
    .svc-body-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    #page-service .svc-sidebar { position: static !important; }
    #page-service .svc-quote-card { display: none !important; }
    #page-service .svc-details-card { display: none !important; }
    #page-service .svc-details-mobile { display: block !important; }
    #svcRelatedGrid { grid-template-columns: 1fr !important; }

    /* Team grid */
    .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }


    .team-header { flex-direction: column; align-items: flex-start; }
    .team-header h2 { font-size: 2rem; }

    /* Services page */
    .service-items-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-section { margin-bottom: 52px; }
    .service-section h2 { font-size: 1.8rem; }
    .service-item { padding: 22px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card { padding: 32px 24px; }
    .pricing-header h2 { font-size: 2rem; }

    /* Contact layout */
    .contact-layout .container { gap: 36px; }
    .contact-info h2 { font-size: 1.9rem; }
    .contact-form-wrap { padding: 28px 20px; border-radius: 20px; }
    .contact-form-wrap h3 { font-size: 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .social-links { flex-wrap: wrap; }
    .form-submit .btn-primary { width: 100%; justify-content: center; }

    /* Footer */
    footer { padding: 52px 20px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .newsletter-input { flex-direction: column; gap: 10px; }
    .newsletter-input button { width: 100%; padding: 12px; border-radius: 10px; }
  }

  /* ============================================================
     RESPONSIVE — SMALL MOBILE (≤480px)
  ============================================================ */
  @media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .page-hero h1 { font-size: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .hero-stat { flex: 1 1 40%; }
    .cta-text h2 { font-size: 1.7rem; }
    .why-tile.highlight { flex-direction: column; }
    .section-header h2 { font-size: 1.8rem; }
    .contact-form-wrap { padding: 22px 16px; }
  }
