:root{
    --cream:#fbf6ee;
    --paper:#fffaf2;
  
    --sage-50:#f3f7f3;
    --sage-100:#e7efe7;
    --sage-200:#d6e3d6;
  
    --ink:#17221a;
    --ink-2:#263427;
    --muted:#566559;
  
    --cocoa:#7a4c2f;
    --cocoa-2:#9a6340;
  
    --leaf:#2f6b4a;
    --leaf-2:#3a7d57;
  
    --border: rgba(23,34,26,.12);
    --border-2: rgba(23,34,26,.08);
  
    --shadow-sm: 0 12px 26px rgba(18, 26, 18, .09);
    --shadow-md: 0 22px 62px rgba(18, 26, 18, .13);
    --shadow-lg: 0 42px 120px rgba(18,26,18,.16);
  
    --radius: 18px;
    --radius-lg: 26px;
  
    --max: 1120px;
    --ease: cubic-bezier(.2,.85,.25,1);
  
    --hero-accent-image: url("assets/images/hero-soft.png");
  }
  
  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  
  body{
    margin:0;
    color:var(--ink);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background:
      radial-gradient(900px 520px at 18% 18%, rgba(231,239,231,.45), transparent 62%),
      radial-gradient(980px 560px at 86% 28%, rgba(154,99,64,.20), transparent 64%),
      radial-gradient(900px 520px at 55% 95%, rgba(58,125,87,.18), transparent 62%),
      linear-gradient(180deg, rgba(255,250,242,1), rgba(251,246,238,1));
    line-height:1.55;
  }
  
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  strong{ font-weight: 700; }
  
  .container{
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
  }
  
  :focus-visible{
    outline: none;
    box-shadow: 0 0 0 6px rgba(231,239,231,.75);
    border-radius: 14px;
  }
  
  /* ambient */
  .ambient{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-2;
  }
  .glow{
    position:absolute;
    filter: blur(46px);
    opacity:.72;
    transform: translateZ(0);
  }
  .g1{ width:560px; height:560px; left:-150px; top:-170px; background: radial-gradient(circle, rgba(154,99,64,.30), transparent 60%); }
  .g2{ width:700px; height:700px; right:-240px; top:120px; background: radial-gradient(circle, rgba(58,125,87,.26), transparent 60%); }
  .g3{ width:640px; height:640px; left:18%; bottom:-260px; background: radial-gradient(circle, rgba(122,76,47,.20), transparent 60%); }
  
  .grain{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    opacity:.08;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    mix-blend-mode: multiply;
  }
  
  /* header */
  .site-header{
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter: blur(12px);
    background: linear-gradient(
      to bottom,
      rgba(255, 250, 242, .90),
      rgba(255, 250, 242, .78)
    );
    border-bottom: 1px solid var(--border-2);
  }
  
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding: 14px 0;
    transition: padding .25s var(--ease);
  }
  
  .site-header.is-compact .nav{
    padding: 10px 0;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap:16px;
    min-width: 260px;
  }
  
  .logo-wrap{
    width: 148px;
    height: 148px;
    border-radius: 28px;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(19,32,24,0.10);
    box-shadow: 0 24px 72px rgba(19,32,24,.16);
    display:grid;
    place-items:center;
    overflow:hidden;
    transform: translateZ(0);
    transition:
      transform .25s var(--ease),
      width .25s var(--ease),
      height .25s var(--ease),
      border-radius .25s var(--ease),
      box-shadow .25s var(--ease);
  }
  
  .site-header.is-compact .logo-wrap{
    width: 102px;
    height: 102px;
    border-radius: 22px;
    box-shadow: 0 16px 48px rgba(19,32,24,.14);
  }
  
  .logo-wrap img{
    width: 118%;
    height: 118%;
    object-fit: contain;
    transform: scale(1.08);
  }
  
  .brand-text{
    display:flex;
    flex-direction:column;
    gap:2px;
    line-height:1.1;
  }
  .brand-title{
    font-family: Fraunces, serif;
    font-weight:700;
    letter-spacing:.2px;
    font-size: 22px;
  }
  .brand-sub{
    color: rgba(19,32,24,.70);
    font-size: 13px;
    font-weight: 500;
  }
  
  .nav-links{
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(19,32,24,0.08);
    box-shadow: 0 20px 56px rgba(19,32,24,.09);
  }
  
  .nav-links a{
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: rgba(19,32,24,.82);
    transition: background .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
  }
  .nav-links a:hover{
    background: rgba(58,125,87,.12);
    transform: translateY(-1px);
  }
  .nav-links a[aria-current="page"]{
    background: rgba(19,32,24,0.06);
    color: rgba(19,32,24,0.92);
  }
  
  .nav-cta{
    display:flex;
    align-items:center;
    gap: 10px;
  }
  
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.72);
    box-shadow: 0 18px 52px rgba(19,32,24,.11);
    font-weight: 800;
    font-size: 14px;
    cursor:pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), filter .2s var(--ease);
    user-select:none;
    transform: translateZ(0);
  }
  .btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 26px 74px rgba(19,32,24,.14);
    filter: saturate(1.02);
  }
  .btn:active{ transform: translateY(0); }
  
  .btn-primary{
    background: linear-gradient(180deg, rgba(154,99,64,.98), rgba(122,76,47,.98));
    color: #fff;
    border-color: rgba(0,0,0,0.10);
  }
  .btn-primary:hover{
    background: linear-gradient(180deg, rgba(160,107,77,.98), rgba(154,99,64,.98));
  }
  .btn-ghost{
    background: rgba(255,255,255,0.62);
    color: rgba(19,32,24,.88);
  }
  
  .nav-toggle{
    display:none;
    width:44px;
    height:44px;
    border-radius: 14px;
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.70);
    box-shadow: 0 18px 52px rgba(19,32,24,.11);
    cursor:pointer;
  }
  .nav-toggle svg{ width: 22px; height: 22px; margin:auto; display:block; }
  
  .mobile-panel{
    display:block;
    padding: 0 0 14px 0;
  }
  .mobile-panel[hidden]{
    display:none !important;
  }
  
  .mobile-card{
    border-radius: 18px;
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.74);
    box-shadow: 0 20px 64px rgba(19,32,24,.11);
    overflow:hidden;
  }
  .mobile-card a{
    display:flex;
    justify-content:space-between;
    padding: 14px 16px;
    font-weight: 800;
    color: rgba(19,32,24,.88);
    border-top: 1px solid rgba(19,32,24,0.08);
    transition: background .2s var(--ease);
  }
  .mobile-card a:hover{ background: rgba(231,239,231,.40); }
  .mobile-card a:first-child{ border-top:none; }
  .mobile-card a span{ color: rgba(19,32,24,.55); font-weight: 800; }
  
  /* hero */
  .hero{
    position: relative;
    padding: 52px 0 26px;
    overflow: clip;
  }
  
  .hero-bg{
    position:absolute;
    inset: 0;
    background-image: var(--hero-accent-image);
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center center;
    opacity:.58;
    filter: saturate(.92) contrast(.98);
    z-index:0;
  }
  
  .hero-overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(90deg, rgba(255,250,242,.88) 0%, rgba(255,250,242,.72) 34%, rgba(255,250,242,.48) 58%, rgba(255,250,242,.72) 100%),
      linear-gradient(180deg, rgba(255,250,242,.34), rgba(255,250,242,.52));
    z-index:0;
  }
  
  .hero .container{
    position: relative;
    z-index: 1;
  }
  
  .hero-grid{
    display:grid;
    grid-template-columns: 1.05fr .85fr;
    gap: clamp(22px, 3.6vw, 44px);
    align-items:center;
    min-height: 600px;
  }
  
  .hero-copy{
    max-width: 680px;
  }
  
  .pill{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(231,239,231,.62);
    border: 1px solid rgba(19,32,24,0.08);
    font-weight: 800;
    color: rgba(19,32,24,.80);
    box-shadow: 0 12px 32px rgba(19,32,24,.08);
    max-width: fit-content;
  }
  .pill .dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(122,76,47,.55);
    box-shadow: 0 0 0 6px rgba(122,76,47,.12);
  }
  
  h1{
    margin: 16px 0 12px;
    font-family: Fraunces, serif;
    font-weight: 700;
    font-size: clamp(46px, 5.2vw, 72px);
    letter-spacing: -0.8px;
    line-height: 1.02;
  }
  
  .lead{
    margin: 0;
    max-width: 56ch;
    color: rgba(19,32,24,.80);
    font-size: 16px;
    line-height: 1.72;
  }
  
  .hero-actions{
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .hero-note{
    margin-top: 20px;
    max-width: 54ch;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(19,32,24,0.08);
    background: rgba(255,255,255,.44);
    box-shadow: 0 22px 66px rgba(19,32,24,.08);
    color: rgba(19,32,24,.75);
    font-weight: 650;
    backdrop-filter: blur(6px);
  }
  
  /* promise card */
  .promise-card{
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19,32,24,0.10);
    background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.68));
    box-shadow: var(--shadow-lg);
    padding: 26px 22px 22px;
    position: relative;
    overflow:hidden;
    transform: translateZ(0);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
    backdrop-filter: blur(8px);
  }
  .promise-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 52px 140px rgba(18,26,18,.18);
  }
  .promise-card:before{
    content:"";
    position:absolute;
    inset:-120px -90px auto auto;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at 30% 30%, rgba(231,239,231,.80), rgba(231,239,231,0) 60%);
    filter: blur(2px);
    pointer-events:none;
  }
  
  .promise-title{
    margin: 0 0 12px;
    font-family: Fraunces, serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.35px;
    line-height: 1.08;
  }
  
  .promise-text{
    margin:0;
    color: rgba(19,32,24,.78);
    line-height: 1.72;
    font-size: 15px;
  }
  
  .promise-list{
    margin: 18px 0 10px;
    padding: 0;
    list-style:none;
    display:grid;
    gap: 11px;
  }
  .promise-item{
    display:flex;
    gap: 10px;
    align-items:flex-start;
    color: rgba(19,32,24,.80);
    font-weight: 650;
    font-size: 15px;
  }
  .icon{
    width: 22px;
    height: 22px;
    border-radius: 10px;
    display:grid;
    place-items:center;
    background: rgba(231,239,231,.80);
    border: 1px solid rgba(19,32,24,0.10);
    flex: 0 0 auto;
    font-size: 12px;
  }
  .promise-link{
    display:inline-flex;
    gap: 8px;
    align-items:center;
    font-weight: 900;
    color: rgba(47,107,74,.98);
    padding: 12px 10px 0 0;
  }
  .promise-link:hover{ text-decoration: underline; }
  
  /* sections */
  section{ padding: 64px 0; }
  
  .section-title{
    font-family: Fraunces, serif;
    font-weight: 700;
    letter-spacing: -0.35px;
    font-size: 36px;
    margin: 0 0 10px;
  }
  .section-sub{
    margin: 0 0 26px;
    color: rgba(19,32,24,.72);
    max-width: 72ch;
    line-height: 1.7;
    font-size: 15.5px;
  }
  
  /* cards */
  .grid-4{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  
  .card{
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.72);
    box-shadow: var(--shadow-md);
    padding: 20px;
    overflow:hidden;
    transform: translateZ(0);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
  }
  .card:hover{
    transform: translateY(-2px);
    box-shadow: 0 32px 88px rgba(18,26,18,.16);
    background: rgba(255,255,255,0.78);
  }
  .card h3{
    margin: 12px 0 8px;
    font-size: 18px;
    letter-spacing: -0.2px;
  }
  .card p{
    margin: 0 0 14px;
    color: rgba(19,32,24,.74);
    line-height: 1.72;
    font-size: 14.5px;
  }
  .mini-pill{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    background: rgba(231,239,231,.60);
    border: 1px solid rgba(19,32,24,0.10);
    box-shadow: 0 12px 32px rgba(19,32,24,.08);
    font-size: 16px;
  }
  .bullets{
    margin: 0;
    padding-left: 20px;
    color: rgba(19,32,24,.76);
    line-height: 1.72;
    font-weight: 650;
    font-size: 14px;
  }
  
  /* quote band */
  .quote-band{
    margin-top: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(231,239,231,.30);
    box-shadow: var(--shadow-sm);
    padding: 22px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 18px;
  }
  .quote-band b{ font-weight: 900; }
  .quote-band p{
    margin: 0;
    color: rgba(19,32,24,.76);
    line-height: 1.72;
    font-weight: 650;
    max-width: 92ch;
  }
  .quote-link{
    white-space: nowrap;
    font-weight: 900;
    color: rgba(47,107,74,.98);
  }
  .quote-link:hover{
    text-decoration: underline;
  }
  
  /* pricing */
  .pricing-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .price-card{
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.72);
    box-shadow: var(--shadow-md);
    padding: 20px;
    position: relative;
    overflow:hidden;
    transform: translateZ(0);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
  }
  .price-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 36px 96px rgba(18,26,18,.17);
    background: rgba(255,255,255,0.78);
  }
  .price-card.is-featured{
    border-color: rgba(122,76,47,.22);
    box-shadow: 0 44px 120px rgba(122,76,47,.12), 0 34px 96px rgba(18,26,18,.16);
    background:
      radial-gradient(420px 260px at 60% 0%, rgba(154,99,64,.10), transparent 60%),
      rgba(255,255,255,0.78);
  }
  .price-card.is-featured:hover{
    box-shadow: 0 54px 150px rgba(122,76,47,.14), 0 40px 110px rgba(18,26,18,.18);
  }
  
  .badge{
    position:absolute;
    right: 16px;
    top: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(122,76,47,.12);
    border: 1px solid rgba(122,76,47,.22);
    font-weight: 900;
    font-size: 12px;
    color: rgba(122,76,47,.92);
  }
  
  .price-title{
    font-weight: 900;
    font-size: 18px;
    margin: 0 0 8px;
  }
  .price{
    display:flex;
    align-items:baseline;
    gap: 8px;
    margin: 0 0 12px;
  }
  .price .amount{
    font-family: Fraunces, serif;
    font-weight: 900;
    font-size: 46px;
    letter-spacing: -0.5px;
  }
  .price .unit{
    color: rgba(19,32,24,.60);
    font-weight: 900;
  }
  .price-desc{
    margin: 0 0 14px;
    color: rgba(19,32,24,.72);
    font-weight: 650;
  }
  
  .checklist{
    list-style:none;
    padding: 0;
    margin: 0 0 14px;
    display:grid;
    gap: 10px;
  }
  .checkrow{
    display:flex;
    gap: 10px;
    align-items:flex-start;
    color: rgba(19,32,24,.78);
    font-weight: 650;
    font-size: 14px;
    line-height: 1.58;
  }
  .checkrow .mark{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display:grid;
    place-items:center;
    background: rgba(231,239,231,.80);
    border: 1px solid rgba(19,32,24,0.10);
    flex: 0 0 auto;
    font-size: 12px;
  }
  .price-actions{ display:flex; gap: 10px; flex-wrap:wrap; }
  
  /* add-ons */
  .addons{
    margin-top: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.66);
    box-shadow: var(--shadow-sm);
    padding: 20px;
  }
  .addons h3{
    margin: 0 0 12px;
    font-size: 18px;
    letter-spacing: -0.2px;
  }
  .addon-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .addon-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(19,32,24,0.08);
    background: rgba(251,246,238,0.62);
    font-weight: 800;
    color: rgba(19,32,24,.78);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .addon-row:hover{
    transform: translateY(-1px);
    box-shadow: 0 18px 54px rgba(19,32,24,.10);
  }
  .addon-row span{
    color: rgba(122,76,47,.92);
    font-weight: 900;
  }
  .fineprint{
    margin: 12px 0 0;
    color: rgba(19,32,24,.62);
    font-size: 12.8px;
    font-weight: 650;
  }
  
  /* trust */
  .trust-bar{
    display:flex;
    flex-wrap:wrap;
    gap: 12px;
    margin-bottom: 18px;
  }
  .trust-item{
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(19,32,24,0.08);
    box-shadow: 0 12px 38px rgba(19,32,24,.08);
    font-weight: 800;
    color: rgba(19,32,24,.78);
    font-size: 13px;
  }
  
  .trust-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .trust-copy{
    margin:0;
    color: rgba(19,32,24,.74);
    line-height:1.74;
    font-weight:650;
  }
  
  .stat-row{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
  }
  .stat{
    border-radius: 18px;
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(251,246,238,0.64);
    padding: 14px;
    box-shadow: 0 16px 54px rgba(19,32,24,.10);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .stat:hover{
    transform: translateY(-1px);
    box-shadow: 0 22px 66px rgba(19,32,24,.12);
  }
  .stat .big{
    font-family: Fraunces, serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.3px;
    margin-bottom: 2px;
  }
  .stat .small{
    color: rgba(19,32,24,.65);
    font-weight: 800;
    font-size: 12.5px;
  }
  
  /* faq */
  .faq{
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.66);
    box-shadow: var(--shadow-sm);
    overflow:hidden;
  }
  
  .faq-item{ border-top: 1px solid rgba(19,32,24,0.08); }
  .faq-item:first-child{ border-top:none; }
  
  .faq-q{
    width: 100%;
    text-align:left;
    padding: 18px 18px;
    background: transparent;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
    font-weight: 900;
    font-size: 15px;
    color: rgba(19,32,24,.90);
    transition: background .2s var(--ease);
  }
  .faq-q:hover{
    background: rgba(231,239,231,.26);
  }
  .faq-q span{
    color: rgba(19,32,24,.55);
    font-weight: 900;
    font-size: 18px;
    transition: transform .2s var(--ease);
  }
  .faq-a{
    max-height: 0;
    overflow:hidden;
    transition: max-height .25s var(--ease);
  }
  .faq-a .inner{
    padding: 0 18px 18px;
    color: rgba(19,32,24,.74);
    line-height: 1.72;
    font-weight: 650;
  }
  .faq-item.is-open .faq-q span{ transform: rotate(45deg); }
  
  /* request */
  .request-grid{
    display:grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 22px;
    align-items:start;
  }
  
  .request-side-panel{
    padding: 2px 0;
  }
  
  .info-cards{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
  }
  .info-card{
    border-radius: 18px;
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.70);
    box-shadow: 0 18px 60px rgba(19,32,24,.11);
    padding: 16px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .info-card:hover{
    transform: translateY(-1px);
    box-shadow: 0 24px 74px rgba(19,32,24,.13);
  }
  .info-card h4{
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 900;
  }
  .info-card ul{
    margin: 0;
    padding-left: 16px;
    color: rgba(19,32,24,.74);
    font-weight: 650;
    line-height: 1.72;
    font-size: 13.5px;
  }
  
  .solo-note{
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(19,32,24,0.08);
    background: linear-gradient(180deg, rgba(231,239,231,.38), rgba(255,255,255,.46));
    box-shadow: var(--shadow-sm);
    color: rgba(19,32,24,.76);
    font-weight: 700;
  }
  
  form{
    border-radius: var(--radius-lg);
    border: 1px solid rgba(19,32,24,0.10);
    background: rgba(255,255,255,0.78);
    box-shadow: var(--shadow-md);
    padding: 20px;
  }
  
  label{
    display:block;
    font-weight: 900;
    color: rgba(19,32,24,.76);
    font-size: 12.5px;
    margin-bottom: 6px;
  }
  
  input, select, textarea{
    width: 100%;
    padding: 13px 13px;
    border-radius: 14px;
    border: 1px solid rgba(19,32,24,0.12);
    background: rgba(251,246,238,0.62);
    outline:none;
    font: inherit;
    color: rgba(19,32,24,.88);
    transition: box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  }
  input:focus, select:focus, textarea:focus{
    border-color: rgba(47,107,74,.38);
    box-shadow: 0 0 0 6px rgba(231,239,231,.70);
  }
  
  textarea{ min-height: 118px; resize: vertical; }
  
  .row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .form-actions{
    margin-top: 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .form-note{
    margin: 10px 0 0;
    color: rgba(19,32,24,.60);
    font-weight: 650;
    font-size: 12.5px;
  }
  
  /* footer */
  .site-footer{
    padding: 28px 0 44px;
    color: rgba(19,32,24,.70);
  }
  
  .footer-card{
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.60));
    border: 1px solid rgba(19,32,24,0.10);
    box-shadow: 0 22px 74px rgba(19,32,24,.12);
    padding: 18px 18px;
    display:grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 14px;
    align-items:center;
    position: relative;
    overflow:hidden;
  }
  
  .footer-card::before{
    content:"";
    position:absolute;
    inset:auto -120px -120px auto;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58,125,87,.18), transparent 60%);
    filter: blur(12px);
    pointer-events:none;
  }
  
  .footer-left{ min-width: 220px; }
  .footer-title{
    font-family: Fraunces, serif;
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(19,32,24,.92);
    font-size: 18px;
  }
  .footer-sub{
    margin-top: 4px;
    color: rgba(19,32,24,.62);
    font-weight: 650;
    font-size: 13px;
  }
  
  .footer-mid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 10px;
    text-align:center;
  }
  .footer-copy{
    font-size: 12.5px;
    color: rgba(19,32,24,.60);
    font-weight: 650;
  }
  
  .backtop{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    font-weight: 900;
    color: rgba(47,107,74,.95);
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(231,239,231,.48);
    border: 1px solid rgba(19,32,24,0.08);
    box-shadow: 0 12px 34px rgba(19,32,24,.09);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  }
  .backtop:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 54px rgba(19,32,24,.12);
    background: rgba(231,239,231,.62);
  }
  
  .footer-right{
    display:flex;
    justify-content:flex-end;
  }
  
  .footer-powered{
    font-weight: 900;
    font-size: 13px;
    color: rgba(122,76,47,.95);
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(122,76,47,.10);
    border: 1px solid rgba(122,76,47,.16);
    box-shadow: 0 12px 34px rgba(19,32,24,.09);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    text-align:center;
  }
  .footer-powered:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 54px rgba(19,32,24,.12);
    background: rgba(122,76,47,.14);
  }
  
  /* responsive */
  @media (max-width: 1100px){
    .grid-4{ grid-template-columns: repeat(2, 1fr); }
    .hero-grid{ grid-template-columns: 1fr; min-height: auto; }
  }
  
  @media (max-width: 980px){
    .pricing-grid{ grid-template-columns: 1fr; }
    .addon-grid{ grid-template-columns: 1fr; }
    .trust-grid{ grid-template-columns: 1fr; }
    .request-grid{ grid-template-columns: 1fr; }
  
    .nav-links, .nav-cta{ display:none; }
    .nav-toggle{ display:block; }
  
    .brand{ min-width: auto; }
  
    .footer-card{
      grid-template-columns: 1fr;
      text-align:center;
      justify-items:center;
    }
    .footer-right{ justify-content:center; }
  
    .hero{
      padding: 42px 0 18px;
    }
  
    .hero-bg{
      background-position: center center;
      opacity: .38;
    }
  
    .hero-overlay{
      background:
        linear-gradient(180deg, rgba(255,250,242,.84), rgba(255,250,242,.86)),
        linear-gradient(90deg, rgba(255,250,242,.70), rgba(255,250,242,.60));
    }
  
    .info-cards{
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 640px){
    .grid-4{ grid-template-columns: 1fr; }
    .info-cards{ grid-template-columns: 1fr; }
  }
  
  @media (max-width: 520px){
    .logo-wrap{ width: 96px; height: 96px; border-radius: 20px; }
    .site-header.is-compact .logo-wrap{ width: 76px; height: 76px; border-radius: 18px; }
    .brand-title{ font-size: 20px; }
    .brand-sub{ font-size: 12.5px; }
  
    .row{ grid-template-columns: 1fr; }
    .stat-row{ grid-template-columns: 1fr; }
  
    .quote-band{
      flex-direction: column;
      align-items:flex-start;
    }
  }
  
  @media (prefers-reduced-motion: reduce){
    *{ scroll-behavior:auto !important; transition:none !important; }
  }