:root {
      --sky: #e8f4f8;
      --blue: #2a7da8;
      --blue-dark: #1a5f82;
      --cream: #fdf9f3;
      --warm: #f5ede0;
      --text: #2c2c2c;
      --muted: #6b6b6b;
      --white: #ffffff;
      --accent: #f4a444;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--cream);
      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(10px);
      border-bottom: 1px solid rgba(42,125,168,0.12);
      padding: 0 2rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--blue); }

    .nav-cta {
      background: var(--blue);
      color: white !important;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }

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

    /* HERO */
    #home {
      padding-top: 68px;
      min-height: 100vh;
      background: linear-gradient(145deg, var(--sky) 0%, var(--cream) 60%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bubbles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .bubble {
      position: absolute;
      border-radius: 50%;
      opacity: 0.18;
      animation: float 8s ease-in-out infinite;
    }

    .bubble:nth-child(1) { width: 320px; height: 320px; background: var(--blue); top: -60px; right: -80px; animation-delay: 0s; }
    .bubble:nth-child(2) { width: 180px; height: 180px; background: var(--accent); bottom: 80px; right: 220px; animation-delay: 2s; }
    .bubble:nth-child(3) { width: 100px; height: 100px; background: var(--blue); bottom: 200px; left: 60px; animation-delay: 4s; }

    @keyframes float {
      0%, 100% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-18px) scale(1.03); }
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: white;
      border: 1.5px solid rgba(42,125,168,0.2);
      color: var(--blue);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.3rem 0.9rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
      letter-spacing: 0.03em;
    }

    .hero-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.6rem, 5vw, 3.8rem);
      line-height: 1.15;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1.2rem;
    }

    .hero-title .highlight {
      color: var(--blue);
    }

    .hero-subtitle {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--blue);
      color: white;
      padding: 0.85rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(42,125,168,0.3);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(42,125,168,0.4);
    }

    .btn-secondary {
      background: transparent;
      color: var(--blue);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border: 2px solid var(--blue);
      transition: all 0.2s;
    }

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

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
    }

    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--blue);
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-card-stack {
      position: relative;
      width: 340px;
      height: 380px;
    }

    .hcard {
      position: absolute;
      background: white;
      border-radius: 24px;
      padding: 1.8rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }

    .hcard-main {
      width: 280px;
      top: 40px;
      left: 30px;
      z-index: 2;
      animation: cardFloat 6s ease-in-out infinite;
    }

    .hcard-back {
      width: 250px;
      top: 10px;
      left: 60px;
      z-index: 1;
      background: var(--warm);
      transform: rotate(4deg);
    }

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

    .hcard-icon {
      font-size: 2.5rem;
      margin-bottom: 0.8rem;
    }

    .hcard-title {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .hcard-sub {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .hcard-tag {
      display: inline-block;
      margin-top: 0.8rem;
      background: var(--sky);
      color: var(--blue);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.2rem 0.7rem;
      border-radius: 50px;
    }

    /* SECTION COMMONS */
    section {
      padding: 5rem 2rem;
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--blue);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.7rem;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }

    .section-sub {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 540px;
      font-weight: 300;
    }

    /* SERVICES */
    #services {
      background: var(--white);
    }

    .services-header {
      margin-bottom: 3rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 2rem 1.8rem;
      border: 1.5px solid rgba(42,125,168,0.1);
      transition: all 0.25s;
      cursor: default;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: var(--blue);
      box-shadow: 0 12px 32px rgba(42,125,168,0.12);
    }

    .service-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .service-name {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .service-desc {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .service-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue);
    }

    .service-price span {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--muted);
    }

    /* WHY US */
    #about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      margin-top: 2rem;
    }

    .feature-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .feature-dot {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--sky);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .feature-text strong {
      display: block;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .feature-text p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .about-visual {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
      border-radius: 28px;
      padding: 3rem 2.5rem;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .about-visual::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
    }

    .about-visual::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 160px; height: 160px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
    }

    .av-title {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      position: relative;
      z-index: 1;
    }

    .av-sub {
      font-size: 0.9rem;
      opacity: 0.85;
      line-height: 1.6;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .av-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      position: relative;
      z-index: 1;
    }

    .av-stat {
      background: rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 1rem;
    }

    .av-stat-num {
      font-family: 'Fraunces', serif;
      font-size: 1.8rem;
      font-weight: 700;
    }

    .av-stat-label {
      font-size: 0.75rem;
      opacity: 0.8;
      margin-top: 0.15rem;
    }

    /* CONTACT */
    #contact {
      background: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-top: 3rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: var(--sky);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .contact-item strong {
      display: block;
      font-weight: 600;
      margin-bottom: 0.2rem;
      font-size: 0.95rem;
    }

    .contact-item p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .contact-form {
      background: var(--cream);
      border-radius: 24px;
      padding: 2.5rem;
      border: 1.5px solid rgba(42,125,168,0.1);
    }

    .form-title {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1.5px solid rgba(42,125,168,0.15);
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      background: white;
      color: var(--text);
      transition: border-color 0.2s;
      outline: none;
    }

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

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

    .form-submit {
      width: 100%;
      background: var(--blue);
      color: white;
      border: none;
      padding: 0.9rem;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .form-submit:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    /* MAP placeholder */
    .map-placeholder {
      background: var(--sky);
      border-radius: 20px;
      height: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
      border: 2px dashed rgba(42,125,168,0.25);
      color: var(--blue);
      font-size: 0.85rem;
      font-weight: 500;
    }

    /* FOOTER */
    footer {
      background: var(--text);
      color: white;
      text-align: center;
      padding: 2.5rem 2rem;
    }

    .footer-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .footer-logo span { color: var(--accent); }

    footer p {
      font-size: 0.82rem;
      opacity: 0.5;
      margin-top: 0.3rem;
    }

    /* MOBILE */
    @media (max-width: 768px) {

      /* NAV */
      .nav-links { display: none; }
      nav { padding: 0 1rem; }

      /* HERO */
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
      }
      .hero-visual { display: none; }
      .hero-title { font-size: 2.2rem; }
      .hero-stats {
        gap: 1.2rem;
        flex-wrap: wrap;
      }
      .stat-num { font-size: 1.4rem; }
      .hero-buttons {
        flex-direction: column;
      }
      .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
      }

      /* SECTIONS */
      section { padding: 3rem 1rem; }
      .section-inner { padding: 0; }

      /* SERVICES */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .service-card { padding: 1.5rem; }

      /* ABOUT */
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .av-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
      }
      .av-stat-num { font-size: 1.4rem; }
      .about-visual { padding: 2rem 1.5rem; }

      /* CONTACT */
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .contact-form { padding: 1.5rem; }

      /* MAP - fix iframe overflow */
      iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 220px !important;
      }

      /* WHY US cards */
      #why-us .section-inner > div:last-child {
        grid-template-columns: 1fr !important;
      }

      /* FOOTER */
      footer { padding: 2rem 1rem; }
    }

    /* Extra small phones */
    @media (max-width: 400px) {
      .hero-title { font-size: 1.9rem; }
      .hero-stats { gap: 0.8rem; }
      .stat-num { font-size: 1.2rem; }
    }

    /* HAMBURGER BUTTON */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0.3rem;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
    }
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(42,125,168,0.12);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .nav-links.open { display: flex; }
      .nav-links li a {
        display: block;
        padding: 0.85rem 2rem;
        font-size: 1rem;
      }
      .nav-cta {
        margin: 0.5rem 2rem;
        text-align: center;
        border-radius: 50px;
      }
    }

    /* FADE IN ON SCROLL */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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