*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --dark:    #2b0d0f;
    --mid:     #5a171b;
    --accent:  #db1b21;
    --pale:    #faf3f3;
    --sage:    #f3e7e8;
    --muted:   #7a5d60;
    --white:   #ffffff;
    --border:  #e4c9cb;
    --text:    #2b0d0f;
    --red-light:  #DB5B60;  /* from #7ec492 */
    --red-soft:   #E6A7AA;  /* from #E6A7AA */
    --red-muted:  #B8A4A6;  /* from #a5b8a9 */
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* ── HERO ────────────────────────────── */
.hero {
    background: var(--dark);
    padding: 2% 10%;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 60px solid rgba(74,139,91,0.12);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px; left: 40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 30px solid rgba(74,139,91,0.08);
    pointer-events: none;
}

.nav {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    z-index: 1;
}

.brand {
    display: flex;
    /* align-items: center; */
    gap: 10px;
}

.brand-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
}

.pill-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
    white-space: nowrap;
}

.hero-inner{
    position:relative;
    z-index:1;

    display:grid;
    grid-template-columns:55% 45%;
    gap:60px;
    align-items:center;

    min-height:72vh;
}

.hero-copy{
    max-width:620px;
}

.hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}
.hero-visual video{
    width:100%;
    max-width:560px;
    background-color: #fff;
    border-radius:18px;
    object-fit:cover;
    opacity:.95;
    display:block;
}

.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #DB5B60;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 7vw, 44px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.1rem;
}

.hero-title span {
    font-size: 4rem;
}

.hero-title em {
    font-style: italic;
    color: #E6A7AA;
}


.hero-sub {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin-bottom: 2.25rem;
}

.host-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 16px 6px 6px;
}

.host-av {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}

.host-info strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    line-height: 1.3;
}

.host-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}

.header-buttons{
    margin: 20px 0px;
}
.header-buttons button{
    padding: 10px 20px;
}
.header-buttons button a{
    text-decoration: none;
    font-size: 15px;
    color: #2b0d0f;
}

@media (max-width:900px){

.hero-inner{

    grid-template-columns:1fr;

    gap:40px;

    min-height:auto;
}

.hero-copy{

    order:2;
}

.hero-visual{

    order:1;
}

.hero-visual img{

    max-width:420px;
    margin:auto;
}

}

/* ───────────────────────────── */
/* CONTENT SECTIONS */
/* ───────────────────────────── */

.credibility-section,
.services-section,
.why-section,
.insights-section,
.cta-section{
    padding: 5% 10%;
}
/* 
.credibility-content{
    max-width: 700px;
} */

.credibility-content p{
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
}

.access-list{
    display:flex;
    justify-content: space-evenly;
    width: 100%;
    gap:12px;
}

.access-list span{
    padding:10px 16px;
    background:var(--pale);
    border:1px solid var(--border);
    font-size:13px;
}

/* SERVICES */

.services-section{
    background:var(--pale);
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    padding:30px;
    border-radius:14px;
}

.service-tag{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--accent);
}

.service-card h3{
    margin:15px 0;
    font-family:'DM Serif Display', serif;
    font-size:28px;
    font-weight:400;
    line-height:1.2;
}

.service-card p{
    font-size:14px;
    line-height:1.8;
    color:var(--muted);
    margin-bottom:12px;
}

/* WHY AVG */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.why-item{
    border-top:1px solid var(--border);
    padding-top:16px;
}

.why-item span{
    color:var(--accent);
    font-size:12px;
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.why-item p{
    font-size:14px;
    line-height:1.8;
    color:var(--muted);
}

/* INSIGHTS */

.insights-section{
    background:var(--dark);
    text-align:center;
}

.insights-section .sec-title{
    color:#fff;
}

.insights-copy{
    max-width:650px;
    margin:0 auto 2rem;
    color:rgba(255,255,255,.65);
    line-height:1.8;
}
.btn{
    background:var(--white);
    color:var(--dark);
    border: 2px solid var(--mid);
}

.insights-btn,
.cta-btn{
    display:inline-block;
    text-decoration:none;
    padding:14px 28px;
    background:var(--mid);
    color:#fff;
    font-size:15px;
    font-weight: bold;
    letter-spacing:.05em;
    transition: .4s;
}

.insights-btn,
.cta-btn:hover{
    padding:14px 28px;
    background:var(--accent);
}

/* CTA */

.cta-section{
    background:var(--pale);
    text-align:center;
}

.cta-copy{
    max-width:650px;
    margin:0 auto 2rem;
    color:var(--muted);
    line-height:1.8;
}

/* ── FORM SECTION ────────────────────── */
.form-section {
    padding: 2% 10% 2% 10%;
    background: var(--white);
}

.sec-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.sec-title {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 2rem;
}

.fields { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.75rem; }

.field label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 7px;
}

.field input {
    width: 100%;
    padding: 0.72rem 1rem;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--pale);
    border: 1.5px solid transparent;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s, background 0.15s;
}

.field input::placeholder { color: #B8A4A6; }

.field input:focus {
    background: var(--white);
    border-color: var(--accent);
}

.error-msg {
    display: none;
    font-size: 12px;
    color: #c0392b;
    margin-top: 5px;
}

.field.has-error input { border-color: #c0392b; }
.field.has-error .error-msg { display: block; }

.submit-btn {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s, transform 0.1s;
}

.submit-btn:hover { background: var(--mid); }
.submit-btn:active { transform: scale(0.99); }

.btn-arrow { transition: transform 0.15s; }
.submit-btn:hover .btn-arrow { transform: translateX(4px); }

/* ── DIVIDER ─────────────────────────── */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 0 2rem;
}

/* ── CALENDAR SECTION ────────────────── */
.cal-section {
    display: none;
    padding: 2% 10% 2% 10%;
    background: var(--sage);
}

.cal-section.visible {
    display: block;
    animation: riseIn 0.35s ease;
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.success-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #dff0e4;
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.75rem;
}

.success-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.success-icon svg { display: block; }

.success-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--mid);
}

.success-card p strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 3px;
}

.cal-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--white);
}

.cal-frame iframe {
    width: 100%; height: 520px;
    border: none; display: block;
}

/* ── FOOTER ──────────────────────────── */
footer {
    background: var(--dark);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    padding: 7px 16px;
    transition: background 0.15s;
}

.wa-link:hover { background: rgba(255,255,255,0.15); }

.wa-link svg { flex-shrink: 0; }

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 480px) {
    .hero, .form-section, .cal-section, footer { padding-left: 1.25rem; padding-right: 1.25rem; }
    .section-divider { margin: 0 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    .cal-section.visible { animation: none; }
    .btn-arrow, .submit-btn { transition: none; }
}