* { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --bg: #faf6ee;
    --bg-2: #f3ede0;
    --card: #ffffff;
    --border: rgba(46, 64, 50, 0.12);
    --border-strong: rgba(46, 64, 50, 0.2);
    --text: #1f2e26;
    --text-dim: #5c6b62;
    --sage: #4a6b52;
    --sage-deep: #2e4032;
    --gold: #c89456;
    --gold-deep: #a87436;
    --navy: #1d3a4a;
    --shell: #f3ede0;
    --gradient: linear-gradient(135deg, var(--sage) 0%, var(--navy) 100%);
    --gradient-warm: linear-gradient(135deg, var(--gold) 0%, var(--sage) 100%);
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  .gradient-bg {
    position: fixed; inset: 0; z-index: -1;
    background: var(--bg);
    overflow: hidden;
  }
  .gradient-bg::before, .gradient-bg::after {
    content: ''; position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
  }
  .gradient-bg::before { background: var(--sage); top: -15%; left: -10%; }
  .gradient-bg::after { background: var(--gold); bottom: -15%; right: -10%; }

  /* Founder banner */
  .founder-banner {
    background: var(--sage-deep);
    color: #f3ede0;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 101;
  }
  .founder-banner a { color: var(--gold); text-decoration: underline; font-weight: 600; }

  nav {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(250, 246, 238, 0.85);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    transition: all 0.3s ease;
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px; font-weight: 700;
    color: var(--sage-deep);
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 10px;
  }
  .logo-mark {
    width: 32px; height: 32px;
    flex-shrink: 0;
  }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    color: var(--text-dim); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--sage); }
  .nav-cta {
    padding: 10px 20px; border-radius: 999px;
    background: var(--sage-deep);
    color: var(--shell) !important; font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    background: var(--sage);
    box-shadow: 0 8px 24px rgba(46, 64, 50, 0.2);
  }
  .menu-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; font-size: 24px; }

  section { padding: 110px 24px; position: relative; overflow: hidden; }
  .container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
  .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(74, 107, 82, 0.1);
    border: 1px solid rgba(74, 107, 82, 0.2);
    color: var(--sage);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 600; line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--sage-deep);
  }
  h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600; line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--sage-deep);
  }
  h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px; font-weight: 600;
    margin-bottom: 12px;
    color: var(--sage-deep);
    letter-spacing: -0.01em;
  }
  .accent-text {
    color: var(--gold-deep);
    font-style: italic;
  }
  .lead { font-size: 18px; color: var(--text-dim); max-width: 620px; line-height: 1.65; }
  .section-head { text-align: center; margin-bottom: 64px; }
  .section-head .lead { margin: 0 auto; }

  .hero {
    min-height: 92vh;
    display: flex; align-items: center;
    padding-top: 60px;
    position: relative;
  }
  .hero-content { max-width: 920px; margin: 0 auto; text-align: center; position: relative; z-index: 3; }
  .scene-bg {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .scene-bg-full {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .scene-divider {
    width: 100%;
    height: 80px;
    display: block;
    margin-top: -1px;
    pointer-events: none;
  }
  .hero-ctas {
    display: flex; gap: 16px; justify-content: center;
    margin-top: 40px; flex-wrap: wrap;
  }
  .btn {
    padding: 14px 28px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    text-decoration: none; cursor: pointer;
    border: none; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--sage) -25%, var(--sage-deep) 55%, #22333b 135%);
    color: var(--shell);
    box-shadow: 0 4px 14px rgba(46, 64, 50, 0.18);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: var(--sage);
    box-shadow: 0 12px 32px rgba(46, 64, 50, 0.25);
  }
  .btn-secondary {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    color: var(--sage-deep);
    border: 1.5px solid var(--sage-deep);
  }
  .btn-secondary:hover {
    background: var(--sage-deep);
    color: var(--shell);
  }
  .hero-stats {
    display: flex; gap: 56px; justify-content: center;
    margin-top: 64px; flex-wrap: wrap;
    padding: 28px 40px;
    background: rgba(250, 246, 238, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(46, 64, 50, 0.12);
    max-width: 700px;
    margin-left: auto; margin-right: auto;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px; font-weight: 600;
    color: var(--sage-deep);
    font-style: italic;
  }
  .stat-label {
    font-size: 12px; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: 4px;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(46, 64, 50, 0.04);
  }
  .card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-warm);
    opacity: 0; transition: opacity 0.3s;
  }
  .card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 12px 32px rgba(46, 64, 50, 0.08);
  }
  .card:hover::before { opacity: 1; }
  .card-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(200, 148, 86, 0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-deep);
  }
  .card p { color: var(--text-dim); font-size: 15px; }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
  }
  .step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    counter-increment: step;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(46, 64, 50, 0.04);
  }
  .step:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 12px 32px rgba(46, 64, 50, 0.08);
  }
  .step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
    font-style: italic;
  }
  .step h3 { font-size: 18px; margin-bottom: 8px; }
  .step p { color: var(--text-dim); font-size: 14px; }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
  .portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(46, 64, 50, 0.04);
  }
  .portfolio-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 16px 40px rgba(46, 64, 50, 0.1);
  }
  .portfolio-preview {
    height: 250px;
    position: relative;
    overflow: hidden;
  }
  .portfolio-1 { background: linear-gradient(135deg, #c89456, #a87436); }
  .portfolio-2 { background: linear-gradient(135deg, #4a6b52, #2e4032); }
  .portfolio-3 { background: linear-gradient(135deg, #1d3a4a, #2e4032); }
  .portfolio-4 { background: linear-gradient(135deg, #c89456, #4a6b52); }
  .portfolio-5 { background: linear-gradient(135deg, #2e4032, #1d3a4a); }
  .portfolio-6 { background: linear-gradient(135deg, #a87436, #1d3a4a); }
  .portfolio-preview::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 50%);
  }
  .mock-site {
    position: absolute; left: 26px; right: 26px; top: 26px; bottom: -10px;
    background: #fdfcf9;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 18px 44px rgba(15, 26, 20, 0.35);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .portfolio-item:hover .mock-site { transform: translateY(-10px); }
  .mock-chrome {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 10px;
    background: #f1efe8; border-bottom: 1px solid #e5e2d7;
    flex-shrink: 0;
  }
  .mock-chrome span { width: 8px; height: 8px; border-radius: 50%; }
  .mock-chrome span:nth-child(1) { background: #e8a09a; }
  .mock-chrome span:nth-child(2) { background: #ecd9a2; }
  .mock-chrome span:nth-child(3) { background: #b5cdb2; }
  .mock-url {
    flex: 1; margin-left: 8px;
    background: #fff; border: 1px solid #e5e2d7; border-radius: 999px;
    font-size: 9px; color: #a09b8c;
    padding: 2px 10px; letter-spacing: 0.3px;
  }
  .mock-nav { display: flex; align-items: center; gap: 5px; padding: 8px 12px; }
  .mock-logo { width: 38px; height: 7px; border-radius: 4px; background: var(--mock); }
  .mock-links { display: flex; gap: 5px; margin-left: auto; }
  .mock-links i { width: 15px; height: 5px; border-radius: 3px; background: #e2dfd3; }
  .mock-btn { width: 26px; height: 10px; border-radius: 999px; background: var(--mock); margin-left: 4px; }
  .mock-hero {
    position: relative;
    margin: 0 10px;
    border-radius: 8px;
    padding: 16px 12px 14px;
    background: linear-gradient(135deg, var(--mock), var(--mock-2));
  }
  .mock-glyph { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 26px; }
  .mock-h1 { width: 52%; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.95); margin-bottom: 6px; }
  .mock-sub { width: 68%; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.5); margin-bottom: 10px; }
  .mock-cta { width: 40px; height: 11px; border-radius: 999px; background: rgba(255,255,255,0.95); }
  .mock-cards { display: flex; gap: 7px; padding: 10px; }
  .mock-cards div {
    flex: 1; height: 30px; border-radius: 5px;
    background: #f3f1ea; border: 1px solid #e8e5da;
    position: relative;
  }
  .mock-cards div::before {
    content: ''; position: absolute;
    left: 5px; top: 6px; width: 55%; height: 5px;
    background: #d9d5c6; border-radius: 3px;
  }
  .mock-cards div::after {
    content: ''; position: absolute;
    left: 5px; top: 15px; width: 75%; height: 4px;
    background: #e8e5da; border-radius: 2px;
  }
  .portfolio-info { padding: 24px 26px 28px; }
  .portfolio-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(200, 148, 86, 0.12);
    color: var(--gold-deep);
    border-radius: 6px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.8px;
    margin-bottom: 8px;
  }
  .portfolio-info h3 { margin-bottom: 4px; font-size: 19px; }
  .portfolio-info p { color: var(--text-dim); font-size: 14px; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px; margin: 0 auto;
  }
  .price-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 44px 32px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(46, 64, 50, 0.04);
  }
  .price-card.featured {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(249,244,232,0.95) 100%);
    border-color: var(--gold);
    border-width: 2px;
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(200, 148, 86, 0.15);
  }
  .price-card:hover:not(.featured) {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 64, 50, 0.08);
  }
  .badge {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    white-space: nowrap;
  }
  .price-name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px; font-weight: 600;
    color: var(--sage-deep);
    margin-bottom: 12px;
    font-style: italic;
  }
  .price-amount {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 44px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--sage-deep);
  }
  .price-original {
    font-size: 18px; color: var(--text-dim);
    text-decoration: line-through;
    font-weight: 500; margin-right: 8px;
    font-family: 'Fraunces', Georgia, serif;
  }
  .price-amount span { font-size: 16px; color: var(--text-dim); font-weight: 500; }
  .price-desc { color: var(--text-dim); font-size: 14px; margin: 12px 0 28px; }
  .price-features { list-style: none; margin-bottom: 32px; }
  .price-features li {
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    display: flex; align-items: start; gap: 10px;
  }
  .price-features li::before {
    content: '✓';
    color: var(--gold-deep);
    font-weight: 700;
    flex-shrink: 0;
  }
  .price-card .btn { width: 100%; justify-content: center; }
  .founder-note {
    max-width: 720px; margin: 48px auto 0;
    text-align: center;
    padding: 24px 28px;
    background: rgba(74, 107, 82, 0.08);
    border: 1px solid rgba(74, 107, 82, 0.2);
    border-radius: 16px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    backdrop-filter: blur(8px);
  }
  .founder-note strong { color: var(--sage-deep); font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 600; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
  }
  .about-img {
    aspect-ratio: 1;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(46, 64, 50, 0.2);
    background: var(--sage-deep);
  }
  .about-text p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.75;
  }

  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .faq-item:hover { border-color: var(--border-strong); }
  .faq-q {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    color: var(--sage-deep);
    font-size: 16px; font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: inherit;
    gap: 16px;
  }
  .faq-q::after {
    content: '+';
    font-size: 24px; font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 600px; }
  .faq-a-inner { padding: 0 26px 22px; }

  .contact-wrap {
    max-width: 720px; margin: 0 auto;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(46, 64, 50, 0.05);
  }
  .contact-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }
  .contact-quick a {
    display: flex; align-items: center; gap: 14px;
    padding: 18px;
    background: rgba(74, 107, 82, 0.05);
    border: 1px solid rgba(74, 107, 82, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
  }
  .contact-quick a:hover {
    background: rgba(74, 107, 82, 0.1);
    border-color: var(--sage);
    transform: translateY(-2px);
  }
  .contact-quick-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--sage-deep);
    color: var(--shell);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-quick-label {
    font-size: 11px; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 1.2px;
    font-weight: 600;
  }
  .contact-quick-value {
    font-weight: 600; font-size: 15px;
    color: var(--sage-deep);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 12px; font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 1px;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--card);
    box-shadow: 0 0 0 3px rgba(74, 107, 82, 0.1);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 0;
  }
  .form-success.show { display: block; }
  .form-success h3 { font-size: 26px; margin-bottom: 8px; }

  footer {
    border-top: 1px solid var(--border);
    background: var(--sage-deep);
    color: var(--shell);
    padding: 56px 24px 32px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
    position: relative; z-index: 2;
  }
  footer .logo { color: var(--shell); }
  .footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
  .footer-links a { color: rgba(243,237,224,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .copyright {
    color: rgba(243,237,224,0.5);
    font-size: 13px;
    width: 100%;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(243,237,224,0.15);
    font-style: italic;
    position: relative; z-index: 2;
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    section { padding: 80px 20px; }
    .hero { min-height: auto; }
    .hero-stats { gap: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .price-card.featured { transform: none; }
    .contact-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-quick { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  h1, h2 { text-wrap: balance; }

  nav.scrolled { padding: 12px 0; box-shadow: 0 4px 24px rgba(46, 64, 50, 0.08); }

  .mobile-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(250, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
    flex-direction: column;
    box-shadow: 0 16px 32px rgba(46, 64, 50, 0.12);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 4px;
    text-decoration: none;
    color: var(--sage-deep);
    font-weight: 600; font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu a:last-child { border-bottom: none; }

  .marquee-strip {
    background: #efe8d8;
    border-block: 1px solid var(--border);
    padding: 13px 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
  }
  .marquee-track span {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    color: var(--sage);
    white-space: nowrap;
    display: flex; align-items: center;
  }
  .marquee-track span::after {
    content: '·';
    color: var(--gold);
    margin: 0 26px;
    font-style: normal;
    font-weight: 700;
  }
  @keyframes marquee { to { transform: translateX(-50%); } }

  .btn .arr { display: inline-block; transition: transform 0.25s ease; }
  .btn:hover .arr { transform: translateX(4px); }

  @keyframes sunPulse { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }
  .sun-core { animation: sunPulse 7s ease-in-out infinite; }
  @keyframes drift { from { transform: translateX(0); } to { transform: translateX(60px); } }
  .birds-drift { animation: drift 26s linear infinite alternate; }
  @keyframes sway { 0%, 100% { transform: skewX(-2deg); } 50% { transform: skewX(2deg); } }
  .grass-sway {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation: sway 7s ease-in-out infinite;
  }

  .portfolio-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    align-items: stretch;
  }
  .portfolio-featured-shot { overflow: hidden; min-height: 300px; }
  .portfolio-featured-shot img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    transition: transform 0.5s ease;
  }
  .portfolio-featured:hover .portfolio-featured-shot img { transform: scale(1.025); }
  .portfolio-featured .portfolio-info { padding: 36px 40px; }
  .portfolio-tag-live { background: rgba(74, 107, 82, 0.14); color: var(--sage); }
  @media (max-width: 768px) {
    .portfolio-featured { grid-template-columns: 1fr; }
    .portfolio-featured-shot { min-height: 200px; max-height: 250px; }
    .portfolio-featured .portfolio-info { padding: 26px 24px; }
  }

  .hero-content h1 { text-shadow: 0 2px 18px rgba(250, 246, 238, 0.75); }
  .hero-content .lead {
    color: var(--text);
    text-shadow: 0 1px 10px rgba(250, 246, 238, 0.9), 0 0 22px rgba(250, 246, 238, 0.75);
  }

  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(31, 46, 38, 0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center; justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal-card {
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 24px;
    padding: 36px 32px;
    max-width: 440px; width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(15, 26, 20, 0.3);
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  .modal-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; cursor: pointer;
    font-size: 20px; color: var(--text-dim);
    line-height: 1; padding: 6px;
  }
  .modal-close:hover { color: var(--sage-deep); }
  .modal-card h3 { font-size: 24px; margin-bottom: 6px; }
  .modal-card .modal-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 22px; line-height: 1.6; }
  @keyframes cardGlow {
    0%, 100% { box-shadow: 0 1px 3px rgba(46, 64, 50, 0.04); }
    35% { box-shadow: 0 0 0 3px rgba(200, 148, 86, 0.45), 0 12px 32px rgba(200, 148, 86, 0.18); }
  }
  .price-card.flash { animation: cardGlow 1.4s ease; }

  @media (prefers-reduced-motion: reduce) {
    .marquee-track, .sun-core, .birds-drift, .grass-sway { animation: none; }
    .modal-card, .price-card.flash { animation: none; }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
  }

/* ==========================================================================
   Multi-page additions — page headers, prose, tiles, tables, breadcrumbs.
   Uses the same tokens as everything above; no new colours introduced.
   ========================================================================== */

/* page header (sub-pages — lighter than the homepage hero) */
.page-head {
  position: relative;
  padding: 74px 0 54px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-head .container { position: relative; z-index: 2; }
.page-head h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
  max-width: 17ch;
  text-wrap: balance;
}
.page-head .lead { margin: 16px 0 0; max-width: 60ch; }
.page-head .head-ctas { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.page-head .marsh {
  position: absolute; right: -40px; bottom: -10px;
  width: 380px; max-width: 46%; opacity: 0.5; pointer-events: none; z-index: 1;
}
@media (max-width: 768px) { .page-head { padding: 52px 0 40px; } .page-head .marsh { display: none; } }

/* breadcrumbs */
.crumbs { font-size: 13px; color: var(--text-dim); margin-bottom: 4px; }
.crumbs a { color: var(--text-dim); text-decoration: none; border-bottom: 1px solid var(--border-strong); }
.crumbs a:hover { color: var(--sage-deep); }
.crumbs span { margin: 0 7px; opacity: 0.55; }

/* long-form prose */
.prose { max-width: 68ch; }
.prose h2 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.2; letter-spacing: -0.015em;
  margin: 44px 0 12px; text-wrap: balance;
}
.prose h3 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: 20px; line-height: 1.3; margin: 30px 0 8px;
}
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 1.2em; }
.prose li { margin-bottom: 8px; }
.prose > *:first-child { margin-top: 0; }
.prose a { color: var(--sage-deep); font-weight: 500; }

/* two-column split (prose + sidebar) */
.split { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .split { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 56px; } }
.sidebar { position: sticky; top: 96px; display: grid; gap: 18px; }
@media (max-width: 939px) { .sidebar { position: static; } }

/* simple info tiles */
.tile-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
.tile {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 26px; box-shadow: 0 1px 3px rgba(46, 64, 50, 0.04);
}
.tile h3 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600;
  font-size: 19px; margin: 0 0 8px; line-height: 1.25;
}
.tile p { margin: 0 0 10px; font-size: 16px; }
.tile p:last-child { margin-bottom: 0; }
.tile .tile-k {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 8px;
}

/* result figures */
.figs { display: grid; gap: 18px; grid-template-columns: 1fr; margin: 26px 0; }
@media (min-width: 640px) { .figs { grid-template-columns: repeat(3, 1fr); } }
.fig {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
}
.fig .fig-n {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: 30px; line-height: 1; color: var(--sage-deep); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.fig .fig-l { font-size: 13.5px; color: var(--text-dim); margin-top: 7px; line-height: 1.45; }

/* comparison table */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--border); border-radius: 14px;
  background: var(--card); margin: 0 0 24px;
}
.table-wrap table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 15.5px; }
.table-wrap th, .table-wrap td {
  text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--border); vertical-align: top;
}
.table-wrap thead th {
  font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 15px;
  background: var(--bg-2); white-space: nowrap;
}
.table-wrap tbody tr:last-child td { border-bottom: none; }
.table-wrap td strong { font-weight: 600; }

/* pull note */
.note-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-left: 3px solid var(--sage); border-radius: 10px;
  padding: 20px 24px; margin: 0 0 24px;
}
.note-box p:last-child { margin-bottom: 0; }
.note-box strong { color: var(--sage-deep); }

/* areas-served block in the footer */
.footer-areas {
  display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center;
  font-size: 13px; margin: 0 auto 16px; max-width: 700px;
}
.footer-areas a { color: rgba(243, 237, 224, 0.66); text-decoration: none; }
.footer-areas a:hover { color: var(--gold); }

/* thanks / 404 centred layout */
.center-page {
  min-height: 62vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 70px 0;
}
.center-page .inner { max-width: 56ch; }
.center-page h1 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: clamp(30px, 5vw, 46px); line-height: 1.1; margin: 0 0 14px;
}

