
:root {
  --green: #1F3D2B;
  --green-deep: #132618;
  --darkest: #0F1A17;
  --dark: #2B2B2B;
  --copper: #C46A4A;
  --copper-dark: #A8573A;
  --beige: #D9D4C7;
  --cream: #F5F3EF;
  --cream-deep: #EDE7DA;
  --muted: #6A6A60;
  --nav-height: 58px;
  --content-max: 1240px;
  --heading-fluid: clamp(2rem, 1.35rem + 3.25vw, 4.625rem);
  --section-heading-fluid: clamp(1.55rem, 1.2rem + 1.75vw, 2.375rem);
  --page-x: 24px;
  --section-y: 24px;
  --section-y-compact: 20px;
}

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

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

html { -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }
body.nav-open, body.modal-open { overflow: hidden; }
body::before { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .35; background-image: url('assets/images/noise-texture.svg'); background-repeat: repeat; background-size: 200px 200px; }
section, nav, footer { position: relative; z-index: 1; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { border-radius: 0; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--green); }

h1, h2, h3, .hero-title, .section-h2, .services-intro-title, .contact-title, .plan-name, .step-title, .team-name, .testimonial-mark, .testimonial-name { font-family: 'Satoshi', sans-serif; font-weight: 600; }
.hero-title, .contact-title { font-size: var(--heading-fluid); line-height: 1.08; letter-spacing: -.02em; }
.hero-title-line { display: block; }
.section-h2, .services-intro-title { color: var(--darkest); font-size: var(--section-heading-fluid); line-height: 1.15; letter-spacing: -.01em; }
.section-h2 { margin-bottom: 10px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--copper); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; }
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--copper); }
.eyebrow-no-line::before { display: none; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; min-height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 20px; background: rgba(15, 26, 23, .92); border-bottom: 1px solid rgba(255, 255, 255, .04); backdrop-filter: blur(12px); }
nav.scrolled { background: rgba(15, 26, 23, .96); border-bottom-color: rgba(255, 255, 255, .05); }
.nav-logo { position: relative; z-index: 202; display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; cursor: pointer; }
.nav-logo img { width: auto; height: 42px; mix-blend-mode: lighten; }
.nav-logo-main { color: var(--cream); font-size: 14px; line-height: 1; letter-spacing: .24em; }
.nav-logo-sub { margin-top: 3px; color: var(--copper); font-size: 6px; letter-spacing: .18em; text-transform: uppercase; }
.nav-menu-toggle { position: relative; z-index: 202; width: 44px; height: 44px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid rgba(245,243,239,.22); background: rgba(245,243,239,.06); color: var(--cream); cursor: pointer; }
.nav-menu-toggle span { width: 18px; height: 1px; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-links[hidden] { display: none; }
.nav-links { position: fixed; top: var(--nav-height); left: 0; right: 0; z-index: 201; display: grid; gap: 18px; padding: 28px 20px 32px; background: rgba(15, 26, 23, .98); border-bottom: 1px solid rgba(255,255,255,.08); box-shadow: 0 24px 54px rgba(0,0,0,.24); transform: translateY(-120%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .25s ease, opacity .25s ease, visibility .25s ease; }
.nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.nav-link { display: block; padding: 10px 0; color: rgba(245, 243, 239, .82); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: color .2s; }
.lang-toggle { display: flex; gap: 2px; padding-top: 6px; }
.lang-btn { padding: 8px 12px; border: 1px solid rgba(255, 255, 255, .12); background: transparent; color: rgba(245, 243, 239, .5); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.lang-btn.active { background: var(--copper); border-color: var(--copper); color: var(--cream); }

.btn { display: inline-block; width: 100%; padding: 14px 24px; border: 1px solid transparent; font-size: 11px; letter-spacing: .2em; text-align: center; text-transform: uppercase; cursor: pointer; transition: background .25s, border-color .25s, color .25s, transform .2s, box-shadow .2s; }
.btn-solid, .btn-hero-primary { background: var(--green); border-color: var(--green); color: var(--cream); box-shadow: 0 12px 34px rgba(31, 61, 43, .26); }
.btn-hero-secondary { background: rgba(31, 61, 43, .08); border-color: rgba(31, 61, 43, .28); color: var(--green); }
.btn-full { width: 100%; margin-top: 8px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.anim-1 { animation: fadeUp .7s ease .1s both; } .anim-2 { animation: fadeUp .7s ease .25s both; } .anim-4 { animation: fadeUp .7s ease .5s both; } .anim-5 { animation: fadeUp .7s ease .62s both; } .anim-6 { animation: fadeIn .9s ease .45s both; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

#hero { min-height: auto; margin-top: var(--nav-height); overflow: hidden; background: linear-gradient(155deg, #e8e2d5 0%, #f0ebe0 60%, #ede7da 100%); }
.hero-inner { width: 100%; max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; align-items: stretch; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 72px 24px 44px; }
.hero-title { margin-bottom: 28px; }
.hero-title-main { color: var(--darkest); margin-bottom: 6px; }
.hero-title-accent { color: var(--copper); font-style: italic; }
.hero-sub { max-width: 640px; margin-bottom: 32px; color: rgba(30, 30, 25, .68); font-size: 16px; font-weight: 300; line-height: 1.8; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; }
.hero-image { position: relative; min-height: 42vh; overflow: hidden; }
.hero-image picture, .hero-image img { display: block; width: 100%; height: 100%; min-height: 42vh; }
.hero-image img { object-fit: cover; object-position: center; filter: brightness(.92) saturate(.88); }
.hero-image::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(15, 26, 23, .18), transparent 48%); }

#services, #why, #how, #contact, #team, #testimonials { scroll-margin-top: 80px; background: var(--cream); }
#services, #why, #how, #contact { padding: var(--section-y) var(--page-x); }
#team, #testimonials { padding: var(--section-y-compact) var(--page-x); }
.services-inner, .why-inner, .how-inner, .team-inner, .testimonials-inner { max-width: var(--content-max); margin: 0 auto; }
.services-intro { margin-bottom: 40px; }
.services-intro-title { max-width: 850px; margin-bottom: 12px; }
.services-intro-sub { max-width: 760px; color: var(--muted); font-size: 17px; font-weight: 300; line-height: 1.7; }
.plans-grid, .why-grid, .how-steps, .team-grid, .testimonials-grid, .contact-inner, .contact-form-row, .modal-row { display: grid; grid-template-columns: 1fr; }
.plans-grid { gap: 8px; }
.plan-card { position: relative; display: flex; flex-direction: column; padding: 40px 28px; border: 0; cursor: default; transition: transform .4s, box-shadow .4s; }
.plan-card.p1 { background: #2e5240; } .plan-card.p2 { background: #234232; } .plan-card.p3 { background: #162a20; }
.plan-eyebrow { margin-bottom: 6px; color: var(--copper); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.plan-name { margin-bottom: 6px; color: var(--cream); font-size: 28px; }
.plan-tagline { min-height: 36px; margin-bottom: 28px; color: rgba(245, 243, 239, .52); font-size: 13px; font-style: italic; font-weight: 300; }
.plan-progress { margin-bottom: 24px; } .plan-progress-track { height: 2px; overflow: hidden; border-radius: 2px; background: rgba(255, 255, 255, .12); } .plan-progress-fill { height: 100%; border-radius: 2px; background: var(--copper); }
.plan-features { flex: 1; margin-bottom: 32px; list-style: none; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .06); color: rgba(245, 243, 239, .84); font-size: 15px; }
.plan-feature.header { color: rgba(245, 243, 239, .42); font-size: 11px; font-style: italic; } .plan-feature-check { flex-shrink: 0; margin-top: 2px; color: var(--copper); font-size: 10px; } .plan-feature.star .plan-feature-check { color: #f0c060; } .plan-feature.star span { color: rgba(245, 243, 239, .95); }
.badge-exclusive { display: inline-block; margin-left: 8px; padding: 2px 7px; border: 1px solid rgba(240, 192, 96, .4); color: #f0c060; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; vertical-align: middle; }
.plan-price-block { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .08); } .plan-price { display: flex; align-items: baseline; gap: 6px; } .plan-price-num { color: var(--cream); font-size: 40px; font-weight: 600; line-height: 1; } .plan-price-note { color: rgba(245, 243, 239, .55); font-size: 13px; font-weight: 300; } .plan-price-sub { margin-top: 8px; color: rgba(245, 243, 239, .55); font-size: 10px; letter-spacing: .08em; line-height: 1.6; text-transform: uppercase; }
.plan-cta { width: 100%; margin-top: 22px; padding: 14px 0; border: 1px solid var(--cream); background: var(--cream); color: var(--darkest); font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: background .25s, border-color .25s, color .25s, transform .2s, box-shadow .2s; }
.plan-notes { max-width: 920px; margin-top: 28px; color: var(--muted); font-size: 12px; font-weight: 300; line-height: 1.7; } .plan-volume-note { margin-bottom: 10px; color: var(--darkest); font-weight: 500; } .plan-footnotes p + p { margin-top: 4px; }

.why-spacer { margin-bottom: 32px; } .why-grid { gap: 8px; }
.why-card { position: relative; overflow: hidden; padding: 28px 26px 24px; background: var(--cream); border: 1px solid rgba(43, 43, 43, .09); cursor: default; transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease, background .4s ease; }
.why-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; } .why-icon-wrap { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(196, 106, 74, .08); color: var(--copper); transition: background .4s, transform .4s; } .why-icon-wrap svg { width: 18px; height: 18px; } .why-title { color: var(--darkest); font-size: 17px; font-weight: 500; line-height: 1.2; } .why-desc { margin-top: 10px; color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.8; }

.how-steps { gap: 0; margin-top: 40px; position: relative; }
.step { padding: 0 0 32px; position: relative; } .step-num-box { position: relative; z-index: 1; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; background: var(--green); } .step-num-label { color: var(--cream); font-size: 11px; letter-spacing: .1em; } .step-title { margin-bottom: 10px; color: var(--darkest); font-size: 18px; font-weight: 500; } .step-desc { color: var(--muted); font-size: 15px; font-weight: 300; line-height: 1.75; }

.contact-inner { max-width: 1100px; margin: 0 auto; gap: 40px; align-items: start; }
.contact-left { display: flex; flex-direction: column; justify-content: center; padding-top: 8px; } .contact-logo { margin-bottom: 32px; opacity: .96; } .contact-logo img { width: auto; height: 100px; } .contact-title { margin-bottom: 12px; color: var(--darkest); } .contact-sub { margin-bottom: 24px; color: var(--muted); font-size: 17px; font-weight: 300; line-height: 1.7; } .contact-direct { display: flex; flex-direction: column; gap: 14px; } .contact-direct a { display: flex; align-items: center; gap: 8px; color: var(--green); font-size: 16px; font-weight: 300; text-decoration: none; transition: color .25s; } .contact-direct svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }
.contact-form-card, .modal-box { background: var(--green); color: var(--cream); box-shadow: 0 24px 56px rgba(15, 26, 23, .18); } .contact-form-card { padding: 36px 24px; border: 1px solid rgba(15, 26, 23, .08); } .contact-form-row, .modal-row { gap: 0; margin-bottom: 0; text-align: left; } .contact-form-field, .modal-field { margin-bottom: 24px; text-align: left; } .contact-form-field label, .modal-field label { display: block; margin-bottom: 10px; color: rgba(245, 243, 239, .6); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; } .contact-form-field input, .contact-form-field textarea, .modal-field input, .modal-field textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(245, 243, 239, .22); background: rgba(245, 243, 239, .08); color: var(--cream); font-size: 16px; outline: none; resize: none; transition: background .2s, border-color .2s, box-shadow .2s; } .contact-form-field input:focus, .contact-form-field textarea:focus, .modal-field input:focus, .modal-field textarea:focus { background: rgba(245, 243, 239, .12); border-color: var(--copper); box-shadow: 0 0 0 3px rgba(196, 106, 74, .16); } .contact-form-field input::placeholder, .contact-form-field textarea::placeholder, .modal-field input::placeholder, .modal-field textarea::placeholder { color: rgba(245, 243, 239, .35); } .contact-form-card .btn-solid, .modal-box .btn-solid { background: var(--copper); border-color: var(--copper); color: var(--cream); box-shadow: none; }
.form-honeypot { display: none !important; } .form-status { min-height: 1.5em; margin-top: 14px; color: rgba(245, 243, 239, .74); font-size: 13px; font-weight: 300; line-height: 1.5; } .form-status.is-success { color: rgba(245, 243, 239, .92); } .form-status.is-error { color: #ffd6c7; } .form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; } .form-consent input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; width: 15px; height: 15px; accent-color: var(--copper); cursor: pointer; } .form-consent label { color: rgba(245, 243, 239, .6); font-size: 12px; line-height: 1.6; cursor: pointer; } .form-consent label a { color: var(--copper); text-decoration: underline; text-underline-offset: 2px; } .btn[disabled], .plan-cta[disabled] { opacity: .62; cursor: wait; transform: none; box-shadow: none; }
.modal-overlay { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(10, 20, 15, .78); backdrop-filter: blur(6px); } .modal-overlay.open { display: flex; } .modal-box { position: relative; width: 100%; max-width: 520px; padding: 42px 28px 34px; animation: modalIn .35s cubic-bezier(.16, 1, .3, 1) both; } .modal-close { position: absolute; top: 18px; right: 20px; border: 0; background: none; color: var(--cream); font-size: 22px; line-height: 1; opacity: .65; cursor: pointer; transition: opacity .2s; } .modal-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--copper); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; } .modal-eyebrow::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--copper); } .modal-title { margin-bottom: 28px; color: var(--cream); font-size: 24px; letter-spacing: -.01em; }

