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

  :root {
    --white: #ffffff;
    --off-white: #f9f8f6;
    --grey-50: #f5f4f2;
    --grey-100: #eeede9;
    --grey-200: #dddcd8;
    --grey-400: #a09e99;
    --grey-600: #6b6965;
    --grey-700: #3d3c3a;
    --grey-800: #2d2c2a;
    --grey-900: #1a1917;
    --accent: #2d6a4f;
    --accent-light: #d8f3dc;
    --accent-mid: #52b788;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --radius: 16px;
    --radius-sm: 10px;
  }

  html { scroll-behavior: smooth; color-scheme: light only; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white) !important;
    color: var(--grey-800);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
  }

  main { flex: 1; }

  /* ── HEADER ── */
  header {
    background: rgba(255,255,255,0.65);
    border-bottom: 1px solid var(--accent);
    box-shadow: 0 1px 0 var(--grey-100), 0 4px 24px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.04);
    padding: 0 max(24px, 5vw);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
    backdrop-filter: blur(12px);
    gap: 16px;
  }

  .hd-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--grey-900);
    letter-spacing: 0.08em;
    line-height: 1;
    flex-shrink: 0;
  }
  .hd-logo span { color: var(--accent); }

  .hd-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .hd-page-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--grey-600);
    letter-spacing: 0.02em;
    padding: 5px 13px;
    border-radius: 20px;
    background: var(--grey-50);
    border: 1px solid var(--grey-100);
    white-space: nowrap;
  }
  .hd-page-dot {
    width: 6px; height: 6px;
    background: var(--accent-mid);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pillPulse 3s ease-out infinite;
  }
  @keyframes pillPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(82,183,136,0.5); opacity: 1; }
    60% { transform: scale(1); box-shadow: 0 0 0 5px rgba(82,183,136,0); opacity: 1; }
  }

  .hd-nav-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: transparent;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--grey-700);
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
  }
  .hd-nav-btn:hover {
    border-color: var(--accent-mid);
    color: var(--accent);
    background: rgba(82,183,136,0.04);
  }
  .hd-nav-btn svg {
    flex-shrink: 0;
    color: var(--grey-400);
    transition: transform 0.25s ease, color 0.18s ease;
  }
  .hd-nav-btn:hover svg {
    transform: rotate(180deg);
    color: var(--accent-mid);
  }

  /* ── HERO ── */
  .hero {
    padding: 72px max(24px, 5vw) 48px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    animation: fadeUp 0.6s ease both;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    background: var(--accent-mid);
    border-radius: 2px;
  }
  h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.0rem);
    line-height: 1.1;
    color: var(--grey-900);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  h1 em { font-style: italic; color: var(--accent); }
  .hero-sub {
    font-size: 1rem;
    color: var(--grey-600);
    line-height: 1.6;
    max-width: 460px;
    font-weight: 400;
  }

  /* ── CONTENT ── */
  .content-wrapper {
    padding: 0 max(24px, 5vw) 80px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeUp 0.6s 0.15s ease both;
  }

  .panel {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--grey-100);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .panel:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

  .panel-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--grey-100);
  }
  .panel-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 2px;
  }
  .panel-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grey-800);
  }
  .panel-body { padding: 24px; }

  /* Form elements */
  .field-group { margin-bottom: 18px; }
  .field-group:last-child { margin-bottom: 0; }

  label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-600);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }

  input[type="text"],
  input[type="number"],
  input[type="email"] {
    width: 100%;
    padding: 13px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey-900);
    background: var(--grey-50);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.2s ease;
  }
  input[type="text"]:hover,
  input[type="number"]:hover,
  input[type="email"]:hover {
    border-color: var(--grey-200);
    background: var(--white);
  }
  input[type="text"]:focus,
  input[type="number"]:focus,
  input[type="email"]:focus {
    border-color: var(--accent-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.12);
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 1.5px solid var(--accent);
  }
  .btn-primary:hover {
    background: var(--accent-mid);
    border-color: var(--accent-mid);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.15);
  }
  .btn-secondary {
    background: var(--grey-50);
    color: var(--grey-600);
    border: 1.5px solid var(--grey-100);
  }
  .btn-secondary:hover {
    background: var(--white);
    border-color: var(--accent-mid);
    color: var(--accent);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.1);
  }

  .panel-footer {
    padding: 16px 24px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid var(--grey-100);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── FOOTER ── */
  footer { margin: 0; padding: 0; }

  .ft-wrap {
    background: #edecea;
    border-top: 1px solid #d8d6d1;
    position: relative;
    overflow: hidden;
  }

  .ft-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #74c69d 0%, #2d6a4f 50%, #1b4332 100%);
    opacity: 0.85;
  }

  .ft-wrap::after {
    content: '';
    position: absolute;
    top: -60px; left: -40px;
    width: 320px; height: 260px;
    background: radial-gradient(ellipse at 20% 20%, rgba(82,183,136,0.07), transparent 70%);
    pointer-events: none;
  }

  .ft-main {
    padding: 48px max(32px, 6vw) 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .ft-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ft-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ft-eyebrow::before {
    content: '';
    width: 16px; height: 1.5px;
    background: var(--accent-mid);
    border-radius: 2px;
    display: inline-block;
  }

  .ft-wordmark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--grey-900);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
  }
  .ft-wordmark span { color: var(--accent); }

  .ft-blurb {
    font-size: 0.83rem;
    line-height: 1.75;
    color: var(--grey-600);
    max-width: 300px;
    font-weight: 400;
    margin-bottom: 24px;
  }

  .ft-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
  }

  .ft-tools-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-800);
    text-decoration: none;
    padding: 10px 20px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .ft-tools-link:hover {
    border-color: var(--accent-mid);
    color: var(--accent);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.1);
  }
  .ft-tools-link svg { color: var(--accent-mid); flex-shrink: 0; }

  .ft-watermark {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 520px;
    height: 520px;
    opacity: 0.055;
    pointer-events: none;
    color: var(--accent);
    flex-shrink: 0;
  }

  .ft-bar {
    background: #2a2d2c;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px max(32px, 6vw) 20px;
  }

  .ft-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
  }

  .ft-copy {
    font-size: 0.8rem;
    color: #a8a8a8;
    font-weight: 400;
  }

  .ft-bar-links {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .ft-bar-links a {
    font-size: 0.8rem;
    color: #a8a8a8;
    text-decoration: none;
    transition: color 0.18s ease;
  }
  .ft-bar-links a:hover { color: #d4d4d4; }
  .ft-bar-sep { color: #4a5550; }

  /* ── RESPONSIVE ── */
  @media (max-width: 620px) {
    .ft-main { grid-template-columns: 1fr; gap: 5px; }
    .ft-right { align-items: flex-start; }
    .ft-bar-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  }

  @media (max-width: 540px) {
    .hero { padding-top: 48px; }
    .hd-page-label { display: none; }
  }

  @media (prefers-color-scheme: dark) {
    html, body { background: var(--off-white) !important; color: var(--grey-800) !important; }
  }