/* small print under forms */
.form-note { font-size: 13px; color: var(--text-dim); margin-top: 12px; line-height: 1.55; }
.form-note a { color: var(--sage-deep); }

/* skip link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--sage-deep); color: #f3ede0; padding: 10px 16px;
  border-radius: 0 0 8px 0; font-weight: 600; font-size: 14px;
}
.skip:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* nav/footer logo is a link on multi-page */
a.logo { text-decoration: none; color: inherit; }
.nav-links a.is-active { color: var(--sage-deep); font-weight: 600; }
.nav-links a.is-active::after { width: 100%; }

/* four-service grid (Google Profile) — 2x2 reads better than 3+1 */
.pricing-grid.four { grid-template-columns: 1fr; }
@media (min-width: 860px) { .pricing-grid.four { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   ROI calculator (pricing page)
   ========================================================================== */
.roi {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 34px;
  box-shadow: 0 1px 3px rgba(46, 64, 50, 0.04), 0 18px 40px -28px rgba(46, 64, 50, 0.35);
}
@media (max-width: 640px) { .roi { padding: 24px 20px; border-radius: 16px; } }

.roi-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .roi-grid { grid-template-columns: 300px minmax(0, 1fr); gap: 44px; } }

.roi-ctrl { margin-bottom: 22px; }
.roi-ctrl:last-child { margin-bottom: 0; }
.roi-ctrl label {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px; flex-wrap: wrap;
  font-weight: 600; font-size: 14.5px; margin-bottom: 9px; line-height: 1.35;
}
.roi-ctrl label .roi-val { margin-left: auto; }
.roi-ctrl .roi-val {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 19px;
  color: var(--sage-deep); font-variant-numeric: tabular-nums;
}
.roi input[type=range] {
  width: 100%; height: 26px; margin: 0; cursor: pointer;
  accent-color: var(--sage); background: transparent;
}
.roi input[type=range]:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; }