.team-grid, .testimonials-grid { gap: 8px; margin-top: 40px; } .team-card, .testimonial-card { background: var(--cream); border: 1px solid rgba(43,43,43,.09); transition: transform .4s, box-shadow .4s, border-color .4s; } .team-card { padding: 40px 28px; } .team-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: center top; margin-bottom: 24px; filter: grayscale(15%); } .team-name { font-size: 19px; color: var(--darkest); margin-bottom: 4px; } .team-bio { font-size: 14px; font-weight: 300; color: #6a6a60; line-height: 1.8; border-top: 1px solid rgba(43,43,43,.08); padding-top: 18px; } .team-email { display: inline-block; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .05em; color: var(--copper); text-decoration: none; margin-bottom: 20px; transition: opacity .2s; }
.testimonial-card { padding: 32px 28px; display: flex; flex-direction: column; } .testimonial-mark { font-size: 32px; color: var(--copper); opacity: .2; line-height: 1; margin-bottom: 14px; display: block; } .testimonial-text { flex: 1; font-size: 14px; font-weight: 300; color: var(--darkest); line-height: 1.8; font-style: italic; margin-bottom: 22px; } .testimonial-author { margin-top: auto; border-top: 1px solid rgba(43,43,43,.08); padding-top: 14px; } .testimonial-name { font-size: 13px; color: var(--darkest); margin-bottom: 3px; } .testimonial-detail { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #9a9a8a; line-height: 1.6; }

footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 20px; border-top: 1px solid rgba(255, 255, 255, .04); background: var(--darkest); } .footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; } .footer-brand img { width: auto; height: 44px; } .footer-brand-sub { margin-top: 2px; color: var(--copper); font-size: 7px; letter-spacing: .2em; text-transform: uppercase; } .footer-copy { color: rgba(245, 243, 239, .34); font-size: 10px; letter-spacing: .1em; line-height: 1.6; }

