    :root{
      --navy:#0d356f;
      --navy-2:#123f7c;
      --blue:#4d9bd1;
      --blue-light:#dceefb;
      --blue-pale:#f2f8fc;
      --ink:#17335d;
      --muted:#5f7493;
      --white:#ffffff;
      --line:rgba(20,72,126,.16);
      --shadow:0 18px 50px rgba(19,65,111,.10);
      --radius:26px;
      --max:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:
        radial-gradient(circle at 10% 5%, rgba(112,177,221,.10), transparent 24%),
        radial-gradient(circle at 92% 20%, rgba(112,177,221,.10), transparent 22%),
        linear-gradient(180deg,#fbfdff 0%,#f7fbfe 55%,#fff 100%);
      font-family: "Segoe UI", Arial, sans-serif;
      line-height:1.65;
    }

    a{color:inherit}
    .container{width:min(calc(100% - 40px),var(--max));margin:auto}

    /* Decorative watercolor-like blobs */
    .wash{
      position:absolute;
      z-index:-1;
      filter:blur(.2px);
      opacity:.7;
      border-radius:48% 52% 58% 42% / 52% 45% 55% 48%;
      background:linear-gradient(135deg,rgba(88,158,208,.15),rgba(184,220,242,.28));
      transform:rotate(-4deg);
    }

    .hero{
      position:relative;
      overflow:hidden;
      min-height:650px;
      display:flex;
      align-items:center;
      padding:80px 0 90px;
    }

    .hero .wash.one{width:430px;height:190px;left:-150px;top:90px}
    .hero .wash.two{width:390px;height:170px;right:-130px;top:190px;transform:rotate(8deg)}

    .hero-grid{
      display:grid;
      grid-template-columns:1fr 1.05fr;
      gap:65px;
      align-items:center;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:var(--blue);
      font-weight:700;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size:.78rem;
      margin-bottom:20px;
    }

    .eyebrow::before,.eyebrow::after{
      content:"";
      width:38px;height:1px;background:var(--blue);
    }

    h1,h2,h3{
      margin:0;
      font-family: Georgia, "Times New Roman", serif;
      color:var(--navy);
      font-weight:500;
    }

    h1{
      font-size:clamp(3rem,6vw,5.5rem);
      line-height:.98;
      letter-spacing:-.045em;
    }

    .hero-copy h1 span{color:var(--blue)}
    .hero-copy p{
      max-width:590px;
      margin:28px 0 0;
      font-size:1.12rem;
      color:var(--muted);
    }

    .promise{
      margin-top:30px;
      padding:20px 22px;
      border-left:3px solid var(--blue);
      background:rgba(255,255,255,.72);
      border-radius:0 18px 18px 0;
      box-shadow:0 10px 35px rgba(30,85,130,.06);
      font-family:Georgia,serif;
      font-size:1.2rem;
      color:var(--navy);
    }

    .logo-stage{
      min-height:500px;
      display:grid;
      place-items:center;
      position:relative;
    }

    .logo-stage::before{
      content:"";
      position:absolute;
      width:430px;height:430px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(82,157,213,.14),transparent 68%);
    }

    .brand-lockup{text-align:center;position:relative}
    .brand-mark{
      width:min(330px,68vw);
      margin:0 auto 18px;
      display:block;
    }

    .brand-name{
      font-family:Georgia, "Times New Roman", serif;
      font-size:clamp(2.6rem,5vw,4.6rem);
      line-height:1;
      letter-spacing:-.045em;
      color:var(--navy);
    }

    .tagline{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:13px;
      margin-top:20px;
      color:#285d91;
      font-size:1rem;
    }

    .tagline::before,.tagline::after{
      content:"";
      width:70px;height:1px;background:var(--blue);
      opacity:.75;
    }

    .heart{color:var(--blue);font-size:1.15em}

    .section{
      padding:100px 0;
      position:relative;
    }

    .section.alt{
      background:linear-gradient(180deg,rgba(228,242,251,.42),rgba(248,252,255,.7));
      border-top:1px solid rgba(70,139,190,.08);
      border-bottom:1px solid rgba(70,139,190,.08);
    }

    .section-heading{
      text-align:center;
      max-width:760px;
      margin:0 auto 55px;
    }

    .section-heading h2{
      font-size:clamp(2.3rem,4vw,3.7rem);
      line-height:1.05;
    }

    .section-heading p{
      color:var(--muted);
      margin:18px auto 0;
      font-size:1.05rem;
    }

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

    .story-card{
      position:relative;
      overflow:hidden;
      background:rgba(255,255,255,.9);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:34px;
      box-shadow:var(--shadow);
      min-height:290px;
    }

    .story-card::after{
      content:"";
      position:absolute;
      width:160px;height:160px;
      right:-70px;bottom:-75px;
      border-radius:50%;
      background:rgba(88,160,211,.09);
    }

    .number{
      display:inline-grid;
      place-items:center;
      width:42px;height:42px;
      border-radius:50%;
      background:var(--blue-light);
      color:var(--navy);
      font-weight:800;
      margin-bottom:22px;
    }

    .story-card h3{
      font-size:1.8rem;
      line-height:1.15;
      margin-bottom:13px;
    }

    .story-card p{margin:0;color:var(--muted)}
    .story-card strong{color:var(--navy)}

    .visual{
      margin-top:30px;
      min-height:125px;
      display:grid;
      place-items:center;
    }

    .p-mark{
      font:500 100px Georgia,serif;
      color:var(--navy);
      border:1px dashed rgba(43,102,154,.25);
      width:120px;height:120px;
      display:grid;place-items:center;
      border-radius:50%;
      background:linear-gradient(135deg,rgba(219,238,249,.7),rgba(255,255,255,.2));
    }

    .c-mark{
      width:130px;height:100px;
      border:10px solid var(--navy);
      border-right-color:transparent;
      border-radius:50%;
      transform:rotate(-10deg);
      opacity:.95;
    }

    .infinity{
      font:100px Georgia,serif;
      color:var(--navy);
      line-height:.7;
    }

    .wave{
      width:180px;height:90px;
      position:relative;
      overflow:hidden;
      border-radius:50%;
      background:linear-gradient(180deg,transparent 0 42%,rgba(72,142,194,.12) 43% 100%);
    }
    .wave::before,.wave::after{
      content:"";
      position:absolute;
      left:-15px;
      width:210px;
      height:65px;
      border:5px solid var(--blue);
      border-color:var(--blue) transparent transparent transparent;
      border-radius:50%;
    }
    .wave::before{top:15px;transform:rotate(-5deg)}
    .wave::after{top:35px;transform:rotate(5deg);opacity:.65}

    .essence-wrap{
      display:grid;
      grid-template-columns:1fr 1.1fr;
      gap:55px;
      align-items:center;
    }

    .essence-visual{
      min-height:430px;
      border-radius:36px;
      background:
        radial-gradient(circle at 30% 25%,rgba(117,181,221,.30),transparent 24%),
        linear-gradient(145deg,#eef8fd,#d9edf9);
      display:grid;
      place-items:center;
      position:relative;
      overflow:hidden;
    }

    .essence-visual::before{
      content:"";
      position:absolute;
      width:390px;height:170px;
      border:3px solid rgba(61,130,181,.20);
      border-radius:50%;
      transform:rotate(-15deg);
      bottom:50px;
    }

    .big-heart{
      font-size:150px;
      color:var(--blue);
      text-shadow:0 15px 35px rgba(30,91,140,.14);
      position:relative;
    }

    .essence h2{
      font-size:clamp(2.4rem,4vw,3.7rem);
      margin-bottom:20px;
    }

    .essence-lead{
      color:var(--muted);
      font-size:1.05rem;
      margin-bottom:28px;
    }

    .essence-list{
      display:grid;
      gap:16px;
      margin:0;
      padding:0;
      list-style:none;
    }

    .essence-list li{
      display:grid;
      grid-template-columns:54px 1fr;
      align-items:center;
      gap:16px;
      padding:15px 16px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      box-shadow:0 8px 25px rgba(24,76,120,.05);
    }

    .essence-icon{
      width:54px;height:54px;
      display:grid;place-items:center;
      border-radius:50%;
      background:var(--blue-pale);
      color:var(--navy);
      font-size:1.4rem;
      border:1px solid rgba(72,145,198,.18);
    }

    .essence-list strong{display:block;color:var(--navy);margin-bottom:2px}
    .essence-list span{color:var(--muted);font-size:.94rem}

    .closing{
      text-align:center;
      padding:110px 20px 120px;
      position:relative;
      overflow:hidden;
    }

    .closing::before{
      content:"";
      position:absolute;
      width:600px;height:260px;
      left:50%;top:30px;
      transform:translateX(-50%);
      background:radial-gradient(ellipse,rgba(89,163,215,.14),transparent 70%);
    }

    .closing h2{
      position:relative;
      font-size:clamp(2.3rem,5vw,4.5rem);
      max-width:850px;
      margin:auto;
      line-height:1.06;
    }

    .closing p{
      position:relative;
      max-width:680px;
      margin:22px auto 0;
      color:#2d6698;
      font-size:1.25rem;
    }

    footer{
      background:var(--navy);
      color:#dceafa;
      padding:35px 0;
    }

    .footer-inner{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:25px;
    }

    footer strong{color:#fff;font-family:Georgia,serif;font-size:1.25rem}
    footer small{opacity:.8}

    @media(max-width:900px){
      .hero{padding-top:55px}
      .hero-grid,.essence-wrap{grid-template-columns:1fr;gap:30px}
      .logo-stage{min-height:420px}
      .story-grid{grid-template-columns:1fr}
      .essence-visual{min-height:330px}
    }

    @media(max-width:600px){
      .container{width:min(calc(100% - 28px),var(--max))}
      .hero{padding:45px 0 65px;min-height:auto}
      h1{font-size:3rem}
      .hero-copy p{font-size:1rem}
      .brand-mark{width:245px}
      .brand-name{font-size:2.65rem}
      .tagline{font-size:.88rem}
      .tagline::before,.tagline::after{width:30px}
      .section{padding:70px 0}
      .story-card{padding:26px;min-height:0}
      .story-card h3{font-size:1.55rem}
      .closing{padding:80px 16px 90px}
      .footer-inner{flex-direction:column;text-align:center}
    }