/* package segmented control */
.roi-seg { display: flex; gap: 6px; margin-bottom: 22px; flex-wrap: wrap; }
.roi-seg button {
  flex: 1 1 auto; min-width: 84px; cursor: pointer;
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  padding: 9px 10px; border-radius: 10px;
  border: 1px solid var(--border-strong); background: transparent; color: var(--text-dim);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.roi-seg button:hover { border-color: var(--sage); color: var(--sage-deep); }
.roi-seg button[aria-pressed="true"] {
  background: var(--sage-deep); border-color: var(--sage-deep); color: #f3ede0;
}
.roi-seg button:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.roi-seg-label {
  font-weight: 600; font-size: 14.5px; margin-bottom: 9px; display: block;
}

.roi-chart-label {
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 12px;
}
.roi-chart {
  display: flex; align-items: flex-end; gap: 5px; height: 180px; margin-top: 4px;
  border-bottom: 1px solid var(--border-strong); position: relative;
}
.roi-chart .rbar {
  flex: 1; min-height: 3px; border-radius: 3px 3px 0 0;
  background: rgba(74, 107, 82, 0.22); border-top: 2px solid var(--sage);
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.roi-chart .rbar.paid {
  background: rgba(200, 148, 86, 0.28); border-top-color: var(--gold-deep);
}
.roi-costline {
  position: absolute; left: 0; right: 0; border-top: 2px dashed var(--gold-deep);
  pointer-events: none;
}
.roi-costline span {
  position: absolute; left: 0; top: -19px; font-size: 11px; font-weight: 600;
  color: var(--gold-deep); background: var(--card); padding: 0 6px 0 0;
  letter-spacing: 0.04em; white-space: nowrap;
}
.roi-x {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim);
}

.roi-out {
  display: grid; gap: 18px; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border); margin-top: 24px; padding-top: 22px;
}
@media (max-width: 520px) { .roi-out { grid-template-columns: 1fr; gap: 14px; } }
.roi-out .rk {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); display: block; margin-bottom: 5px;
}
.roi-out .rv {
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 28px); line-height: 1.1;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.roi-out .rv.good { color: var(--sage-deep); }
.roi-out .rv.gold { color: var(--gold-deep); }
.roi-note {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: 14.5px; color: var(--text-dim); line-height: 1.6;
}
.roi-note strong { color: var(--sage-deep); }

/* photographic page headers (town pages) */
.page-head.has-photo { border-bottom: none; }
.page-head .head-photo {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.page-head .head-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0.62;
}
.page-head .head-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(250,246,238,0.62) 0%,
    rgba(250,246,238,0.50) 40%,
    rgba(250,246,238,0.88) 100%);
}
@media (max-width: 640px) {
  .page-head .head-photo img { opacity: 0.42; }
}
