:root{
      --bg:#fbf2ef; /* page background */
      --peach:#f7dbd5;
      --rose:#d98b8a;
      --deep-rose:#b35b60;
      --accent:#cf7f7f;
      --text:#3b2a2a;
      --muted:#8a6f6f;
      --white:#ffffff;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html,body{height:100%;}
    body{
      margin:0;padding:0;
      font-family:Inter,system-ui,Segoe UI,Roboto,-apple-system,"Helvetica Neue",Arial;
      background:var(--bg);
      color:var(--text);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.5;
    }
    .wrap{max-width:var(--container);margin:0 auto;padding:24px}

    /* NAV */
    .nav{
      display:flex;align-items:center;justify-content:space-between;padding:18px 0;
      position: relative;
    }
    .brand{display:flex;gap:12px;align-items:center;font-family:Playfair Display;font-weight:700;color:var(--deep-rose);font-size:20px}
    #footer-logo{width: 200px;}
    .brand .star{width:18px;height:18px;display:inline-block;background:linear-gradient(180deg,var(--rose),var(--deep-rose));border-radius:3px;transform:rotate(20deg)}
    .brand img{height:170px;width:auto}
    .menu{display:flex;gap:20px;align-items:center}
    .menu a{color:var(--muted);text-decoration:none;font-weight:600}
    .menu a:hover{color:var(--text)}
    .cta-btn{background:var(--rose);color:var(--white);padding:10px 16px;border-radius:24px;text-decoration:none;font-weight:700}

    /* Mobile nav */
    .nav-toggle{display:none;border:0;background:transparent;font-size:20px;cursor: pointer;}
    @media(max-width:920px){
      .menu{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
      }
      .menu.active{
        display: flex;
      }
      .nav-toggle{display:block}
    }

    /* HERO */
    .hero{display:flex;gap:40px;align-items:center;padding:40px 0;position:relative}
    .hero::after{content:'';position:absolute;left:0;right:0;bottom:-120px;height:240px;background:linear-gradient(180deg,var(--white) 0%, rgba(255,255,255,0) 100%);border-radius:50% 50% 0 0;transform:scaleX(1.05)}
    .hero-left{flex:1;max-width:680px}
    .kicker{font-family:Playfair Display;color:var(--deep-rose);font-weight:600;margin-bottom:8px}
    h1{font-family:Playfair Display;font-weight:700;font-size:48px;margin:0 0 18px;color:var(--text);line-height:1.05}
    p.lead{color:var(--muted);max-width:520px}
    .hero-actions{display:flex;gap:16px;margin-top:22px;align-items:center}
    .play{width:54px;height:54px;border-radius:50%;display:inline-grid;place-items:center;border:2px solid rgba(0,0,0,0.06);background:var(--white);box-shadow:0 6px 18px rgba(0,0,0,0.06);cursor: pointer;}
    .learn{background:transparent;border:2px solid var(--rose);padding:10px 18px;border-radius:28px;color:var(--deep-rose);font-weight:700;text-decoration: none;}

    .hero-right{flex:1;display:flex;justify-content:flex-end}
    .hero-card{width:360px;height:420px;border-radius:100px 0;background:var(--peach);position:relative;overflow:hidden;box-shadow:0 18px 40px rgba(19,13,13,0.06);display:flex;align-items:center;justify-content:center}
    .hero-card img{width:100%;height:100%;object-fit:cover}
    .hero-dots{position:absolute;right:18px;bottom:24px;display:flex;flex-direction:column;gap:8px}
    .dot{width:18px;height:18px;border-radius:50%;box-shadow:0 6px 14px rgba(0,0,0,0.06)}

    /* SECTION - Welcome */
    .section{padding:84px 0}
    .welcome{display:flex;gap:40px;align-items:center}
    .welcome .img{flex:1}
    .welcome .img .card{width:340px;height:400px;border-radius:0 100px;background:var(--peach);overflow:hidden;box-shadow:0 18px 40px rgba(0,0,0,0.05)}
    .welcome .content{flex:1}
    .stats{display:flex;gap:14px;margin-top:22px}
    .stat{background:var(--white);padding:18px;border-radius:12px;min-width:110px;text-align:center;box-shadow:0 8px 18px rgba(0,0,0,0.04)}
    .stat h3{margin:0;color:var(--deep-rose)}
    .stat p{margin:6px 0 0;color:var(--muted);font-size:14px}

    /* features */
    .features{padding:48px 0 0}
    .features h2{text-align:center;font-family:Playfair Display;font-size:32px;margin-bottom:12px;color:var(--deep-rose)}
    .feature-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px;justify-content:center;margin-top:40px;max-width:1000px;margin-left:auto;margin-right:auto}
    .card-feat{background:var(--white);border-radius:20px;padding:32px 24px;text-align:center;box-shadow:0 10px 25px rgba(0,0,0,0.08);transition:all 0.3s ease;border:1px solid rgba(0,0,0,0.05)}
    .card-feat:hover{transform:translateY(-8px);box-shadow:0 20px 40px rgba(0,0,0,0.12)}
    .card-feat .icon{width:64px;height:64px;border-radius:16px;display:grid;place-items:center;margin:0 auto 16px;background:linear-gradient(135deg,var(--peach),var(--rose));font-size:24px;color:var(--white);box-shadow:0 8px 20px rgba(217,139,138,0.3)}
    .card-feat h4{margin:0 0 12px;font-size:18px;font-weight:600;color:var(--text)}
    .card-feat p{color:var(--muted);font-size:14px;line-height:1.5}
    .card-featured{background:linear-gradient(135deg,var(--rose),var(--deep-rose));color:var(--white);transform:translateY(-6px);border:none}
    .card-featured .icon{background:var(--white);color:var(--rose)}
    .card-featured h4{color:var(--white)}
    .card-featured p{color:rgba(255,255,255,0.9)}

    /* Proving our expertise */
    .expertise{display:flex;gap:28px;align-items:center;margin-top:42px}
    .bars{flex:1}
    .bar{margin-bottom:18px}
    .bar .label{display:flex;justify-content:space-between;margin-bottom:8px;font-size:14px;color:var(--muted)}
    .bar .track{height:14px;background:rgba(0,0,0,0.06);border-radius:14px;overflow:hidden}
    .bar .fill{height:100%;width:0;border-radius:14px;background:linear-gradient(90deg,var(--rose),var(--deep-rose));}
    .expertise .image{width:320px;height:360px;border-radius:48px 0;background:var(--peach);box-shadow:0 18px 40px rgba(0,0,0,0.05);overflow:hidden}

    /* Portfolio Section */
    .portfolio {
      padding: 80px 0;
      text-align: center;
      background: linear-gradient(135deg, var(--bg), var(--white));
    }
    .portfolio h2 {
      font-family: Playfair Display;
      margin-bottom: 20px;
      font-size: 36px;
      color: var(--deep-rose);
    }
    .portfolio p {
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto 40px;
      font-size: 16px;
    }
    .portfolio-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }
    .filter-btn {
      background: transparent;
      border: 2px solid var(--rose);
      padding: 10px 20px;
      border-radius: 25px;
      color: var(--deep-rose);
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--rose);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(217,139,138,0.4);
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .portfolio-item {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      height: 350px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      cursor: pointer;
    }
    .portfolio-item:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .portfolio-item:hover img {
      transform: scale(1.1);
    }
    .portfolio-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      padding: 30px 20px 20px;
      color: white;
      opacity: 0;
      transition: all 0.4s ease;
      transform: translateY(20px);
    }
    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
      transform: translateY(0);
    }
    .portfolio-overlay h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 600;
    }
    .portfolio-overlay p {
      margin: 0;
      font-size: 14px;
      opacity: 0.9;
    }

    /* CONTACT */
    .contact{background:linear-gradient(180deg,var(--white), rgba(255,255,255,0.95));padding:48px;border-radius:18px;margin-top:36px;display:flex;gap:26px}
    .contact .col{flex:1}
    .contact form{display:flex;flex-direction:column;gap:12px}
    .field{padding:12px;border-radius:10px;border:1px solid rgba(0,0,0,0.06);background:var(--white);font-family: inherit;font-size: inherit;}
    .submit{background:var(--deep-rose);color:var(--white);padding:12px;border-radius:12px;border:0;font-weight:700;cursor: pointer;}

    /* footer */
    footer{margin-top:-70px;padding:40px 0;color:var(--muted)}
    .footer-grid{display:flex;gap:28px;flex-wrap:wrap}
    .footer-grid .col{flex:1;min-width:180px}
    .socials{display:flex;gap:12px;margin-top:10px}
    .socials a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .socials a:hover {
      color: var(--deep-rose);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 2000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.9);
      overflow: auto;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .modal.show {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
    }
    .modal-content {
      margin: auto;
      display: block;
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
    }
    .modal-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 36px;
      cursor: pointer;
    }
    .modal-caption {
      color: white;
      text-align: center;
      padding: 10px;
    }

    /* Team Section */
    .team-section {
      background: linear-gradient(180deg, var(--white), rgba(255,255,255,0.95));
      border-radius: 18px;
      padding: 60px 40px;
      margin-top: 40px;
    }
    .team-card {
      display: flex;
      gap: 40px;
      align-items: center;
      max-width: 800px;
      margin: 0 auto;
    }
    .team-image {
      width: 200px;
      height: 200px;
      flex-shrink: 0;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    .team-content {
      flex: 1;
    }
    .team-contact {
      background: rgba(247,219,213,0.3);
      padding: 16px;
      border-radius: 12px;
      border-left: 4px solid var(--rose);
    }
    
    @media(max-width:768px){
      .team-card {
        flex-direction: column;
        text-align: center;
      }
      .team-image {
        width: 150px;
        height: 150px;
      }
    }