  :root {
    --shopify-green: #95BF47;
    --shopify-green-dark: #6FA13C;
    --evergreen: #0B4F3F;
    --evergreen-deep: #08382C;
    --ink: #1B1B1B;
    --ink-soft: #52584F;
    --paper: #FAFAF8;
    --sage-tint: #EEF3E6;
    --line: #E1E6D9;
    --white: #FFFFFF;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }

  a { text-decoration: none; color: inherit; }

  ul { list-style: none; }

  button { font-family: inherit; cursor: pointer; border: none; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
  }

  .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--evergreen);
    margin-bottom: 16px;
  }

  .eyebrow::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--shopify-green);
    border-radius: 2px;
    margin-right: 8px;
    transform: translateY(-1px);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .btn-primary {
    background: var(--shopify-green);
    color: var(--evergreen-deep);
    box-shadow: 0 8px 20px rgba(149, 191, 71, 0.35);
  }

  .btn-primary:hover {
    background: var(--shopify-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(149, 191, 71, 0.45);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
  }

  .btn-ghost:hover {
    border-color: var(--white);
    transform: translateY(-2px);
  }

  /* ---------- Header ---------- */

  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
  }

  .logo svg { width: 30px; height: 30px; }

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

  nav ul {
    display: flex;
    gap: 40px;
  }

  nav a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink-soft);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s ease;
  }

  nav a:hover { color: var(--evergreen); }

  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--shopify-green);
    transition: width 0.25s ease;
  }

  nav a:hover::after { width: 100%; }

  .nav-toggle {
    display: none;
    background: none;
    width: 26px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.25s ease;
  }

  /* ---------- Hero ---------- */

  .hero {
    padding: 90px 0 100px;
    background:
      radial-gradient(circle at 85% 20%, rgba(149,191,71,0.12), transparent 55%),
      var(--paper);
    overflow: hidden;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(34px, 4.6vw, 54px);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--evergreen);
    position: relative;
  }

  .hero-para {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 34px;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
  }

  .hero-ctas .btn-primary { color: var(--evergreen-deep); }
  .hero-ctas .link-secondary {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 3px;
  }

  .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    max-width: 480px;
  }

  .hero-stats div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 25px;
    color: var(--evergreen);
  }

  .hero-stats div span {
    font-size: 13px;
    color: var(--ink-soft);
  }

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

  .hero-badge-ring {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--evergreen) 0%, var(--evergreen-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(11,79,63,0.45);
  }

  .hero-badge-ring svg { width: 46%; height: 46%; }

  .hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 16px 34px rgba(27,27,27,0.12);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-float-card svg { width: 20px; height: 20px; color: var(--shopify-green-dark); flex-shrink: 0; }

  .float-1 { top: 6%; left: -4%; }
  .float-2 { bottom: 8%; right: -6%; }

  /* ---------- About ---------- */

  .about {
    padding: 100px 0;
    background: var(--white);
  }

  .about .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }

  .about-media {
    position: relative;
  }

  .about-media img {
    border-radius: 20px;
    width: 100%;
    height: 420px;
    object-fit: cover;
  }

  .about-media-tag {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--evergreen);
    color: var(--white);
    padding: 18px 22px;
    border-radius: 16px;
    font-family: var(--font-display);
    max-width: 210px;
  }

  .about-media-tag strong {
    display: block;
    font-size: 26px;
    color: var(--shopify-green);
  }

  .about-media-tag span {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
  }

  .about h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 20px; }

  .about-para {
    color: var(--ink-soft);
    margin-bottom: 18px;
    font-size: 15.5px;
    max-width: 520px;
  }

  .about-points {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .about-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    font-size: 14.5px;
    font-family: var(--font-display);
  }

  .about-points li svg {
    width: 20px;
    height: 20px;
    color: var(--shopify-green-dark);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .hero-visual-badge {
    position: absolute;
    bottom: -26px;
    left: 0%;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 16px 34px rgba(27,27,27,0.12);
    z-index: 2;
  }

  .hero-visual-badge svg { width: 118px; height: 50px; display: block; }

  .about-media-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 16px 34px rgba(27,27,27,0.12);
  }

  .about-media-badge svg { width: 200px; height: 100px; display: block; }

  /* ---------- Services ---------- */

  .services {
    padding: 100px 0;
    background: var(--sage-tint);
  }

  .section-head {
    max-width: 620px;
    margin-bottom: 56px;
  }

  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

  .section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }

  .section-head p {
    color: var(--ink-soft);
    margin-top: 14px;
    font-size: 15.5px;
  }

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

  .service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 34px 28px;
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11,79,63,0.1);
    border-color: transparent;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--sage-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .service-card:nth-child(5) { grid-column: span 1; }

  .service-icon svg { width: 26px; height: 26px; color: var(--evergreen); }

  .service-card h3 {
    font-size: 18.5px;
    margin-bottom: 10px;
  }

  .service-card p {
    color: var(--ink-soft);
    font-size: 14px;
  }

  .service-card.wide {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .services-cta-card {
    background: var(--evergreen);
    color: var(--white);
    border-radius: 18px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .services-cta-card h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
  .services-cta-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }

  /* ---------- Contact ---------- */

  .contact {
    padding: 100px 0;
    background: var(--white);
  }

  .contact .container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }

  .contact-info h2 { font-size: clamp(28px, 3.4vw, 36px); margin-bottom: 18px; }

  .contact-info p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 34px; max-width: 400px; }

  .contact-form {
    background: var(--sage-tint);
    border-radius: 22px;
    padding: 44px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-field { display: flex; flex-direction: column; gap: 8px; }

  .form-field.full { grid-column: span 2; }

  .form-field label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    color: var(--ink);
  }

  .form-field input {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .form-field input:focus {
    outline: none;
    border-color: var(--shopify-green-dark);
    box-shadow: 0 0 0 4px rgba(149,191,71,0.18);
  }

  .contact-form .btn-primary {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
    border: none;
  }

  /* ---------- Footer ---------- */

  footer {
    background: var(--evergreen-deep);
    color: rgba(255,255,255,0.85);
    padding: 70px 0 26px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .footer-brand .logo { color: var(--white); margin-bottom: 16px; }
  .footer-brand .logo span { color: var(--shopify-green); }

  .footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
    margin-bottom: 20px;
  }

  .footer-col h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 0.03em;
  }

  .footer-col ul li { margin-bottom: 12px; }

  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s ease;
  }

  .footer-col ul li a:hover { color: var(--shopify-green); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 340px; margin: 0 auto 40px; }
    .about .container { grid-template-columns: 1fr; }
    .about-media img { height: 340px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact .container { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 780px) {
    nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    nav.open { max-height: 320px; }
    nav ul { flex-direction: column; gap: 0; padding: 10px 32px 20px; }
    nav ul li { border-bottom: 1px solid var(--line); }
    nav ul li a { display: block; padding: 14px 0; }
    .nav-toggle { display: flex; flex-shrink: 0; }
    .header-cta { display: none; }
    .hero { padding: 50px 0 70px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-float-card.float-2 { display: none; }
    .about-media-tag { position: static; margin-top: 16px; max-width: none; }
    .about-media-badge { position: static; margin: 12px auto 0; width: fit-content; display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
    .footer-top { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .contact-form { padding: 28px 22px; }
  }

  /* ---------- Floating actions ---------- */

  .floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 500;
  }

  .floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: transform 0.2s ease;
  }

  .floating-btn:hover { transform: translateY(-2px); }

  .floating-btn.whatsapp {
    width: 52px;
    height: 52px;
    justify-content: center;
    background: #25D366;
  }

  .floating-btn.whatsapp svg { width: 26px; height: 26px; }

  .floating-btn.call {
    padding: 13px 18px;
    background: var(--evergreen);
  }

  .floating-btn.call svg { width: 18px; height: 18px; flex-shrink: 0; }

  @media (max-width: 480px) {
    .floating-actions { bottom: 14px; right: 14px; gap: 10px; }
    .floating-btn.call { padding: 11px 14px; font-size: 12.5px; }
  }

  /* ---------- Legal pages ---------- */

  .legal {
    padding: 70px 0 100px;
  }

  .legal h1 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 8px; }

  .legal .updated { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 40px; }

  .legal h2 { font-size: 20px; margin: 32px 0 12px; }

  .legal p, .legal li { color: var(--ink-soft); font-size: 15px; margin-bottom: 14px; max-width: 720px; }

  .legal ul { list-style: disc; padding-left: 22px; }