@media (min-width: 520px) { .btn, .hero-ctas .btn { width: auto; } .hero-ctas { flex-direction: row; flex-wrap: wrap; } }
@media (min-width: 768px) { .nav-links[hidden] { display: flex; } :root { --page-x: 48px; --section-y: 32px; --section-y-compact: 28px; } nav { padding: 0 48px; } .nav-logo { gap: 12px; } .nav-logo img { height: 46px; } .nav-logo-main { font-size: 18px; letter-spacing: .3em; } .nav-logo-sub { font-size: 7.5px; letter-spacing: .22em; } .nav-menu-toggle { display: none; } .nav-links { position: static; display: flex; align-items: center; gap: 36px; padding: 0; background: transparent; border: 0; box-shadow: none; transform: none; opacity: 1; visibility: visible; pointer-events: auto; transition: none; } .nav-link { display: inline-block; padding: 0; font-size: 11px; color: rgba(245, 243, 239, .7); } .lang-toggle { padding-top: 0; margin-left: 8px; } .lang-btn { padding: 5px 11px; } .hero-inner { min-height: calc(100vh - var(--nav-height)); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .hero-text { padding: 80px 64px 80px 48px; } .hero-sub { margin-bottom: 52px; } .hero-image, .hero-image picture, .hero-image img { min-height: calc(100vh - var(--nav-height)); } .hero-image::after { background: linear-gradient(to right, rgba(15, 26, 23, .18) 0%, transparent 40%); } .why-grid, .team-grid, .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .how-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; } .contact-form-row, .modal-row { grid-template-columns: 1fr 1fr; gap: 20px; } .contact-logo img { height: 128px; } .contact-form-card { padding: 40px 36px; } .modal-box { padding: 48px 44px 40px; } footer { padding: 34px 48px; } }
@media (min-width: 900px) { .plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; } .contact-inner { grid-template-columns: 1fr 1fr; gap: 80px; } }
@media (min-width: 1024px) { :root { --section-y: 40px; --section-y-compact: 32px; } .why-grid, .team-grid, .testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .how-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; } .how-steps::before { content: ''; position: absolute; top: 27px; left: 27px; right: 27px; height: 1px; background: rgba(31,61,43,.15); z-index: 0; } .step { padding: 0 28px 0 0; } }

