/* ── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
    --dark:   #0F1C2A;
    --mid:    #1C2E3E;
    --accent: #65bdbe;
    --teal:   #4A8B8C;
    --light:  #F5F1EC;
    --white:  #FFFFFF;
    --fog:    #95bfc0;
    --text:   #1F1F1F;
}

/* ── Base Typography ───────────────────────────────────────────────────────── */
body, #page-container { font-family: 'Inter', sans-serif; color: var(--text); }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.olbb-hero {
   
    
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.olbb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,28,42,0.90) 0%, rgba(15,28,42,0.60) 100%);
}
.olbb-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 70px 24px 50px;
    max-width: 820px;
    margin: 0 auto;
}
.olbb-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: block;
}
.olbb-hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.13;
    color: #ffffff;
    margin-bottom: 22px;
}
.olbb-gold  { color: var(--accent); }
.olbb-teal  { color: var(--teal); }
.olbb-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,1);
    line-height: 1.75;
    margin-bottom: 48px;
}
.olbb-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.olbb-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.22s ease;
    cursor: pointer;
}
.olbb-btn-primary {
    background: var(--accent);
    color: #ffffff;
    border: 2px solid var(--accent);
}
.olbb-btn-primary:hover {
    background: #0f1c2a;
    border-color: #0f1c2a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196,149,106,0.4);
    text-decoration: none;
}
.olbb-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.5);
}

.olbb-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    text-decoration: none;
}
.olbb-btn-cta {
    background: transparent;
    color: #0f1c2a;
    border: 2px solid #0f1c2a;
}
.olbb-btn-dark {
    background: var(--dark);
    color: #ffffff;
    border: 2px solid var(--dark);
}
.olbb-btn-dark:hover {
    background: var(--mid);
    border-color: var(--mid);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}
.olbb-btn-teal {
    background: var(--teal);
    color: #ffffff;
    border: 2px solid var(--teal);
}
.olbb-btn-teal:hover {
    background: #3a7a7b;
    border-color: #3a7a7b;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Section Headings ──────────────────────────────────────────────────────── */
.olbb-section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
    text-align: center;
}
.olbb-section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
    text-align: center;
}
.olbb-section-h2.light, .olbb-section-h2-light { color: #ffffff; }
.olbb-section-divider {
    width: 56px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 36px;
    border-radius: 2px;
}

/* ── Stats Bar ─────────────────────────────────────────────────────────────── */
.olbb-stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.olbb-stat-card {
    flex: 1 1 220px;
    padding: 52px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.10);
    list-style: none;
}
.olbb-stat-card:last-child { border-right: none; }
.olbb-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}
.olbb-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,1);
}

/* ── Environment / Office Photos ───────────────────────────────────────────── */
.olbb-env-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.16);
    display: block;
    object-fit: cover;
}

/* ── Contact Info Block ────────────────────────────────────────────────────── */
.olbb-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.olbb-contact-info li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.96rem;
    color: var(--text);
    line-height: 1.5;
}
.olbb-contact-info li:last-child { border-bottom: none; }
.olbb-contact-info a { color: var(--dark); text-decoration: none; }
.olbb-contact-info a:hover { color: var(--accent); }
.olbb-contact-icon {
    display: inline-block;
    width: 30px;
    color: var(--accent);
    font-size: 1rem;
}

/* ── Divi Blurb Overrides ──────────────────────────────────────────────────── */
.et_pb_blurb { height: 100%; }
.et_pb_blurb .et_pb_blurb_description p { margin-bottom: 0; }

/* ── Ninja Forms Styling ───────────────────────────────────────────────────── */
.nf-form-cont { border: none !important; }
.nf-field-label label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
}
.nf-field-element input,
.nf-field-element textarea,
.nf-field-element select {
    border: 1.5px solid #DDE6EF !important;
    border-radius: 6px !important;
    padding: 12px 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.94rem !important;
    transition: border-color .2s, box-shadow .2s;
}
.nf-field-element input:focus,
.nf-field-element textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(196,149,106,.15) !important;
    outline: none !important;
}
.nf-field-element input[type="button"],
.nf-field-element input[type="submit"] {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 14px 32px !important;
    cursor: pointer;
    transition: background .22s, transform .22s !important;
}
.nf-field-element input[type="button"]:hover,
.nf-field-element input[type="submit"]:hover {
    background: #0f1c2a !important;
    transform: translateY(-2px) !important;
}

/* ── Mobile Sticky CTA Bar ─────────────────────────────────────────────────── */
.olbb-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark);
    padding: 10px 16px;
    gap: 10px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.28);
    align-items: center;
}
.olbb-mcta-call {
    flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
}
.olbb-mcta-btn {
    background: var(--accent);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 4px;
    display: block;
    flex-shrink: 0;
}

/* ── Scroll Reveal ─────────────────────────────────────────────────────────── */
.olbb-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(.16,1,.3,1), transform 0.65s cubic-bezier(.16,1,.3,1);
}
.olbb-visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ── Keyframe Animations ───────────────────────────────────────────────────── */
@keyframes olbb-fade-up   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes olbb-glow-pulse{ 0%,100%{box-shadow:0 4px 24px rgba(196,149,106,.35)} 50%{box-shadow:0 4px 48px rgba(196,149,106,.65)} }

/* ── Divi Section / Row Resets ─────────────────────────────────────────────── */
.et_pb_section.et_pb_section_first { padding-top: 0 !important; }

/* ── Map Wrapper ───────────────────────────────────────────────────────────── */
.olbb-map-wrap { position: relative; padding-bottom: 38%; height: 0; overflow: hidden; }
.olbb-map-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
    .olbb-stat-card { flex: 1 1 50%; }
    .olbb-stat-card:nth-child(2) { border-right: none; }
    .olbb-stat-card:nth-child(1),
    .olbb-stat-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.10); }
    .olbb-map-wrap { padding-bottom: 56%; }
}
@media (max-width: 768px) {
    .olbb-mobile-cta { display: flex; }
    body { padding-bottom: 64px; }
    .olbb-hero-content { padding: 90px 20px 80px; }
    .olbb-hero-h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
    .olbb-stat-card { flex: 1 1 100%; border-right: none !important; }
    .olbb-map-wrap { padding-bottom: 75%; }
}

/* ── Reduced Motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
