:root {
    --sage: #6b8f71;
    --sage-light: #a8c5ac;
    --sage-dark: #3d5c42;
    --warm: #F7F5EE;
    --warm-mid: #ffffff;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --accent: #c4886a;
    --bg-section: #f8f5f0;
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
  }

  /* NAV */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--warm-mid);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text-light);
    text-transform: uppercase;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-logo .cross {
    width: 22px;
    height: 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo .cross::before,
  .nav-logo .cross::after {
    content: '';
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
  }

  .nav-logo .cross::before { width: 4px; height: 22px; }
  .nav-logo .cross::after { width: 22px; height: 4px; }

  nav a {
    color: var(--sage-dark);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    background: var(--sage-dark);
    color: white;
    border-radius: 50px;
    transition: background 0.2s;
  }

  nav a:hover { background: var(--sage); }

  /* HERO */
  .hero {
    background: var(--warm);
    padding: 80px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,143,113,0.12), transparent 70%);
  }

  .hero-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    border: 1px solid var(--sage-light);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    max-width: 680px;
    margin: 0 auto 24px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
  }

  .hero-img-wrapper {
    width: 100%;
    max-width: 560px;
    margin: 32px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    background: var(--warm-mid);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c4d4c6 0%, #9db8a0 50%, #7a9e80 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-img-placeholder::before {
    content: '✦';
    font-size: 80px;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-img-placeholder .silhouettes {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
  }

  .silhouette {
    background: rgba(255,255,255,0.25);
    border-radius: 80px 80px 40px 40px;
    backdrop-filter: blur(4px);
  }

  .hero-desc {
    font-size: 15px;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 12px;
  }

  .hero-desc strong { color: var(--text); }

  .hero-note {
    font-size: 12px;
    color: var(--sage);
    font-style: italic;
    margin-bottom: 32px;
  }

  .btn-primary {
    display: inline-block;
    background: var(--sage-dark);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
  }

  .btn-primary:hover {
    background: var(--sage);
    transform: translateY(-1px);
  }

  .btn-sub {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
  }

  /* ABOUT */
  .about {
    padding: 80px 40px;
    text-align: center;
    background: var(--white);
  }

  .section-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .about h2 {
    font-family: 'Lora', serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.3;
  }

  .about-text {
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }

  .about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
  }

  .gallery-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
  }

  .gallery-img:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .gallery-block {
    width: 100%;
    height: 100%;
    min-height: 160px;
  }

  .g1 { background: linear-gradient(160deg, #8fa894, #5a7a5f); }
  .g2 { background: linear-gradient(160deg, #c4a882, #a07850); }
  .g3 { background: linear-gradient(160deg, #94a8af, #607880); }
  .g4 { background: linear-gradient(160deg, #b4c4b0, #8a9e85); }

  /* TASKS */
  .tasks {
    background: var(--bg-section);
    padding: 80px 40px;
    text-align: center;
  }

  .tasks h2 {
    font-family: 'Lora', serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 600;
    margin-bottom: 12px;
  }

  .tasks-sub {
    color: var(--text-light);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto 48px;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  .card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    border: 1px solid var(--warm-mid);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  }

  .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .icon-green { background: #e8f0e9; }
  .icon-warm { background: #f5ebe0; }
  .icon-blue { background: #e0eaf0; }

  .card h3 {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* PROFILE IMG */
  .profile-section {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--white);
  }

  .profile-img {
    width: 220px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #8fa894, #5a7a5f);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  }

  .profile-silhouette {
    width: 120px;
    height: 200px;
    background: rgba(255,255,255,0.2);
    border-radius: 60px 60px 0 0;
    margin-bottom: -2px;
  }

  /* QUALIFICATIONS */
  .qualifications {
    background: var(--white);
    padding: 80px 40px;
    text-align: center;
  }

  .qualifications h2 {
    font-family: 'Lora', serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .qual-sub {
    color: var(--text-light);
    font-style: italic;
    font-size: 14px;
    margin-bottom: 48px;
  }

  .qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
  }

  .qual-item {
    background: var(--warm);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: left;

    align-items: flex-start;

    border: 1px solid var(--warm-mid);
  }

  .qual-dot {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .qual-item p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
  }

  /* BENEFITS */
  .benefits {
    padding: 80px 40px;
    background: var(--warm);
    text-align: center;
  }

  .benefits h2 {
    font-family: 'Lora', serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits h2 em {
    font-style: italic;
    color: var(--sage-dark);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
  }

  .benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    border: 1px solid var(--warm-mid);
  }

  .benefit-icon {
    font-size: 24px;
    margin-bottom: 14px;
    display: block;
  }

  .benefit-card h3 {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .benefit-card ul {
    list-style: none;
    padding: 0;
  }

  .benefit-card ul li {
    font-size: 13px;
    color: var(--text-light);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .benefit-card ul li::before {
    content: '·';
    color: var(--sage);
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
  }

  .benefit-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* CONTACT */
  .contact {
    background: var(--white);
    padding: 80px 40px;
    text-align: center;
  }

  .contact-inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .contact-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b8f71, #3d5c42);
    margin: 0 auto 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .contact-photo-sil {
    width: 70px;
    height: 100px;
    background: rgba(255,255,255,0.25);
    border-radius: 35px 35px 0 0;
  }

  .contact-name {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .contact-role {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 32px;
  }

  /* CTA */
  .cta {
    background: var(--white);
    padding: 80px 40px;
    text-align: center;
  }

  .cta h2 {
    font-family: 'Lora', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .cta h2 em {
    font-style: italic;
    color: var(--sage-dark);
  }

  .cta-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
  }

  /* ===== EMBEDDED FUNNEL ===== */
  .funnel-section {
    background: var(--warm);
    padding: 80px 40px;
    text-align: center;
  }

  .funnel-section > .section-label { margin-bottom: 10px; }

  .funnel-section > h2 {
    font-family: 'Lora', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .funnel-section > h2 em { font-style: italic; color: var(--sage-dark); }

  .funnel-section > .funnel-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 36px;
  }

  /* SIMPLE FORM CARD */
  .form-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding: 40px 44px;
  }

  .bf-field {
    margin-bottom: 20px;
  }

  .bf-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 8px;
  }

  .bf-input {
    width: 100%;
    border: 1.5px solid #d8e8da;
    border-radius: 10px;
    padding: 13px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--bg-section);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }

  .bf-input::placeholder { color: #bbb; }

  .bf-input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(107,143,113,0.15);
    background: var(--white);
  }

  /* hide number spinners */
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
  input[type="number"] { -moz-appearance: textfield; }

  .bf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .bf-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    user-select: none;
  }

  .bf-radio-label input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
  }

  .bf-radio-label input[type="radio"]:checked { border-color: var(--sage-dark); }

  .bf-radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--sage-dark);
  }

  .bf-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.5;
    user-select: none;
  }

  .bf-checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid #ccc;
    border-radius: 3px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    margin-top: 1px;
    transition: border-color 0.2s, background 0.2s;
  }

  .bf-checkbox-label input[type="checkbox"]:checked {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
  }

  .bf-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px; left: 5px;
    width: 5px; height: 9px;
    border: 2px solid white;
    border-top: none; border-left: none;
    transform: rotate(45deg);
  }

  .bf-checkbox-label a { color: var(--sage-dark); text-decoration: underline; }

  .bf-btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--sage-dark);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
  }

  .bf-btn-submit:hover { background: var(--sage); transform: translateY(-1px); }
  .bf-btn-submit:active { transform: translateY(0); }

  /* SUCCESS */
  .bf-success { display: none; padding: 44px 0; text-align: center; }
  .bf-success.active { display: block; }

  .bf-success-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: #eaf3ec;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin: 0 auto 18px;
  }

  .bf-success-title {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 10px;
  }

  .bf-success-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto 24px;
  }

  .bf-contact-box {
    background: #eaf3ec;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--sage-dark);
    line-height: 1.7;
  }

  .bf-info-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 340px;
	padding-top: 30px;
    margin: 0 auto 24px;
  } 

  .bf-contact-box a { color: var(--sage-dark); font-weight: 600; }

  .funnel-privacy {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 16px;
    text-align: center;
  }

  @media (max-width: 480px) {
    .form-card { padding: 28px 22px; }
    .funnel-section { padding: 60px 20px; }
  }

  /* MAP PLACEHOLDER */
  .map-area {
    background: var(--bg-section);
    padding: 40px;
    text-align: center;
  }

  .map-placeholder {
    width: 100%;
    max-width: 560px;
    height: 180px;
    background: linear-gradient(135deg, #d4e0d6, #b8cebb);
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--sage-light);
  }

  .map-pin { font-size: 28px; }

  .map-text {
    font-size: 13px;
    color: var(--sage-dark);
    font-weight: 500;
  }

  .map-sub {
    font-size: 12px;
    color: var(--text-light);
  }

  /* FOOTER */
  footer {
    background: var(--sage-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 28px 40px;
    font-size: 12px;
  }

  footer strong { color: white; }

  footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 10px;
  }

  footer a:hover { color: white; }

  /* URGENCY BOX */
  .urgency-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8f0;
    border: 1px solid #e8c49a;
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 16px 20px;
    max-width: 540px;
    margin: 0 auto 28px;
    text-align: left;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
  }

  .urgency-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

  /* QUICK WINS */
  .quick-wins {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 640px;
    margin: 0 auto 40px;
  }

  .qw-item {
    background: var(--sage-dark);
    color: white;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
  }

  .qw-icon { font-size: 20px; flex-shrink: 0; }

  @media (max-width: 480px) {
    .quick-wins { grid-template-columns: 1fr; }
  }

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

  .hero h1, .hero-desc, .hero-note, .btn-primary {
    animation: fadeUp 0.6s ease both;
  }

  .hero h1 { animation-delay: 0.1s; }
  .hero-desc { animation-delay: 0.2s; }
  .hero-note { animation-delay: 0.3s; }
  .btn-primary { animation-delay: 0.4s; }

  @media (max-width: 600px) {
    nav { padding: 12px 20px; }
    .hero, .about, .tasks, .benefits, .contact, .cta { padding: 60px 24px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .about-gallery { grid-template-columns: 1fr 1fr; }
    .about-gallery .gallery-img:first-child { grid-row: auto; }
  }