:root {
    --cream: #F5F4F0;           /* slightly warmer off-white */
    --cream-deep: #E8E6DF;
    --forest: #1A1A1A;          /* true charcoal (was already gray-toned) */
    --forest-deep: #0F0F0F;     /* near-black */
    --mower: #F0B030;           /* construction yellow — the brand pop color */
    --mower-deep: #D89020;      /* deeper amber for hover/accents */
    --leaf: #FFD060;            /* paler yellow accent */
    --honey: #F0B030;           /* legacy alias → yellow */
    --ink: #1A1A1A;
    --rust: #D89020;            /* legacy alias → amber */
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.55;
    overflow-x: hidden;
    /* paper grain texture */
    background-image:
      radial-gradient(rgba(20,19,15,0.04) 1px, transparent 1px),
      radial-gradient(rgba(20,19,15,0.03) 1px, transparent 1px);
    background-size: 3px 3px, 7px 7px;
    background-position: 0 0, 1px 2px;
  }

  .serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
  .italic { font-style: italic; }

  /* ===== NAV ===== */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(242,235,220,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,26,26,0.12);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 18px 28px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Instrument Serif', serif;
    font-size: 26px; color: var(--forest);
    text-decoration: none;
  }
  .logo svg { flex-shrink: 0; }
  .logo-img {
    height: 42px; width: auto;
    flex-shrink: 0;
  }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a {
    color: var(--ink); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--forest); }
  .nav-links .book-btn { display: none; }
  @media (min-width: 720px) { .nav-links .book-btn { display: inline-flex; } }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px; font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
    cursor: pointer; border: none;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--mower); color: #fff;
    box-shadow: 0 4px 0 var(--mower-deep);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--mower-deep); }
  .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--mower-deep); }
  .btn-ghost {
    background: transparent; color: var(--forest);
    border: 1.5px solid var(--forest);
  }
  .btn-ghost:hover { background: var(--forest); color: var(--cream); }

  /* ===== HERO ===== */
  .hero {
    max-width: 1200px; margin: 0 auto;
    padding: 60px 28px 80px;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    color: var(--forest);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1.5px; background: var(--forest);
  }
  .hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(48px, 9vw, 120px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--forest);
    margin-bottom: 28px;
  }
  .hero h1 em {
    font-style: italic; color: var(--rust);
    position: relative;
  }
  .hero h1 em::after {
    content: ''; position: absolute; bottom: 4%; left: -2%; width: 104%; height: 8px;
    background: var(--honey); opacity: 0.55;
    z-index: -1;
    transform: skewY(-1.2deg);
  }
  .hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(20,19,15,0.72);
    max-width: 540px;
    margin-bottom: 36px;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

  /* decorative grass illustration */
  .hero-deco {
    position: absolute;
    right: -20px; top: 80px;
    width: 280px; height: 280px;
    opacity: 0.95;
    pointer-events: none;
    display: none;
  }
  @media (min-width: 1000px) { .hero-deco { display: block; } }

  /* ===== TRUST BAR ===== */
  .trust {
    background: var(--mower);
    padding: 18px 0;
    box-shadow: 0 1px 0 var(--mower-deep) inset;
  }
  .trust-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 28px;
    display: flex; flex-wrap: wrap; gap: 18px 48px;
    justify-content: center;
    align-items: center;
    font-size: 14px; font-weight: 600; color: #fff;
    letter-spacing: 0.01em;
  }
  .trust-item { display: flex; align-items: center; gap: 10px; }
  .trust-item svg { color: #fff; flex-shrink: 0; opacity: 0.95; }

  /* ===== SECTIONS ===== */
  section { padding: 90px 0; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

  .section-label {
    font-size: 13px; font-weight: 700;
    color: var(--rust);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1;
    color: var(--forest);
    letter-spacing: -0.015em;
    margin-bottom: 20px;
    max-width: 780px;
  }
  .section-title em { font-style: italic; color: var(--rust); }
  .section-intro {
    font-size: 17px; color: rgba(20,19,15,0.7);
    max-width: 560px; margin-bottom: 56px;
  }

  /* ===== SERVICES ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(26,26,26,0.18);
    border: 1px solid rgba(26,26,26,0.18);
    border-radius: 4px;
    overflow: hidden;
  }
  .service {
    background: var(--cream);
    padding: 36px 32px;
    transition: background 0.25s;
  }
  .service:hover { background: var(--cream-deep); }
  .service-num {
    font-family: 'Instrument Serif', serif;
    font-size: 14px; color: var(--rust);
    margin-bottom: 30px; letter-spacing: 0.05em;
  }
  .service-icon {
    width: 44px; height: 44px;
    color: var(--forest);
    margin-bottom: 22px;
  }
  .service h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 30px; color: var(--forest);
    line-height: 1.05; margin-bottom: 12px;
  }
  .service p {
    font-size: 15px; color: rgba(20,19,15,0.72);
    line-height: 1.6;
  }

  /* ===== ABOUT SIMON ===== */
  .about {
    background: var(--forest);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .about::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative; z-index: 1;
  }
  @media (min-width: 880px) {
    .about-grid { grid-template-columns: 1fr 1.3fr; gap: 80px; }
  }
  .about .section-label { color: var(--honey); }
  .about .section-title { color: var(--cream); }
  .about .section-title em { color: var(--leaf); }
  .about p {
    font-size: 17px; line-height: 1.7;
    color: rgba(242,235,220,0.85);
    margin-bottom: 18px;
  }
  .about-quote {
    border-left: 3px solid var(--leaf);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    font-family: 'Instrument Serif', serif;
    font-size: 24px; font-style: italic;
    line-height: 1.4;
    color: var(--cream);
  }
  .about-portrait {
    aspect-ratio: 4/5;
    background: var(--cream-deep);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow:
      12px 12px 0 var(--leaf),
      24px 24px 0 var(--mower);
  }
  .about-portrait-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    color: var(--forest);
    text-align: center; padding: 30px;
    font-size: 14px;
  }
  .about-portrait-placeholder svg { margin-bottom: 14px; opacity: 0.4; }

  /* ===== HOW IT WORKS ===== */
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    counter-reset: step;
  }
  @media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
  .step {
    position: relative;
    padding-top: 28px;
    border-top: 2px solid var(--forest);
  }
  .step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: 'Instrument Serif', serif;
    font-size: 56px; color: var(--rust);
    line-height: 1;
    display: block; margin-bottom: 18px;
  }
  .step h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 28px; color: var(--forest);
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .step p {
    font-size: 15px; color: rgba(20,19,15,0.72);
    line-height: 1.6;
  }

  /* ===== CTA ===== */
  .cta {
    background: var(--mower);
    text-align: center;
    padding: 100px 28px;
    position: relative;
    overflow: hidden;
  }
  .cta-deco-1, .cta-deco-2 {
    position: absolute; opacity: 0.4; pointer-events: none;
  }
  .cta-deco-1 { left: -40px; top: -40px; transform: rotate(-20deg); }
  .cta-deco-2 { right: -40px; bottom: -40px; transform: rotate(160deg); }
  .cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
  .cta h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1; color: var(--forest);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .cta h2 em { font-style: italic; color: var(--forest-deep); }
  .cta p {
    font-size: 18px; color: var(--forest-deep);
    margin-bottom: 36px;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 60px 28px 32px;
  }
  .foot {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr;
    gap: 32px;
  }
  @media (min-width: 760px) { .foot { grid-template-columns: 1.4fr 1fr 1fr; } }
  .foot h5 {
    font-family: 'Instrument Serif', serif;
    font-size: 22px; color: var(--leaf);
    margin-bottom: 14px;
  }
  .foot p, .foot a { color: rgba(242,235,220,0.75); font-size: 15px; line-height: 1.7; text-decoration: none; }
  .foot a:hover { color: var(--leaf); }
  .foot-bottom {
    max-width: 1200px; margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(242,235,220,0.12);
    font-size: 13px; color: rgba(242,235,220,0.5);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: rise 0.7s 0.1s both ease-out; }
  .hero h1 { animation: rise 0.9s 0.25s both ease-out; }
  .hero-sub { animation: rise 0.9s 0.45s both ease-out; }
  .hero-actions { animation: rise 0.9s 0.6s both ease-out; }
  .hero-deco { animation: rise 1s 0.7s both ease-out; }

  @keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
  }
  .hero-deco svg { animation: sway 6s ease-in-out infinite; transform-origin: bottom center; }

  /* reveal on scroll */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ===== BOOKING MODAL ===== */
  .modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(20, 31, 24, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    overflow-y: auto;
  }
  .modal-backdrop.open { opacity: 1; visibility: visible; }
  body.modal-locked { overflow: hidden; }

  .modal {
    background: var(--cream);
    border-radius: 8px;
    width: 100%; max-width: 580px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.05);
    position: relative;
  }
  .modal-backdrop.open .modal { transform: translateY(0) scale(1); }

  .modal-header {
    padding: 28px 32px 0;
    position: relative;
  }
  .modal-eyebrow {
    font-size: 12px; font-weight: 700;
    color: var(--mower-deep);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 8px;
  }
  .modal-title {
    font-family: 'Instrument Serif', serif;
    font-size: 38px;
    line-height: 1;
    color: var(--forest);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
  }
  .modal-title em { font-style: italic; color: var(--mower); }
  .modal-sub {
    font-size: 14px; color: rgba(20,19,15,0.65);
    margin-bottom: 24px;
  }
  .modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    background: transparent; border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    transition: background 0.2s;
  }
  .modal-close:hover { background: rgba(0,0,0,0.06); }

  .modal-body { padding: 0 32px 28px; }

  .field { margin-bottom: 18px; }
  .field-label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--forest);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
  }
  .field-label .req { color: var(--mower-deep); }
  .field input[type="text"],
  .field input[type="tel"],
  .field select,
  .field textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid rgba(26,26,26,0.15);
    border-radius: 6px;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
    appearance: none;
  }
  .field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%232D4A1A' d='M6 8 L0 0 L12 0 Z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--mower);
    box-shadow: 0 0 0 3px rgba(123,164,43,0.18);
  }
  .field textarea { min-height: 80px; resize: vertical; font-family: inherit; }

  .field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  @media (min-width: 480px) {
    .field-row.cols-2 { grid-template-columns: 1fr 1fr; }
  }

  .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .check-pill {
    position: relative;
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border: 1.5px solid rgba(26,26,26,0.15);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s;
    user-select: none;
  }
  .check-pill input {
    position: absolute; opacity: 0; pointer-events: none;
  }
  .check-pill .box {
    width: 18px; height: 18px;
    border: 1.5px solid rgba(26,26,26,0.3);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
  }
  .check-pill .box svg {
    opacity: 0; transition: opacity 0.15s;
    color: #fff;
  }
  .check-pill:hover { border-color: var(--mower); }
  .check-pill.checked {
    border-color: var(--mower);
    background: rgba(123,164,43,0.07);
  }
  .check-pill.checked .box {
    background: var(--mower);
    border-color: var(--mower);
  }
  .check-pill.checked .box svg { opacity: 1; }

  .freq-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .freq-pill {
    text-align: center;
    padding: 11px 8px;
    background: #fff;
    border: 1.5px solid rgba(26,26,26,0.15);
    border-radius: 6px;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
  }
  .freq-pill:hover { border-color: var(--mower); }
  .freq-pill.selected {
    border-color: var(--mower);
    background: var(--mower);
    color: #fff;
    font-weight: 600;
  }

  .form-error {
    font-size: 13px;
    color: #B0492A;
    margin-top: 6px;
    display: none;
  }
  .form-error.show { display: block; }

  .modal-footer {
    padding: 18px 32px 28px;
    background: var(--cream-deep);
    border-top: 1px solid rgba(26,26,26,0.08);
    border-radius: 0 0 8px 8px;
  }
  .submit-btn {
    width: 100%;
    padding: 15px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px; font-weight: 700;
    color: #fff;
    background: var(--mower);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 0 var(--mower-deep);
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.12s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--mower-deep); }
  .submit-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--mower-deep); }
  .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .or-call {
    text-align: center;
    margin-top: 14px;
    font-size: 13px; color: rgba(20,19,15,0.65);
  }
  .or-call a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid var(--leaf);
  }

  /* Success state */
  .success-state {
    padding: 48px 32px;
    text-align: center;
    display: none;
  }
  .success-state.show { display: block; }
  .success-icon {
    width: 64px; height: 64px;
    background: var(--mower);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    animation: pop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1);
  }
  @keyframes pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
  }
  .success-title {
    font-family: 'Instrument Serif', serif;
    font-size: 36px;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 12px;
  }
  .success-msg {
    font-size: 15px;
    color: rgba(20,19,15,0.7);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto 24px;
  }
  .success-actions {
    display: flex; flex-direction: column; gap: 10px;
  }
  .success-actions a {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
  }
  .success-actions .resend {
    background: var(--forest); color: var(--cream);
  }
  .success-actions .call {
    color: var(--forest);
    border: 1.5px solid var(--forest);
  }

  /* ===== DATE & TIME PICKER ===== */
  .when-block {
    margin-top: 6px;
    padding: 16px;
    background: rgba(240, 176, 48, 0.06);
    border: 1.5px solid rgba(240, 176, 48, 0.2);
    border-radius: 8px;
  }
  .when-block .field-label { margin-bottom: 10px; }

  .date-strip-wrap {
    position: relative;
    margin-bottom: 14px;
  }
  .date-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(45,43,44,0.2) transparent;
  }
  .date-strip::-webkit-scrollbar { height: 5px; }
  .date-strip::-webkit-scrollbar-thumb { background: rgba(45,43,44,0.25); border-radius: 3px; }

  .date-card {
    flex: 0 0 auto;
    min-width: 64px;
    padding: 10px 8px;
    background: #fff;
    border: 1.5px solid rgba(45,43,44,0.12);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    scroll-snap-align: start;
    transition: all 0.15s;
    user-select: none;
  }
  .date-card:hover { border-color: var(--mower); transform: translateY(-1px); }
  .date-card.selected {
    background: var(--mower);
    border-color: var(--mower);
    color: #fff;
    box-shadow: 0 4px 12px -4px rgba(110,146,55,0.5);
  }
  .date-card .day {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.65;
    margin-bottom: 2px;
  }
  .date-card.selected .day { opacity: 0.85; }
  .date-card .num {
    font-size: 22px; font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
  }
  .date-card .month {
    font-size: 10px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.55;
  }

  .time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, max-height 0.4s ease;
  }
  @media (min-width: 480px) {
    .time-grid { grid-template-columns: repeat(5, 1fr); }
  }
  .time-grid.visible {
    opacity: 1;
    max-height: 320px;
  }
  .time-pill {
    padding: 12px 8px;
    background: #fff;
    border: 1.5px solid rgba(45,43,44,0.12);
    border-radius: 6px;
    font-size: 14px; font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
  }
  .time-pill:hover { border-color: var(--mower); }
  .time-pill.selected {
    background: var(--mower);
    border-color: var(--mower);
    color: #fff;
  }

  .flex-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1.5px solid rgba(45,43,44,0.12);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    transition: all 0.15s;
  }
  .flex-option .check-box {
    width: 18px; height: 18px;
    border: 1.5px solid rgba(45,43,44,0.3);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
  }
  .flex-option .check-box svg { opacity: 0; color: #fff; transition: opacity 0.15s; }
  .flex-option.checked { border-color: var(--mower); background: rgba(240,176,48,0.08); }
  .flex-option.checked .check-box { background: var(--mower); border-color: var(--mower); }
  .flex-option.checked .check-box svg { opacity: 1; }
  .flex-option input { display: none; }

  .when-block.flexible .date-strip-wrap,
  .when-block.flexible .time-grid {
    opacity: 0.4;
    pointer-events: none;
  }

  .slot-indicator {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(45,43,44,0.65);
    min-height: 18px;
    transition: color 0.2s;
  }
  .slot-indicator.warn { color: var(--rust); font-weight: 600; }
  .slot-indicator.ok { color: var(--mower-deep); font-weight: 600; }

  .time-pill.taken {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(0,0,0,0.04);
    text-decoration: line-through;
  }
  .time-pill.taken:hover { border-color: rgba(45,43,44,0.12); transform: none; }

  .date-card.full {
    cursor: not-allowed;
    position: relative;
    background: #FBE9E5;
    border-color: #D9533C;
    color: #9A2E1A;
  }
  .date-card.full:hover { transform: none; border-color: #D9533C; }
  .date-card.full .day,
  .date-card.full .month { color: #9A2E1A; opacity: 0.75; }
  .date-card.full .num { color: #9A2E1A; }
  .date-card.full::after {
    content: 'FULL';
    position: absolute;
    top: 3px; right: 4px;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    background: #D9533C;
    letter-spacing: 0.05em;
    padding: 1px 5px;
    border-radius: 3px;
  }

  .submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
  }
  .submit-btn.loading svg { animation: spin 0.8s linear infinite; }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  .api-error {
    margin: 8px 0 0;
    padding: 10px 14px;
    background: rgba(176,73,42,0.08);
    border: 1px solid rgba(176,73,42,0.2);
    border-radius: 6px;
    color: var(--rust);
    font-size: 13px;
    display: none;
  }
  .api-error.show { display: block; }

  .cal-add-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--mower);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px; font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 0 var(--mower-deep);
    transition: transform 0.12s, box-shadow 0.12s;
    margin-bottom: 12px;
  }
  .cal-add-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 0 var(--mower-deep); }
  .cal-add-btn:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--mower-deep); }

  /* ===== PAYMENT BLOCK ===== */
  .payment-block {
    margin-top: 12px;
    padding: 16px;
    background: rgba(45, 43, 44, 0.04);
    border: 1.5px solid rgba(45, 43, 44, 0.12);
    border-radius: 8px;
  }
  .payment-block .field-label { margin-bottom: 12px; }
  .payment-block .pay-msg {
    font-size: 12px;
    color: rgba(45,43,44,0.7);
    margin-top: 8px;
    line-height: 1.4;
  }
  .payment-block .pay-msg.recurring {
    color: var(--mower-deep);
    font-weight: 600;
  }
  /* Square's iframe styling target */
  #sq-card-container {
    background: #fff;
    border: 1.5px solid rgba(45,43,44,0.15);
    border-radius: 6px;
    padding: 4px 8px;
    min-height: 56px;
  }
  #sq-card-container.sq-focus {
    border-color: var(--mower);
    box-shadow: 0 0 0 3px rgba(240,176,48,0.18);
  }

  /* Price summary */
  .price-summary {
    margin-top: 14px;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px dashed rgba(45,43,44,0.2);
    border-radius: 6px;
    font-size: 13px;
  }
  .price-summary .price-row {
    display: flex; justify-content: space-between;
    padding: 3px 0;
    color: rgba(45,43,44,0.75);
  }
  .price-summary .price-row.total {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(45,43,44,0.12);
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
  }
  .price-summary .price-row .lbl-included {
    font-size: 11px;
    color: var(--mower-deep);
    font-style: italic;
  }
  .price-summary .recurring-hint {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(240,176,48,0.25);
    color: var(--mower-deep);
    font-size: 12px;
    font-weight: 600;
  }

  /* ===== Service checkbox price tags ===== */
  .check-pill .svc-price {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--mower-deep);
    flex-shrink: 0;
    white-space: nowrap;
  }
  .check-pill .svc-price.included {
    font-style: italic;
    font-weight: 600;
    color: rgba(0,0,0,0.45);
  }
  .check-pill .svc-price.from {
    font-weight: 600;
  }
  .check-pill .svc-price.from::before {
    content: 'from ';
    font-weight: 500;
    opacity: 0.7;
  }

  /* ===== Total row punchier ===== */
  .price-summary .price-row.total {
    font-size: 17px;
    font-weight: 700;
  }
  .price-summary .price-row.total span:last-child {
    color: var(--mower-deep);
    font-size: 19px;
  }

  /* Pulse animation when running total changes */
  @keyframes totalPulse {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.06); }
    100% { transform: scale(1); }
  }
  .price-summary .price-row.total.pulse span:last-child {
    animation: totalPulse 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: inline-block;
    transform-origin: right center;
  }

  /* ===== Submit button with running total ===== */
  .submit-btn {
    justify-content: space-between !important;
    padding: 15px 20px !important;
  }
  .submit-btn .btn-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .submit-btn .btn-total {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    padding-left: 16px;
    border-left: 1.5px solid rgba(255,255,255,0.25);
    line-height: 1;
    transition: transform 0.2s ease;
    transform-origin: right center;
  }

  /* Pulse the button total briefly when it changes */
  @keyframes btnTotalBump {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.10); }
    100% { transform: scale(1); }
  }
  .submit-btn .btn-total.bump {
    animation: btnTotalBump 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  }

  /* ===== Booking modal — Pro Mowing branded shell around Square widget ===== */
  .book-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .book-modal.open { opacity: 1; visibility: visible; }
  .book-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20,19,15,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .book-modal-card {
    position: relative;
    background: var(--cream);
    border-radius: 24px;
    width: 100%;
    max-width: 880px;
    max-height: 94vh;
    box-shadow: 0 24px 80px rgba(20,19,15,0.45);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .book-modal.open .book-modal-card { transform: translateY(0) scale(1); }

  /* Header — charcoal w/ cream text, decorative grass accent */
  .book-modal-header {
    position: relative;
    padding: 32px 36px 24px;
    background: var(--forest);
    color: var(--cream);
    flex-shrink: 0;
    overflow: hidden;
  }
  .book-modal-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .book-modal-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--leaf);
    margin: 0 0 8px;
    display: inline-block;
  }
  .book-modal-titles { flex: 1; min-width: 0; }
  .book-modal h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--cream);
    margin: 0 0 6px;
  }
  .book-modal h2 em { font-style: italic; color: var(--leaf); }
  .book-modal-sub {
    font-size: 15px;
    color: rgba(244,242,236,0.75);
    margin: 0;
    line-height: 1.5;
    max-width: 540px;
  }
  .book-modal-close {
    background: rgba(244,242,236,0.12);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--cream);
    transition: background 0.15s;
    flex-shrink: 0;
    padding: 0;
  }
  .book-modal-close:hover { background: rgba(244,242,236,0.22); }
  .book-modal-close svg { width: 16px; height: 16px; }
  .book-modal-deco {
    position: absolute;
    bottom: -10px;
    right: 24px;
    opacity: 0.18;
    pointer-events: none;
  }

  /* Lime accent ribbon between header and trust row */
  .book-modal-ribbon {
    height: 4px;
    background: linear-gradient(90deg, var(--mower-deep) 0%, var(--mower) 50%, var(--leaf) 100%);
    flex-shrink: 0;
  }

  /* Trust row — three quick benefits */
  .book-modal-trust {
    background: var(--cream);
    padding: 18px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-bottom: 1px solid rgba(20,19,15,0.08);
    flex-shrink: 0;
  }
  .book-modal-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .book-modal-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--leaf);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .book-modal-trust-icon svg { width: 14px; height: 14px; }
  .book-modal-trust-text {
    font-size: 13px;
    line-height: 1.35;
    color: var(--ink);
  }
  .book-modal-trust-text strong {
    display: block;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1px;
  }

  /* Body — widget mount in a card-within-a-card */
  .book-modal-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 36px;
    background: var(--cream);
  }
  .book-widget-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(20,19,15,0.08);
    box-shadow: 0 4px 16px rgba(20,19,15,0.05);
    overflow: hidden;
  }
  .book-widget-mount {
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
  .book-widget-loading {
    color: rgba(20,19,15,0.5);
    font-size: 14px;
    padding: 60px 20px;
    text-align: center;
  }
  .book-widget-loading-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(20,19,15,0.1);
    border-top-color: var(--mower-deep);
    border-radius: 50%;
    animation: bookSpin 0.8s linear infinite;
    margin: 0 auto 14px;
  }
  @keyframes bookSpin { to { transform: rotate(360deg); } }

  /* Footer — phone fallback + Square trust mark */
  .book-modal-footer {
    padding: 16px 36px 20px;
    border-top: 1px solid rgba(20,19,15,0.08);
    background: var(--cream);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .book-modal-footer-left,
  .book-modal-footer-right {
    font-size: 13px;
    color: rgba(20,19,15,0.6);
  }
  .book-modal-footer a {
    color: var(--mower-deep);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid currentColor;
  }
  .book-modal-footer a:hover { color: var(--forest-deep); }
  .book-modal-secured {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
  }
  .book-modal-secured svg { width: 12px; height: 12px; }

  body.modal-locked { overflow: hidden; }

  @media (max-width: 720px) {
    .book-modal-trust {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 14px 24px;
    }
    .book-modal-header { padding: 26px 24px 20px; }
    .book-modal-body { padding: 18px 20px; }
    .book-modal-footer { padding: 14px 20px 16px; }
  }
  @media (max-width: 600px) {
    .book-modal { padding: 0; }
    .book-modal-card {
      max-width: 100%;
      max-height: 100vh;
      height: 100vh;
      border-radius: 0;
    }
    .book-modal h2 { font-size: 26px; }
  }

  /* ===== Rewards section ===== */
  .rewards {
    background: var(--forest);
    color: var(--cream);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .rewards-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  .rewards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .rewards-text .section-label {
    color: var(--leaf);
    margin-bottom: 18px;
  }
  .rewards-text h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin: 0 0 20px;
  }
  .rewards-text h2 em { font-style: italic; color: var(--leaf); }
  .rewards-text p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(244,242,236,0.8);
    margin: 0 0 16px;
    max-width: 480px;
  }
  .rewards-perks {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
  }
  .rewards-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--cream);
  }
  .rewards-perks li::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--mower);
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2 7 l3 3 l7 -7' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
  }

  /* Rewards card */
  .rewards-card {
    background: var(--cream);
    color: var(--ink);
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    transform: rotate(-1.5deg);
    position: relative;
  }
  .rewards-card::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(244,242,236,0.2);
    border-radius: 26px;
    z-index: -1;
    transform: rotate(2deg);
  }
  .rewards-card-badge {
    display: inline-block;
    background: var(--mower);
    color: var(--forest);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
  }
  .rewards-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--forest);
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
  }
  .rewards-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(20,19,15,0.08);
  }
  .rewards-card-row:last-child { border-bottom: none; }
  .rewards-card-row-label {
    font-size: 15px;
    color: var(--ink);
    opacity: 0.75;
  }
  .rewards-card-row-value {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--mower-deep);
  }
  .rewards-card-footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed rgba(20,19,15,0.15);
    font-size: 13px;
    color: rgba(20,19,15,0.6);
    line-height: 1.5;
    font-style: italic;
  }

  /* Decorative grass blades */
  .rewards-deco {
    position: absolute;
    bottom: -20px;
    left: -40px;
    opacity: 0.1;
    pointer-events: none;
  }

  @media (max-width: 800px) {
    .rewards { padding: 60px 0; }
    .rewards-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .rewards-card { transform: none; max-width: 380px; margin: 0 auto; }
    .rewards-card::before { display: none; }
  }

  /* ===== Multi-page additions ===== */
  /* Active nav link */
  .nav-links a.active {
    color: var(--mower-deep);
  }
  .nav-links a.active::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--mower-deep);
    margin-top: 4px;
    border-radius: 2px;
  }

  /* Compact page hero (used on Services/About/Contact) */
  .page-hero {
    text-align: center;
    padding: 70px 24px 50px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
    border-bottom: 1px solid rgba(20,19,15,0.06);
    position: relative;
    overflow: hidden;
  }
  .page-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mower-deep);
    margin: 0 0 12px;
  }
  .page-hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--forest);
    margin: 0 0 14px;
  }
  .page-hero h1 em { font-style: italic; color: var(--mower-deep); }
  .page-hero p {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--ink);
    opacity: 0.75;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.55;
  }

  /* Contact page specific */
  .contact-cards {
    max-width: 1080px;
    margin: 0 auto;
    padding: 70px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  .contact-card {
    background: #fff;
    border: 1px solid rgba(20,19,15,0.08);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(20,19,15,0.04);
    text-align: left;
  }
  .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mower);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .contact-card-icon svg { width: 22px; height: 22px; }
  .contact-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .contact-card p {
    font-size: 15px;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.55;
    margin: 0 0 12px;
  }
  .contact-card a {
    display: inline-block;
    color: var(--mower-deep);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
  }
  .contact-card a:hover { color: var(--forest-deep); }
  .contact-card strong {
    display: block;
    font-size: 17px;
    color: var(--forest);
    margin-top: 4px;
  }
  .contact-areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-areas-list li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 1px solid rgba(20,19,15,0.06);
  }
  .contact-areas-list li:last-child { border: none; }
  .contact-areas-list li::before {
    content: '✓';
    color: var(--mower-deep);
    font-weight: 700;
    margin-right: 8px;
  }


  /* ===== Rewards page (rewards.html) ===== */
  .rewards-page-hero {
    background: linear-gradient(180deg, var(--forest) 0%, #0F0F0F 100%);
    color: var(--cream);
    border-bottom: 0;
    padding-bottom: 70px;
  }
  .rewards-page-hero .page-hero-eyebrow { color: var(--leaf); }
  .rewards-page-hero h1 { color: var(--cream); }
  .rewards-page-hero h1 em { color: var(--leaf); }
  .rewards-page-hero p { color: rgba(244,242,236,0.78); }

  /* Steps section */
  .rewards-steps {
    padding: 90px 0;
    background: var(--cream);
  }
  .rewards-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
  }
  .rewards-step {
    text-align: left;
  }
  .rewards-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--mower);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .rewards-step h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
  }
  .rewards-step p {
    font-size: 15px;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.6;
    margin: 0;
  }
  .rewards-tiers {
    padding: 90px 0;
    background: var(--cream-deep);
  }
  .rewards-tiers-intro {
    font-size: 16px;
    color: var(--ink);
    opacity: 0.7;
    max-width: 640px;
    margin: 16px 0 50px;
    line-height: 1.6;
    font-style: italic;
  }
  .rewards-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
  }
  .rewards-tier-card {
    background: #fff;
    border: 1px solid rgba(20,19,15,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(20,19,15,0.04);
    position: relative;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .rewards-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(20,19,15,0.08);
  }
  .rewards-tier-card.highlight {
    background: #fff;
    color: var(--ink);
    border-color: var(--mower);
    box-shadow: 0 8px 24px rgba(240,176,48,0.18);
  }
  .rewards-tier-card.highlight h3 { color: var(--forest); }
  .rewards-tier-card.highlight p { color: var(--ink); opacity: 0.78; }
  .rewards-tier-card.highlight .rewards-tier-tagline { color: var(--mower-deep); opacity: 1; }
  .rewards-tier-card.highlight .rewards-tier-icon { background: var(--mower); color: var(--forest); }
  .rewards-tier-badge {
    position: absolute;
    top: -10px;
    right: 22px;
    background: var(--mower);
    color: var(--forest);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 12px;
  }
  .rewards-tier-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .rewards-tier-icon svg { width: 22px; height: 22px; }
  .rewards-tier-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 4px;
    letter-spacing: -0.01em;
  }
  .rewards-tier-tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mower-deep);
    margin: 0 0 12px !important;
  }
  .rewards-tier-card p:not(.rewards-tier-tagline) {
    font-size: 14px;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.55;
    margin: 0;
  }
  .rewards-faq {
    padding: 90px 0;
    background: var(--cream);
  }
  .rewards-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 50px;
    margin-top: 50px;
  }
  .rewards-faq-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .rewards-faq-item p {
    font-size: 15px;
    color: var(--ink);
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
  }

  /* Trust note */
  .rewards-trust-note {
    padding: 50px 0;
    background: var(--cream-deep);
    border-top: 1px solid rgba(20,19,15,0.06);
    border-bottom: 1px solid rgba(20,19,15,0.06);
    text-align: center;
  }
  .rewards-trust-note p {
    font-size: 14px;
    color: var(--ink);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
  }
  .rewards-trust-note strong { color: var(--mower-deep); }

  @media (max-width: 800px) {
    .rewards-steps-grid { grid-template-columns: 1fr; gap: 30px; }
    .rewards-faq-grid { grid-template-columns: 1fr; gap: 28px; }
    .rewards-steps, .rewards-tiers, .rewards-faq { padding: 60px 0; }
  }


  /* ===== Rewards check-balance section ===== */
  .rewards-check {
    padding: 50px 0 70px;
    background: var(--cream);
  }
  .rewards-check-card {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--forest) 0%, #0F0F0F 100%);
    color: var(--cream);
    border-radius: 24px;
    padding: 50px 50px 46px;
    box-shadow: 0 18px 50px rgba(20,19,15,0.18);
    display: flex;
    gap: 36px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
  }
  .rewards-check-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--mower);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rewards-check-icon svg { width: 30px; height: 30px; }
  .rewards-check-content { flex: 1; min-width: 0; }
  .rewards-check h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--cream);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
  }
  .rewards-check h2 em {
    font-style: italic;
    color: var(--leaf);
  }
  .rewards-check p {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(244,242,236,0.78);
    margin: 0 0 22px;
    max-width: 580px;
  }
  .rewards-check-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
  }
  .rewards-check .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(244,242,236,0.4);
  }
  .rewards-check .btn-secondary:hover {
    background: rgba(244,242,236,0.1);
    border-color: rgba(244,242,236,0.7);
    color: var(--cream);
  }
  .rewards-check-note {
    font-size: 13px !important;
    color: rgba(244,242,236,0.55) !important;
    font-style: italic;
    margin: 0 !important;
  }

  @media (max-width: 700px) {
    .rewards-check-card {
      flex-direction: column;
      padding: 36px 28px 32px;
      gap: 20px;
    }
    .rewards-check-buttons {
      flex-direction: column;
      align-items: stretch;
    }
    .rewards-check-buttons .btn { text-align: center; }
  }


  /* ===== Rewards profile (Square Buyer Profile callout) ===== */
  .rewards-profile {
    padding: 70px 0;
    background: var(--cream-deep);
  }
  .rewards-profile-card {
    background: #fff;
    border: 1px solid rgba(20,19,15,0.08);
    border-radius: 24px;
    padding: 50px 50px 46px;
    box-shadow: 0 4px 16px rgba(20,19,15,0.04);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .rewards-profile-text .section-label {
    color: var(--mower-deep);
    margin-bottom: 14px;
  }
  .rewards-profile h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--forest);
    margin: 0 0 14px;
    letter-spacing: -0.01em;
  }
  .rewards-profile h2 em {
    font-style: italic;
    color: var(--mower-deep);
  }
  .rewards-profile p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.78;
    margin: 0 0 12px;
  }
  .rewards-profile-perks {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
  }
  .rewards-profile-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--ink);
  }
  .rewards-profile-perks li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--mower);
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2 7 l3 3 l7 -7' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
  }
  .rewards-profile-btn {
    background: var(--forest);
    color: var(--cream) !important;
    border-color: var(--forest) !important;
  }
  .rewards-profile-btn:hover {
    background: #0F0F0F;
    border-color: #0F0F0F !important;
  }

  /* Decorative card visual */
  .rewards-profile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .rewards-profile-visual-card {
    background: linear-gradient(135deg, var(--forest) 0%, #0F0F0F 100%);
    border-radius: 18px;
    padding: 32px 28px 24px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 12px 32px rgba(20,19,15,0.18);
    position: relative;
    transform: rotate(2deg);
  }
  .rewards-profile-visual-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(244,242,236,0.12);
  }
  .rewards-profile-visual-row:last-of-type { border-bottom: none; }
  .rewards-profile-visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mower);
    flex-shrink: 0;
  }
  .rewards-profile-visual-line {
    height: 8px;
    background: rgba(244,242,236,0.25);
    border-radius: 4px;
    flex: 1;
  }
  .rewards-profile-visual-line.short { width: 50%; flex: none; }
  .rewards-profile-visual-line.medium { width: 75%; flex: none; }
  .rewards-profile-visual-tag {
    margin-top: 16px;
    display: inline-block;
    background: var(--mower);
    color: var(--forest);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 12px;
  }

  @media (max-width: 800px) {
    .rewards-profile-card {
      grid-template-columns: 1fr;
      padding: 36px 28px;
      gap: 32px;
    }
    .rewards-profile-visual {
      order: -1;
    }
    .rewards-profile-visual-card {
      max-width: 240px;
      transform: none;
    }
  }


  /* ===== FAQ (generic — used on home page) ===== */
  .faq {
    padding: 90px 0;
    background: var(--cream);
  }
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 50px;
    margin-top: 50px;
  }
  .faq-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }
  .faq-item p {
    font-size: 15px;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.6;
    margin: 0;
  }
  .faq-item p a {
    color: var(--mower-deep);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1.5px solid currentColor;
  }
  .faq-item p a:hover { color: var(--forest-deep); }

  @media (max-width: 800px) {
    .faq-grid { grid-template-columns: 1fr; gap: 28px; }
    .faq { padding: 60px 0; }
  }


  /* ===== Recurring service callout ===== */
  .recurring {
    padding: 90px 0;
    background: var(--cream);
  }
  .recurring-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
  }
  .recurring-text .section-label {
    color: var(--mower-deep);
    margin-bottom: 16px;
  }
  .recurring-text h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--forest);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
  }
  .recurring-text h2 em {
    font-style: italic;
    color: var(--mower-deep);
  }
  .recurring-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.78;
    margin: 0 0 14px;
    max-width: 480px;
  }
  .recurring-perks {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
  }
  .recurring-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--ink);
  }
  .recurring-perks li::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--mower);
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2 7 l3 3 l7 -7' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
  }

  /* Schedule card visual */
  .recurring-card-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .recurring-card {
    background: linear-gradient(135deg, var(--forest) 0%, #0F0F0F 100%);
    color: var(--cream);
    border-radius: 20px;
    padding: 32px 28px 24px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 18px 44px rgba(20,19,15,0.18);
    position: relative;
  }
  .recurring-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(244,242,236,0.7);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(244,242,236,0.12);
  }
  .recurring-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mower);
    box-shadow: 0 0 0 4px rgba(240,176,48,0.2);
  }
  .recurring-card-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(244,242,236,0.08);
  }
  .recurring-card-row:last-of-type { border-bottom: none; }
  .recurring-card-row-future {
    opacity: 0.5;
  }
  .recurring-card-day {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--leaf);
    width: 36px;
    flex-shrink: 0;
  }
  .recurring-card-line {
    flex: 1;
    height: 6px;
    background: rgba(244,242,236,0.15);
    border-radius: 3px;
  }
  .recurring-card-time {
    font-size: 14px;
    color: var(--cream);
    flex-shrink: 0;
  }
  .recurring-card-tag {
    margin-top: 18px;
    display: inline-block;
    background: var(--mower);
    color: var(--forest);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 12px;
  }

  @media (max-width: 800px) {
    .recurring { padding: 60px 0; }
    .recurring-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .recurring-card-wrap { order: -1; }
    .recurring-card { max-width: 280px; }
  }


  /* ===== Gifts page ===== */
  .gifts-page-hero {
    padding-bottom: 50px;
  }
  .gifts-hero-btn {
    margin-top: 22px;
    display: inline-block;
  }
  .gifts-hero-note {
    margin-top: 18px !important;
    font-size: 12px !important;
    color: rgba(20,19,15,0.55) !important;
    font-style: italic;
  }

  /* "Perfect for" cards */
  .gifts-perfect {
    padding: 90px 0;
    background: var(--cream);
  }
  .gifts-perfect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 50px;
  }
  .gifts-perfect-card {
    background: #fff;
    border: 1px solid rgba(20,19,15,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(20,19,15,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .gifts-perfect-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(20,19,15,0.08);
  }
  .gifts-perfect-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .gifts-perfect-icon svg { width: 22px; height: 22px; }
  .gifts-perfect-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
  }
  .gifts-perfect-card p {
    font-size: 14px;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.55;
    margin: 0;
  }

  /* "How it works" */
  .gifts-how {
    padding: 90px 0;
    background: var(--cream-deep);
  }
  .gifts-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
  }
  .gifts-how-step {
    text-align: left;
  }
  .gifts-how-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--mower);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
  }
  .gifts-how-step h3 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--forest);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
  }
  .gifts-how-step p {
    font-size: 15px;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.6;
    margin: 0;
  }

  /* Buy CTA */
  .gifts-buy {
    padding: 70px 0;
    background: var(--cream);
  }
  .gifts-buy-card {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--forest) 0%, #0F0F0F 100%);
    color: var(--cream);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 18px 50px rgba(20,19,15,0.18);
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .gifts-buy-content .section-label {
    color: var(--leaf);
    margin-bottom: 14px;
  }
  .gifts-buy h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--cream);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }
  .gifts-buy p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(244,242,236,0.78);
    margin: 0 0 24px;
    max-width: 520px;
  }
  .gifts-buy-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .gifts-buy-note {
    margin-top: 18px !important;
    font-size: 12px !important;
    color: rgba(244,242,236,0.5) !important;
    font-style: italic;
  }

  /* Decorative gift card visual */
  .gifts-buy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }
  .gifts-buy-card-art {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1.6 / 1;
    background: linear-gradient(135deg, var(--mower) 0%, var(--mower-deep) 100%);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    transform: rotate(-3deg);
    color: var(--forest);
  }
  .gifts-buy-card-art-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .gifts-buy-card-art-logo {
    font-family: 'Fraunces', serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--forest);
  }
  .gifts-buy-card-art-tag {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(26,26,26,0.15);
    padding: 4px 8px;
    border-radius: 8px;
  }
  .gifts-buy-card-art-amount {
    font-family: 'Instrument Serif', serif;
    font-size: 42px;
    color: var(--forest);
    line-height: 1;
    align-self: center;
    margin: 0;
  }
  .gifts-buy-card-art-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .gifts-buy-card-art-line {
    height: 4px;
    background: rgba(26,26,26,0.2);
    border-radius: 2px;
  }
  .gifts-buy-card-art-line.short {
    width: 60%;
  }

  /* Gifts FAQ — uses generic .faq-grid styles already defined */
  .gifts-faq {
    padding: 90px 0;
    background: var(--cream-deep);
  }

  @media (max-width: 800px) {
    .gifts-perfect, .gifts-how, .gifts-faq { padding: 60px 0; }
    .gifts-how-grid { grid-template-columns: 1fr; gap: 32px; }
    .gifts-buy-card {
      grid-template-columns: 1fr;
      padding: 36px 28px;
      gap: 32px;
    }
    .gifts-buy-visual { order: -1; }
    .gifts-buy-card-art { transform: none; max-width: 220px; }
  }


  /* ===== Social links in footer ===== */
  .social-links {
    display: flex;
    gap: 10px;
    margin-top: 4px;
  }
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(244,242,236,0.1);
    color: var(--cream);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.15s;
  }
  .social-link:hover {
    background: var(--mower);
    color: var(--forest);
    transform: translateY(-2px);
  }
  .social-link svg {
    width: 18px;
    height: 18px;
  }


  /* ===== Service area map (contact page) ===== */
  .service-map {
    padding: 70px 0 90px;
    background: var(--cream-deep);
  }
  .service-map-intro {
    font-size: 16px;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.6;
    max-width: 640px;
    margin: 18px 0 36px;
  }
  .service-map-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(20,19,15,0.12);
    background: #fff;
    margin-bottom: 28px;
  }
  .service-map-frame iframe {
    display: block;
    width: 100%;
  }
  .service-map-towns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .service-map-town {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(20,19,15,0.08);
    border-radius: 12px;
  }
  .service-map-pin {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mower);
    margin-top: 4px;
    box-shadow: 0 0 0 4px rgba(240,176,48,0.2);
  }
  .service-map-town strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--forest);
    margin-bottom: 2px;
  }
  .service-map-town span:not(.service-map-pin) {
    font-size: 13px;
    color: var(--ink);
    opacity: 0.65;
  }
  /* Show sun in dark mode (because clicking it goes to light), moon in light mode (because clicking it goes to dark) */


  /* ===== Work carousel (about page) ===== */
  .work-carousel {
    padding: 70px 0 80px;
    background: var(--cream);
  }
  .work-carousel-intro {
    font-size: 16px;
    color: var(--ink);
    opacity: 0.75;
    line-height: 1.6;
    max-width: 580px;
    margin: 18px 0 36px;
  }

  .carousel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(20,19,15,0.16);
    background: var(--forest);
  }
  .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .carousel-slide {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--forest);
  }
  .carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 24px;
    background: linear-gradient(to top, rgba(15,15,15,0.85), rgba(15,15,15,0));
    color: var(--cream);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* Arrow buttons */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: none;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.15s;
    z-index: 2;
  }
  .carousel-arrow:hover {
    background: var(--mower);
    transform: translateY(-50%) scale(1.05);
  }
  .carousel-arrow svg { width: 22px; height: 22px; }
  .carousel-arrow-prev { left: 14px; }
  .carousel-arrow-next { right: 14px; }

  /* Dots */
  .carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .carousel-dot:hover { background: rgba(255, 255, 255, 0.8); }
  .carousel-dot.active {
    background: var(--mower);
    transform: scale(1.3);
  }

  @media (max-width: 700px) {
    .work-carousel { padding: 50px 0; }
    .carousel-arrow { width: 36px; height: 36px; }
    .carousel-arrow-prev { left: 8px; }
    .carousel-arrow-next { right: 8px; }
    .carousel-arrow svg { width: 18px; height: 18px; }
    .carousel-caption { font-size: 13px; padding: 14px 16px; }
  }

  /* Respect reduced-motion preference: disable autoplay sliding */
  @media (prefers-reduced-motion: reduce) {
    .carousel-track { transition: none; }
  }
