    :root{
      --bg:#ffffff;
      --text:#121212;
      --muted:#6a6a6a;
      --line:#dcdcdc;
      --soft:#f4f4f4;
      --soft-2:#ececec;
      --green:#2caf0c;
      --green-dark:#249507;
      --green-soft:#efffe9;
      --max:760px;
      --radius:9px;
      --shadow:0 10px 26px rgba(0,0,0,.045);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter, Arial, Helvetica, sans-serif;
      color:var(--text);
      background:var(--bg);
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }

    a{color:inherit;text-decoration:none}
    button,input,textarea{font:inherit}

    .hero-image{
      height:clamp(150px, 11.25vw, 205px);
      width:100%;
      background:
        linear-gradient(rgba(0,0,0,.06), rgba(0,0,0,.06)),
        url("https://kennyb.ca/top-image.webp")
        center center / cover no-repeat;
      filter:saturate(.85) contrast(1.02);
    }

    .wrap{
      width:min(calc(100% - 32px), var(--max));
      margin:0 auto;
    }

    .intro{
      text-align:center;
      margin-top:-24px;
      padding-bottom:52px;
    }

    .avatar{
      width:50px;
      height:50px;
      margin:0 auto 16px;
      border-radius:50%;
      border:3px solid #fff;
      background:
        url("https://kennyb.ca/profile.webp")
        center/cover no-repeat;
      box-shadow:0 1px 4px rgba(0,0,0,.15);
    }

    h1{
      font-size:31px;
      line-height:1.05;
      letter-spacing:-1.25px;
      margin:0;
      font-weight:600;
    }

    .subtitle{
      margin:7px auto 20px;
      max-width:320px;
      color:#4e4e4e;
      font-size:14px;
      line-height:1.45;
    }

    .meta{
      display:flex;
      align-items:center;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border:1px solid var(--line);
      border-radius:999px;
      padding:6px 10px;
      font-size:11px;
      background:#fff;
      line-height:1;
      white-space:nowrap;
    }

    .pill.available{
      border-color:#bfe8b0;
      background:var(--green-soft);
      color:#1a1a1a;
      font-weight:600;
    }

    .dot{
      width:6px;
      height:6px;
      border-radius:50%;
      background:var(--green);
      flex:0 0 auto;
    }

    .socials{
      display:flex;
      gap:12px;
      align-items:center;
      margin-left:3px;
      color:#575757;
    }

    .socials a{
      width:19px;
      height:19px;
      display:grid;
      place-items:center;
      color:#575757;
      opacity:.88;
      transition:.2s ease;
    }

    .socials a svg{
      width:17px;
      height:17px;
      display:block;
      fill:currentColor;
    }

    .socials a:hover{
      opacity:1;
      transform:translateY(-1px);
      color:#111;
    }

    .actions{
      display:flex;
      justify-content:center;
      gap:10px;
      flex-wrap:wrap;
    }

    .btn{
      border:0;
      border-radius:6px;
      padding:10px 18px;
      font-size:12px;
      font-weight:600;
      cursor:pointer;
      transition:.2s ease;
    }

    .btn-primary{
      color:#fff;
      background:var(--green);
    }
    .btn-primary:hover{background:var(--green-dark);transform:translateY(-1px)}
    .btn-secondary{background:#f0f0f0}
    .btn-secondary:hover{background:#e7e7e7}

    .section{margin-bottom:56px}
    .section-label{
      margin:0 0 15px;
      font-size:10px;
      line-height:1;
      letter-spacing:.02em;
      color:var(--green);
      font-weight:700;
      text-transform:uppercase;
    }

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

    .project{
      position:relative;
      min-height:220px;
      overflow:hidden;
      border-radius:7px;
      color:#fff;
      background:#111;
      isolation:isolate;
    }

    .project::before{
      content:"";
      position:absolute;inset:0;
      background:var(--img) center/cover no-repeat;
      z-index:-2;
      transform:scale(1.02);
      transition:transform .35s ease;
    }

    .project::after{
      content:"";
      position:absolute;inset:0;
      z-index:-1;
      background:linear-gradient(to bottom,rgba(0,0,0,.1),rgba(0,0,0,.74));
    }

    .project:hover::before{transform:scale(1.07)}

    .project-content{
      height:100%;
      display:flex;
      flex-direction:column;
      padding:16px;
    }

    .project h3{
      margin:0;
      font-size:15px;
      font-weight:600;
      letter-spacing:-.2px;
    }

    .project .url{
      font-size:10px;
      margin-top:3px;
      opacity:.93;
    }

    .project p{
      margin:auto 0 0;
      font-size:11px;
      line-height:1.45;
      opacity:.96;
    }

    .writing-card,
    .card,
    .newsletter,
    .case,
    .experience-card,
    .contact-card{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
    }

    .writing-card{padding:0 18px}

    .article-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:16px;
      align-items:center;
      padding:16px 0;
      border-bottom:1px solid #e3e3e3;
    }
    .article-row:last-child{border-bottom:0}

    .article-date{
      color:#777;
      font-size:9px;
      margin-bottom:5px;
    }

    .article-title{
      font-size:14px;
      font-weight:500;
      line-height:1.25;
      letter-spacing:-.15px;
    }

    .tag{
      display:inline-flex;
      margin-top:7px;
      padding:3px 7px;
      border-radius:999px;
      background:#f3f3f3;
      color:#6a6a6a;
      font-size:8px;
    }

    .read-link{
      display:flex;
      align-items:center;
      gap:7px;
      color:#666;
      font-size:10px;
      white-space:nowrap;
    }
    .read-link span{font-size:16px;line-height:1}

    .newsletter{
      padding:26px 26px 24px;
      box-shadow:var(--shadow);
    }

    .newsletter h2{
      margin:0 0 14px;
      font-size:19px;
      line-height:1.35;
      letter-spacing:-.45px;
      font-weight:500;
      max-width:590px;
    }

    .checks{
      display:grid;
      gap:9px;
      margin:0 0 18px;
      font-size:11px;
      color:#616161;
    }

    .checks div::before{
      content:"•";
      color:var(--green);
      margin-right:9px;
      font-size:15px;
      vertical-align:-1px;
    }

    .newsletter-form{
      display:grid;
      grid-template-columns:1fr 120px;
      gap:10px;
    }

    .field{
      border:1px solid #ddd;
      border-radius:6px;
      background:#f0f0f0;
      min-height:46px;
      padding:0 14px;
      outline:none;
      font-size:11px;
      color:#222;
    }

    .field:focus{border-color:#a7cf99;background:#fff}

    .fine-print{
      margin-top:10px;
      color:#7a7a7a;
      font-size:9px;
      line-height:1.45;
    }

    .fine-print a{text-decoration:underline}

    .publications{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      align-items:center;
    }

    .publication{
      color:#777;
      font-size:20px;
      letter-spacing:-.6px;
      white-space:nowrap;
      text-align:center;
    }
    .publication:nth-child(2){font-weight:700}

    .case{
      padding:22px;
      margin-bottom:16px;
    }

    .case-head{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      align-items:start;
      margin-bottom:16px;
    }

    .case h3{
      margin:0 0 5px;
      font-size:17px;
      letter-spacing:-.35px;
      font-weight:500;
    }

    .case p{
      margin:0;
      color:#666;
      font-size:11px;
      line-height:1.45;
      max-width:570px;
    }

    .year{
      border:1px solid #d8d8d8;
      border-radius:999px;
      padding:6px 10px;
      font-size:10px;
      white-space:nowrap;
    }

    .case-image{
      height:245px;
      border-radius:6px;
      background:var(--img) center/cover no-repeat;
      margin-bottom:14px;
    }

    .testimonial{
      display:grid;
      grid-template-columns:34px 1fr;
      gap:11px;
      align-items:center;
      padding:13px 14px;
      border-radius:6px;
      background:#f0f0f0;
    }

    .testimonial-avatar{
      width:34px;height:34px;border-radius:50%;
      background:var(--img) center/cover no-repeat;
    }

    .testimonial blockquote{
      margin:0;
      font-size:11px;
      line-height:1.4;
    }

    .testimonial cite{
      display:block;
      margin-top:4px;
      font-style:normal;
      font-size:9px;
      color:#777;
    }

    .experience-label-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:14px;
    }

    .experience-label-row .section-label{margin:0}

    .experience-card{padding:8px 22px}

    .job{
      display:grid;
      grid-template-columns:1fr auto;
      gap:20px;
      padding:18px 0;
      border-bottom:1px solid #dedede;
    }
    .job:last-child{border-bottom:0}

    .job h3{
      margin:0;
      font-size:15px;
      font-weight:500;
      letter-spacing:-.2px;
    }

    .job .company{
      margin-top:4px;
      color:var(--green);
      font-size:10px;
      font-weight:600;
    }

    .job p{
      margin:11px 0 0;
      color:#666;
      font-size:11px;
      line-height:1.45;
    }

    .recommendations{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:13px;
    }

    .rec{
      border:1px solid var(--line);
      border-radius:8px;
      padding:18px 20px;
      display:grid;
      grid-template-columns:34px 1fr;
      gap:13px;
      align-items:center;
      min-height:80px;
      transition:.2s ease;
    }

    .rec:hover{box-shadow:var(--shadow);transform:translateY(-1px)}

    .rec-icon{
      width:34px;height:34px;
      border-radius:7px;
      display:grid;place-items:center;
      background:#f1f1f1;
      font-size:19px;
      font-weight:700;
    }

    .rec strong{
      display:block;
      font-size:14px;
      font-weight:500;
      margin-bottom:4px;
    }

    .rec span{
      color:#777;
      font-size:10px;
    }

    .contact-card{padding:26px}

    .contact-card h2{
      margin:0 0 7px;
      font-size:17px;
      font-weight:500;
      letter-spacing:-.35px;
    }

    .contact-card p{
      margin:0 0 18px;
      color:#666;
      font-size:11px;
      line-height:1.45;
      max-width:590px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-bottom:12px;
    }

    textarea.field{
      width:100%;
      min-height:108px;
      resize:vertical;
      padding:14px;
      display:block;
      margin-bottom:14px;
    }

    footer{
      padding:6px 0 34px;
    }

    .footer-main{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:14px 0 20px;
      border-bottom:1px solid var(--line);
    }

    .footer-left{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }

    .mini-avatar{
      width:38px;height:38px;border-radius:50%;
      background:
        url("https://kennyb.ca/profile.webp")
        center/cover no-repeat;
    }

    .footer-nav{
      display:flex;
      gap:18px;
      font-size:11px;
      font-weight:500;
    }

    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      padding-top:16px;
      color:#777;
      font-size:8px;
      line-height:1.45;
      flex-wrap:wrap;
    }

    .footer-links{display:flex;gap:14px;flex-wrap:wrap}

    @media (max-width: 720px){
      :root{--max:620px}
      .hero-image{height:128px}
      .projects{grid-template-columns:1fr}
      .project{min-height:260px}
      .publications{grid-template-columns:1fr 1fr}
      .recommendations{grid-template-columns:1fr}
    }

    @media (max-width: 520px){
      .wrap{width:min(calc(100% - 24px), var(--max))}
      .intro{padding-bottom:42px}
      h1{font-size:27px}
      .newsletter{padding:22px 18px}
      .newsletter-form{grid-template-columns:1fr}
      .publications{grid-template-columns:1fr 1fr;gap:22px 10px}
      .publication{font-size:17px}
      .case{padding:16px}
      .case-image{height:190px}
      .job{grid-template-columns:1fr}
      .job .year{justify-self:start}
      .contact-grid{grid-template-columns:1fr}
      .footer-main{align-items:flex-start}
      .footer-left{gap:12px}
      .footer-nav{gap:12px}
    }
  
    /* HOSTING-PLANS-START */
    /* Keep the portrait/avatar above the cover image instead of beneath it. */
    .hero-image{
      position:relative;
      z-index:0;
    }

    .intro{
      position:relative;
      z-index:2;
      margin-top:-25px;
    }

    .avatar{
      position:relative;
      z-index:3;
    }

    img,svg{
      max-width:100%;
      height:auto;
    }

    .hosting-intro{
      margin-bottom:18px;
    }

    .hosting-intro h2{
      margin:0;
      font-size:26px;
      line-height:1.15;
      letter-spacing:-.8px;
      font-weight:600;
    }

    .hosting-intro .hosting-subtitle{
      margin:7px 0 0;
      color:#666;
      font-size:13px;
      line-height:1.5;
    }

    .hosting-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }

    .hosting-plan{
      display:flex;
      flex-direction:column;
      min-width:0;
      padding:20px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .hosting-plan:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:#cfcfcf;
    }

    .hosting-plan.featured{
      border-color:#bfe8b0;
      box-shadow:0 10px 26px rgba(44,175,12,.08);
    }

    .plan-kicker{
      color:var(--green);
      font-size:9px;
      line-height:1;
      font-weight:700;
      letter-spacing:.03em;
      text-transform:uppercase;
      margin-bottom:10px;
    }

    .hosting-plan h3{
      margin:0;
      font-size:17px;
      line-height:1.2;
      font-weight:600;
      letter-spacing:-.35px;
    }

    .plan-cpu{
      margin-top:6px;
      min-height:30px;
      color:#666;
      font-size:10px;
      line-height:1.45;
    }

    .plan-price{
      display:flex;
      align-items:flex-end;
      gap:4px;
      margin:18px 0;
    }

    .plan-price strong{
      font-size:29px;
      line-height:1;
      letter-spacing:-1px;
      font-weight:600;
    }

    .plan-price span{
      color:#777;
      font-size:10px;
      padding-bottom:3px;
    }

    .plan-specs{
      list-style:none;
      margin:0 0 20px;
      padding:0;
      display:grid;
      gap:9px;
      color:#555;
      font-size:10px;
      line-height:1.4;
    }

    .plan-specs li{
      position:relative;
      padding-left:14px;
    }

    .plan-specs li::before{
      content:"";
      position:absolute;
      left:0;
      top:.48em;
      width:5px;
      height:5px;
      border-radius:50%;
      background:var(--green);
    }

    .plan-button{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:100%;
      min-height:38px;
      border-radius:6px;
      background:#f0f0f0;
      font-size:11px;
      font-weight:600;
      transition:.2s ease;
    }

    .plan-button:hover{
      background:#e8e8e8;
    }

    .hosting-plan.featured .plan-button{
      background:var(--green);
      color:#fff;
    }

    .hosting-plan.featured .plan-button:hover{
      background:var(--green-dark);
    }

    /* Extra responsive overrides for the complete page. */
    @media (max-width:720px){
      .hero-image{
        height:122px;
        background-image:linear-gradient(rgba(0,0,0,.06), rgba(0,0,0,.06)), url("https://kennyb.ca/top-mobile.webp");
        background-position:center 32%;
      }

      .intro{
        margin-top:-22px;
        padding-bottom:42px;
      }

      .hosting-grid{
        grid-template-columns:1fr;
      }

      .hosting-plan{
        padding:18px;
      }

      .projects{
        grid-template-columns:1fr;
      }

      .project{
        min-height:250px;
      }

      .case-head{
        grid-template-columns:1fr;
      }

      .case-head .year{
        justify-self:start;
      }

      .recommendations{
        grid-template-columns:1fr;
      }
    }

    @media (max-width:520px){
      .wrap{
        width:min(calc(100% - 24px), var(--max));
      }

      .hero-image{
        height:108px;
      }

      .intro{
        margin-top:-21px;
        padding-bottom:38px;
      }

      .avatar{
        width:46px;
        height:46px;
        margin-bottom:14px;
      }

      h1{
        font-size:27px;
      }

      .subtitle{
        font-size:13px;
      }

      .meta{
        gap:8px;
      }

      .socials{
        justify-content:center;
      }

      .actions{
        width:100%;
        gap:8px;
      }

      .actions .btn{
        flex:1 1 145px;
        max-width:190px;
      }

      .section{
        margin-bottom:46px;
      }

      .hosting-intro h2{
        font-size:23px;
      }

      .hosting-intro .hosting-subtitle{
        font-size:12px;
      }

      .plan-cpu{
        min-height:0;
      }

      .plan-price strong{
        font-size:27px;
      }

      .writing-card{
        padding:0 14px;
      }

      .article-row{
        gap:10px;
      }

      .read-link{
        font-size:9px;
      }

      .newsletter{
        padding:22px 18px;
      }

      .newsletter-form{
        grid-template-columns:1fr;
      }

      .publications{
        grid-template-columns:1fr 1fr;
        gap:22px 10px;
      }

      .publication{
        font-size:17px;
      }

      .case{
        padding:16px;
      }

      .case-image{
        height:190px;
      }

      .testimonial{
        grid-template-columns:30px 1fr;
        padding:12px;
      }

      .testimonial-avatar{
        width:30px;
        height:30px;
      }

      .job{
        grid-template-columns:1fr;
        gap:10px;
      }

      .job .year{
        justify-self:start;
      }

      .contact-grid{
        grid-template-columns:1fr;
      }

      .contact-card{
        padding:20px;
      }

      .footer-main{
        align-items:flex-start;
        flex-direction:column;
      }
    }

    @media (max-width:380px){
      .wrap{
        width:min(calc(100% - 18px), var(--max));
      }

      .pill{
        font-size:10px;
        padding:6px 8px;
      }

      .socials{
        width:100%;
        margin-left:0;
      }

      .project{
        min-height:225px;
      }

      .publication{
        font-size:15px;
      }

      .year{
        font-size:9px;
      }
    }
    /* HOSTING-PLANS-END */

  
    /* SHARED-HOSTING-START */
    .hosting-copy{
      max-width:650px;
      margin:10px 0 0;
      color:#5f5f5f;
      font-size:12px;
      line-height:1.65;
    }

    .shared-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:22px;
    }

    .shared-plan{
      position:relative;
      display:flex;
      flex-direction:column;
      min-width:0;
      padding:20px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .shared-plan:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:#cfcfcf;
    }

    .shared-plan.featured{
      border-color:#bfe8b0;
      box-shadow:0 10px 26px rgba(44,175,12,.08);
    }

    .shared-name{
      margin:0;
      font-size:17px;
      line-height:1.2;
      font-weight:600;
      letter-spacing:-.35px;
    }

    .shared-desc{
      min-height:38px;
      margin:7px 0 0;
      color:#777;
      font-size:10px;
      line-height:1.45;
    }

    .shared-price{
      display:flex;
      align-items:flex-end;
      gap:4px;
      margin:18px 0;
    }

    .shared-price strong{
      font-size:29px;
      line-height:1;
      letter-spacing:-1px;
      font-weight:600;
    }

    .shared-price span{
      color:#777;
      font-size:10px;
      padding-bottom:3px;
    }

    .shared-specs{
      list-style:none;
      padding:0;
      margin:0 0 20px;
      display:grid;
      gap:9px;
      color:#555;
      font-size:10px;
      line-height:1.4;
    }

    .shared-specs li{
      position:relative;
      padding-left:17px;
    }

    .shared-specs li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:-1px;
      color:var(--green);
      font-weight:700;
    }

    .shared-button{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      width:100%;
      border-radius:6px;
      background:#f0f0f0;
      font-size:11px;
      font-weight:600;
      transition:.2s ease;
    }

    .shared-button:hover{
      background:#e8e8e8;
    }

    .shared-plan.featured .shared-button{
      background:var(--green);
      color:#fff;
    }

    .shared-plan.featured .shared-button:hover{
      background:var(--green-dark);
    }

    .canada-panel{
      display:grid;
      grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
      gap:38px;
      align-items:center;
      padding:28px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:var(--shadow);
    }

    .canada-copy{
      position:relative;
      min-width:0;
    }

    .canada-copy::before{
      display:none;
      content:none;
    }

    .canada-copy h2{
      position:relative;
      margin:0;
      font-size:25px;
      line-height:1.15;
      letter-spacing:-.7px;
      font-weight:600;
    }

    .canada-copy p{
      position:relative;
      margin:13px 0 0;
      color:#5f5f5f;
      font-size:11px;
      line-height:1.65;
    }

    .canada-copy strong{
      color:var(--text);
      font-weight:600;
    }

    .canada-benefits{
      display:grid;
      gap:10px;
    }

    .canada-benefit{
      display:grid;
      grid-template-columns:38px 1fr;
      gap:13px;
      align-items:start;
      padding:15px 16px;
      border:1px solid var(--line);
      border-radius:8px;
      background:#fff;
    }

    .canada-icon{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      border-radius:8px;
      background:var(--green-soft);
      font-size:20px;
      line-height:1;
    }

    .canada-benefit h3{
      margin:1px 0 4px;
      font-size:13px;
      line-height:1.3;
      font-weight:600;
      letter-spacing:-.2px;
    }

    .canada-benefit p{
      margin:0;
      color:#666;
      font-size:10px;
      line-height:1.55;
    }

    .canada-link{
      color:var(--green);
      font-weight:600;
    }

    @media (max-width:720px){
      .shared-grid{
        grid-template-columns:1fr;
      }

      .shared-desc{
        min-height:0;
      }

      .canada-panel{
        grid-template-columns:1fr;
        gap:24px;
        padding:22px;
      }
    }

    @media (max-width:520px){
      .hosting-copy{
        font-size:11px;
        line-height:1.6;
      }

      .shared-plan{
        padding:18px;
      }

      .shared-price strong{
        font-size:27px;
      }

      .canada-panel{
        padding:18px;
      }

      .canada-copy h2{
        font-size:22px;
      }

      .canada-benefit{
        grid-template-columns:34px 1fr;
        padding:14px;
      }

      .canada-icon{
        width:34px;
        height:34px;
        font-size:18px;
      }
    }
    /* SHARED-HOSTING-END */

  
    /* OTHER-SERVICES-START */
    .services-intro{
      margin-bottom:20px;
    }

    .services-intro h2{
      margin:0;
      font-size:26px;
      line-height:1.15;
      letter-spacing:-.8px;
      font-weight:600;
    }

    .services-note{
      max-width:650px;
      margin:9px 0 0;
      color:#666;
      font-size:11px;
      line-height:1.6;
    }

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

    .service-card{
      display:flex;
      flex-direction:column;
      min-width:0;
      padding:20px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .service-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:#cfcfcf;
    }

    .service-card.featured{
      border-color:#bfe8b0;
      box-shadow:0 10px 26px rgba(44,175,12,.08);
    }

    .service-card h3{
      margin:0;
      font-size:17px;
      line-height:1.2;
      font-weight:600;
      letter-spacing:-.35px;
    }

    .service-desc{
      min-height:42px;
      margin:7px 0 0;
      color:#777;
      font-size:10px;
      line-height:1.45;
    }

    .service-price{
      margin:18px 0;
    }

    .service-price strong{
      display:block;
      font-size:29px;
      line-height:1;
      letter-spacing:-1px;
      font-weight:600;
    }

    .service-price span{
      display:block;
      margin-top:5px;
      color:#777;
      font-size:10px;
    }

    .service-features{
      list-style:none;
      margin:0 0 20px;
      padding:0;
      display:grid;
      gap:10px;
      color:#555;
      font-size:10px;
      line-height:1.45;
    }

    .service-features li{
      position:relative;
      padding-left:18px;
    }

    .service-features li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:-1px;
      color:var(--green);
      font-weight:700;
    }

    .service-button{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      width:100%;
      border-radius:6px;
      background:#f0f0f0;
      font-size:11px;
      font-weight:600;
      transition:.2s ease;
    }

    .service-button:hover{
      background:#e8e8e8;
    }

    .service-card.featured .service-button{
      color:#fff;
      background:var(--green);
    }

    .service-card.featured .service-button:hover{
      background:var(--green-dark);
    }

    @media (max-width:720px){
      .services-grid{
        grid-template-columns:1fr;
      }

      .service-desc{
        min-height:0;
      }
    }

    @media (max-width:520px){
      .services-intro h2{
        font-size:23px;
      }

      .service-card{
        padding:18px;
      }

      .service-price strong{
        font-size:27px;
      }
    }
    /* OTHER-SERVICES-END */

  
    /* DESIGN-INSPIRATIONS-START */
    .design-intro{margin-bottom:18px}
    .design-intro h2{margin:0;font-size:26px;line-height:1.15;letter-spacing:-.8px;font-weight:600}
    .design-intro p{max-width:620px;margin:8px 0 0;color:#666;font-size:11px;line-height:1.6}
    .design-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
    .design-card{display:block;overflow:hidden;border:1px solid var(--line);border-radius:var(--radius);background:#fff;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
    .design-card:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:#cfcfcf}
    .design-image{aspect-ratio:4/3;background:var(--img) center/cover no-repeat}
    .design-card-content{padding:13px 14px 14px}
    .design-card h3{margin:0;font-size:13px;line-height:1.3;font-weight:600;letter-spacing:-.2px}
    .design-card p{margin:5px 0 0;color:#777;font-size:9px;line-height:1.5}
    @media (max-width:720px){.design-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
    @media (max-width:520px){.design-intro h2{font-size:23px}.design-grid{grid-template-columns:1fr}.design-image{aspect-ratio:16/10}}

    .design-intro .section-label{
      color:var(--green);
    }
    /* DESIGN-INSPIRATIONS-END */

  
    /* HOST-RECOMMENDATIONS-START */
    .recommendation-logos{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }

    .recommendation-logo{
      min-height:104px;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:22px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .recommendation-logo:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:#cfcfcf;
    }

    .recommendation-logo img{
      display:block;
      max-width:150px;
      max-height:44px;
      width:auto;
      height:auto;
      object-fit:contain;
    }

    @media (max-width:720px){
      .recommendation-logos{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
    }

    @media (max-width:420px){
      .recommendation-logos{
        grid-template-columns:1fr;
      }

      .recommendation-logo{
        min-height:92px;
      }
    }
    /* HOST-RECOMMENDATIONS-END */

  
    /* Monthly + annual shared-hosting pricing */
    .shared-price{
      display:block;
      margin:18px 0;
    }

    .shared-monthly{
      display:flex;
      align-items:flex-end;
      gap:4px;
    }

    .shared-monthly strong{
      font-size:29px;
      line-height:1;
      letter-spacing:-1px;
      font-weight:600;
    }

    .shared-monthly span{
      color:#777;
      font-size:10px;
      padding-bottom:3px;
    }

    .shared-yearly{
      margin-top:7px;
      color:var(--green);
      font-size:10px;
      font-weight:600;
    }

    @media (max-width:520px){
      .shared-monthly strong{font-size:27px}
    }
  
    .personal-project-placeholder{
      background:
        linear-gradient(135deg, #f5f5f5 25%, #ececec 25%, #ececec 50%, #f5f5f5 50%, #f5f5f5 75%, #ececec 75%);
      background-size:28px 28px;
    }

  
    /* GRAPHICS-SECTION-START */
    .graphics-intro{
      margin-bottom:18px;
    }

    .graphics-intro h2{
      margin:0;
      font-size:26px;
      line-height:1.15;
      letter-spacing:-.8px;
      font-weight:600;
    }

    .graphics-intro p{
      max-width:620px;
      margin:8px 0 0;
      color:#666;
      font-size:11px;
      line-height:1.6;
    }

    .graphics-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }

    .graphic-card{
      display:block;
      width:100%;
      padding:0;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      overflow:hidden;
      cursor:zoom-in;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .graphic-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:#cfcfcf;
    }

    .graphic-card img{
      display:block;
      width:100%;
      aspect-ratio:966 / 1250;
      object-fit:contain;
      object-position:center;
      background:#f7f7f7;
    }

    .graphics-lightbox{
      position:fixed;
      inset:0;
      z-index:9999;
      display:none;
      align-items:center;
      justify-content:center;
      padding:24px;
      background:rgba(0,0,0,.88);
    }

    .graphics-lightbox.is-open{
      display:flex;
    }

    .graphics-lightbox-image{
      display:block;
      max-width:min(92vw, 966px);
      max-height:90vh;
      width:auto;
      height:auto;
      object-fit:contain;
      border-radius:8px;
      box-shadow:0 18px 60px rgba(0,0,0,.35);
    }

    .graphics-lightbox-close{
      position:absolute;
      top:18px;
      right:18px;
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border:1px solid rgba(255,255,255,.28);
      border-radius:50%;
      background:rgba(255,255,255,.1);
      color:#fff;
      font-size:24px;
      line-height:1;
      cursor:pointer;
    }

    .graphics-lightbox-close:hover{
      background:rgba(255,255,255,.18);
    }

    body.lightbox-open{
      overflow:hidden;
    }

    @media (max-width:720px){
      .graphics-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
    }

    @media (max-width:520px){
      .graphics-intro h2{
        font-size:23px;
      }

      .graphics-grid{
        grid-template-columns:1fr;
      }

      .graphics-lightbox{
        padding:14px;
      }

      .graphics-lightbox-close{
        top:12px;
        right:12px;
      }
    }

    .graphics-intro .section-label{
      color:var(--green);
    }
    /* GRAPHICS-SECTION-END */

  
    /* LOGO-EXAMPLES-START */
    .logo-intro{
      margin-bottom:18px;
    }

    .logo-intro h2{
      margin:0;
      font-size:26px;
      line-height:1.15;
      letter-spacing:-.8px;
      font-weight:600;
    }

    .logo-intro p:not(.section-label){
      max-width:620px;
      margin:8px 0 0;
      color:#666;
      font-size:11px;
      line-height:1.6;
    }

    .logo-intro .section-label{
      color:var(--green);
    }

    .logo-examples-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
    }

    .logo-lightbox-card{
      min-height:150px;
      display:flex;
      align-items:center;
      justify-content:center;
      width:100%;
      padding:20px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      cursor:zoom-in;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .logo-lightbox-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:#cfcfcf;
    }

    .logo-lightbox-card img{
      display:block;
      width:auto;
      height:auto;
      max-width:100%;
      max-height:110px;
      object-fit:contain;
    }

    @media (max-width:720px){
      .logo-examples-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .logo-lightbox-card{
        min-height:140px;
      }
    }

    @media (max-width:520px){
      .logo-intro h2{
        font-size:23px;
      }

      .logo-lightbox-card{
        min-height:125px;
        padding:16px;
      }

      .logo-lightbox-card img{
        max-height:95px;
      }
    }

    @media (max-width:360px){
      .logo-examples-grid{
        grid-template-columns:1fr;
      }
    }
    /* LOGO-EXAMPLES-END */

  
    /* SOCIAL-ADS-START */
    .social-ads-intro{margin-bottom:18px}
    .social-ads-intro h2{margin:0;font-size:26px;line-height:1.15;letter-spacing:-.8px;font-weight:600}
    .social-ads-intro p:not(.section-label){max-width:620px;margin:8px 0 0;color:#666;font-size:11px;line-height:1.6}
    .social-ads-intro .section-label{color:var(--green)}
    .social-ads-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
    .social-ad-card{
      display:block;width:100%;padding:0;overflow:hidden;
      border:1px solid var(--line);border-radius:var(--radius);
      background:#fff;cursor:zoom-in;
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease
    }
    .social-ad-card:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:#cfcfcf}
    .social-ad-card img{
      display:block;width:100%;height:auto;aspect-ratio:705/591;
      object-fit:contain;object-position:center;background:#f7f7f7
    }
    @media (max-width:720px){.social-ads-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
    @media (max-width:520px){
      .social-ads-intro h2{font-size:23px}
      .social-ads-grid{grid-template-columns:1fr}
    }
    /* SOCIAL-ADS-END */


    /* OTHER-DESIGN-SERVICES-START */
    .other-design-intro{
      margin-bottom:18px;
    }

    .other-design-intro .section-label{
      color:var(--green);
    }

    .other-design-intro h2{
      margin:0;
      font-size:26px;
      line-height:1.15;
      letter-spacing:-.8px;
      font-weight:600;
    }

    .other-design-intro p:not(.section-label){
      max-width:650px;
      margin:8px 0 0;
      color:#666;
      font-size:11px;
      line-height:1.6;
    }

    .other-design-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }

    .other-design-card{
      display:flex;
      flex-direction:column;
      min-width:0;
      padding:20px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .other-design-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow);
      border-color:#cfcfcf;
    }

    .other-design-card h3{
      margin:0;
      font-size:17px;
      line-height:1.25;
      font-weight:600;
      letter-spacing:-.35px;
    }

    .other-design-price{
      margin:13px 0 15px;
      font-size:28px;
      line-height:1;
      font-weight:600;
      letter-spacing:-.9px;
    }

    .other-design-price span{
      display:block;
      margin-top:6px;
      color:#777;
      font-size:10px;
      line-height:1.4;
      font-weight:500;
      letter-spacing:0;
    }

    .other-design-card p{
      margin:0;
      color:#666;
      font-size:10px;
      line-height:1.6;
    }

    .other-design-features{
      list-style:none;
      margin:16px 0 0;
      padding:0;
      display:grid;
      gap:8px;
      color:#555;
      font-size:10px;
      line-height:1.45;
    }

    .other-design-features li{
      position:relative;
      padding-left:17px;
    }

    .other-design-features li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:-1px;
      color:var(--green);
      font-weight:700;
    }

    @media (max-width:720px){
      .other-design-grid{
        grid-template-columns:1fr;
      }
    }

    @media (max-width:520px){
      .other-design-intro h2{
        font-size:23px;
      }

      .other-design-card{
        padding:18px;
      }

      .other-design-price{
        font-size:26px;
      }
    }
    /* OTHER-DESIGN-SERVICES-END */

  
    /* FLYER-MOCKUPS-START */
    .flyer-intro{margin-bottom:18px}
    .flyer-intro .section-label{color:var(--green)}
    .flyer-intro h2{margin:0;font-size:26px;line-height:1.15;letter-spacing:-.8px;font-weight:600}
    .flyer-intro p:not(.section-label){max-width:620px;margin:8px 0 0;color:#666;font-size:11px;line-height:1.6}
    .flyer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
    .flyer-card{
      display:block;width:100%;padding:0;overflow:hidden;
      border:1px solid var(--line);border-radius:var(--radius);
      background:#fff;cursor:zoom-in;
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease
    }
    .flyer-card:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:#cfcfcf}
    .flyer-card img{
      display:block;width:100%;height:auto;aspect-ratio:966/1250;
      object-fit:contain;object-position:center;background:#f7f7f7
    }
    @media (max-width:720px){.flyer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
    @media (max-width:520px){
      .flyer-intro h2{font-size:23px}
      .flyer-grid{grid-template-columns:1fr}
    }
    /* FLYER-MOCKUPS-END */


    /* CONTACT-FORM-LIVE-START */
    .contact-botcheck{
      position:absolute !important;
      left:-9999px !important;
      width:1px !important;
      height:1px !important;
      opacity:0 !important;
      pointer-events:none !important;
    }

    .contact-submit[disabled]{
      cursor:not-allowed;
      opacity:.7;
    }

    .contact-result{
      min-height:18px;
      margin:12px 0 0;
      font-size:10px;
      line-height:1.5;
      color:#666;
    }

    .contact-result.is-success{color:var(--green)}
    .contact-result.is-error{color:#ad0000}
    /* CONTACT-FORM-LIVE-END */

    /* SOLD-OUT-SERVERS-START */
    .hosting-plan.sold-out{position:relative}

    .hosting-plan.sold-out::after{
      content:"SOLD OUT";
      position:absolute;
      top:12px;
      right:12px;
      padding:5px 8px;
      border-radius:999px;
      background:#f2f2f2;
      color:#777;
      font-size:8px;
      line-height:1;
      font-weight:700;
      letter-spacing:.05em;
    }

    .sold-out-button,
    .hosting-plan.featured .sold-out-button{
      background:#ececec;
      color:#777;
      cursor:not-allowed;
      pointer-events:none;
    }

    .sold-out-button:hover,
    .hosting-plan.featured .sold-out-button:hover{
      background:#ececec;
      color:#777;
    }
    /* SOLD-OUT-SERVERS-END */

/* EXTERNALIZED-INLINE-IMAGES-START */
.design-image-architecture{--img:url('/thumb-3.webp')}
.design-image-travel-one{--img:url('/thumb-1.webp')}
.design-image-travel-two{--img:url('/thumb-2.webp')}
.design-image-hostfinder{--img:url('/hostfinder-ca.webp')}
/* EXTERNALIZED-INLINE-IMAGES-END */


/* ABOUT-ME-DIALOG-START */
.about-dialog{
  width:min(calc(100% - 28px), 760px);
  max-height:min(88vh, 900px);
  padding:0;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  box-shadow:0 28px 80px rgba(0,0,0,.22);
  overflow:hidden;
}

.about-dialog::backdrop{
  background:rgba(10,10,10,.58);
  backdrop-filter:blur(3px);
}

.about-dialog-shell{
  display:flex;
  flex-direction:column;
  max-height:min(88vh, 900px);
}

.about-dialog-header{
  position:sticky;
  top:0;
  z-index:2;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px 18px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.97);
}

.about-dialog-eyebrow{
  margin:0 0 5px;
  color:var(--green);
  font-size:9px;
  line-height:1;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.about-dialog-header h2{
  margin:0;
  font-size:25px;
  line-height:1.1;
  letter-spacing:-.7px;
  font-weight:600;
}

.about-dialog-close{
  flex:0 0 auto;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  padding:0;
  border:1px solid var(--line);
  border-radius:50%;
  background:#f5f5f5;
  color:#444;
  font-size:21px;
  line-height:1;
  cursor:pointer;
  transition:.2s ease;
}

.about-dialog-close:hover{
  background:#ececec;
  color:#111;
}

.about-dialog-close:focus-visible,
#about-open:focus-visible{
  outline:2px solid var(--green);
  outline-offset:3px;
}

.about-dialog-content{
  overflow-y:auto;
  padding:4px 24px 26px;
  overscroll-behavior:contain;
}

.about-dialog-section{
  padding:22px 0;
  border-bottom:1px solid #e8e8e8;
}

.about-dialog-section:last-child{
  border-bottom:0;
  padding-bottom:4px;
}

.about-dialog-section h3{
  margin:0 0 12px;
  font-size:18px;
  line-height:1.25;
  letter-spacing:-.35px;
  font-weight:600;
}

.about-dialog-section h4{
  margin:0 0 6px;
  font-size:13px;
  line-height:1.35;
  font-weight:600;
}

.about-dialog-section p{
  margin:0 0 12px;
  color:#5e5e5e;
  font-size:12px;
  line-height:1.72;
}

.about-dialog-section p:last-child{
  margin-bottom:0;
}

.about-dialog-section strong{
  color:var(--text);
  font-weight:600;
}

.about-dialog-section a{
  color:var(--green-dark);
  font-weight:600;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:2px;
}

.about-dialog-section a:hover{
  color:var(--green);
}

.about-expertise{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.about-expertise article{
  padding:15px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fafafa;
}

.about-expertise article p{
  font-size:11px;
  line-height:1.62;
}

body.about-dialog-open{
  overflow:hidden;
}

@media (max-width:620px){
  .about-dialog{
    width:min(calc(100% - 18px), 760px);
    max-height:92vh;
    border-radius:11px;
  }

  .about-dialog-shell{
    max-height:92vh;
  }

  .about-dialog-header{
    padding:18px 17px 15px;
  }

  .about-dialog-header h2{
    font-size:22px;
  }

  .about-dialog-content{
    padding:2px 17px 20px;
  }

  .about-dialog-section{
    padding:18px 0;
  }

  .about-dialog-section p{
    font-size:11px;
    line-height:1.7;
  }

  .about-expertise{
    grid-template-columns:1fr;
  }
}
/* ABOUT-ME-DIALOG-END */