@media (hover: hover) and (pointer: fine) { .btn:hover { transform: translateY(-2px); } .btn-solid:hover, .btn-hero-primary:hover { background: var(--copper); border-color: var(--copper); box-shadow: 0 12px 36px rgba(196, 106, 74, .35); } .btn-hero-secondary:hover { background: rgba(31, 61, 43, .13); border-color: var(--green); color: var(--darkest); } .nav-link:hover { color: var(--copper); } .plan-card:hover { z-index: 2; transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0, 0, 0, .18); } .plan-cta:hover { transform: translateY(-2px); background: var(--copper); border-color: var(--copper); color: var(--cream); box-shadow: 0 10px 28px rgba(196, 106, 74, .28); } .why-card:hover { transform: translateY(-5px); background: #ede8de; border-color: rgba(196, 106, 74, .3); box-shadow: 0 14px 36px rgba(0, 0, 0, .08); } .why-card:hover .why-icon-wrap { transform: translateX(2px); background: rgba(196, 106, 74, .16); } .contact-direct a:hover { color: var(--copper); } .contact-form-card .btn-solid:hover, .modal-box .btn-solid:hover { background: var(--copper-dark); border-color: var(--copper-dark); } .modal-close:hover { opacity: 1; } .team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: rgba(196,106,74,.3); } .team-email:hover { opacity: .7; } .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); border-color: rgba(196,106,74,.2); } }

