/* ============================================
   THE ARMATURE AGENCY
   Bold. Feminine. Gen Z energy.
   Colors pulled from the actual logos.
   ============================================ */

:root {
    --orange: #FF592D;
    --orange-light: #FF7A54;
    --orange-soft: #FFF1ED;
    --orange-glow: rgba(255, 89, 45, 0.10);
    --navy: #1B2838;
    --navy-mid: #263848;
    --navy-light: #3A5068;
    --cream: #E7E3DD;
    --cream-warm: #DDD8D1;
    --white: #F5F3F0;
    --text: #1B2838;
    --text-mid: #3D5060;
    --text-light: #5E7282;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Georgia Pro', Georgia, 'Times New Roman', serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-soft: 0 4px 30px rgba(30, 45, 77, 0.06);
    --shadow-pop: 0 12px 40px rgba(240, 78, 35, 0.15);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Under Construction Banner */
.site-banner {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 10px 28px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 101;
}

.site-banner a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-banner a:hover { color: var(--orange-light); }

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(231, 227, 221, 0.90);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(30, 45, 77, 0.04);
    transition: box-shadow var(--transition);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--orange); }

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background: var(--orange-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(240, 78, 35, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pop);
}

.btn-secondary {
    background: var(--navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 18px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    padding: 80px 28px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

/* Decorative blob top right */
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 40% 40%, var(--orange) 0%, transparent 70%);
    opacity: 0.07;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

/* Decorative blob bottom left */
.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--navy) 0%, transparent 70%);
    opacity: 0.04;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

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

.hero-sub {
    font-size: 18px;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 36px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 88px 0;
    position: relative;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 520px;
}

/* Split Layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.split-right p {
    margin-bottom: 16px;
    color: var(--text-mid);
    font-size: 17px;
}

.link-arrow {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 16px;
    margin-top: 4px;
    transition: var(--transition);
}

.link-arrow:hover { transform: translateX(4px); }

/* ============================================
   ORANGE STRIPE - Full bleed accent section
   ============================================ */

.orange-stripe {
    background: var(--orange);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.orange-stripe::before {
    content: '';
    position: absolute;
    top: -40px;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255,255,255,0.12);
    border-radius: 50%;
}

.orange-stripe::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.orange-stripe h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}

.orange-stripe p {
    color: rgba(255,255,255,0.85);
    text-align: center;
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   NAVY BLOCK
   ============================================ */

.navy-block {
    background: var(--navy);
    color: var(--white);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.navy-block::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(240, 78, 35, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.navy-block h2 { color: var(--orange); }

.navy-block p {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
}

.navy-block .story-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.navy-block .story-card p { margin-bottom: 16px; }

/* ============================================
   CARDS
   ============================================ */

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(30, 45, 77, 0.05);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.card:hover::before { transform: scaleX(1); }

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 45, 77, 0.1);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

.card p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 16px;
}

.card-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.card-link:hover { transform: translateX(4px); }

/* ============================================
   PRICING TIERS
   ============================================ */

.tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tier {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(30, 45, 77, 0.05);
    transition: all var(--transition);
    position: relative;
}

.tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(30, 45, 77, 0.1);
}

.tier-featured {
    border: 2px solid var(--orange);
    background: linear-gradient(160deg, var(--white) 0%, var(--orange-soft) 100%);
}

.tier-badge {
    position: absolute;
    top: -11px;
    left: 28px;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tier-price {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.tier h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

.tier p {
    color: var(--text-mid);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   PROOF / CASE STUDIES
   ============================================ */

.proof-grid {
    display: grid;
    gap: 20px;
}

.proof-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(30, 45, 77, 0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
    transition: all var(--transition);
}

.proof-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.proof-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.3;
    line-height: 1;
}

.proof-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.proof-card p {
    color: var(--text-mid);
    font-size: 16px;
    margin-bottom: 8px;
}

.proof-stat {
    display: inline-block;
    background: var(--orange-glow);
    color: var(--orange);
    font-weight: 700;
    font-size: 15px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-top: 8px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.service-detail {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 24px;
    border: 1px solid rgba(30, 45, 77, 0.05);
    position: relative;
}

.service-detail.featured {
    border: 2px solid var(--orange);
    background: linear-gradient(160deg, var(--white) 0%, var(--orange-soft) 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.service-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
}

.service-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--orange);
}

.service-detail p {
    color: var(--text-mid);
    margin-bottom: 12px;
    font-size: 16px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-item {
    border-bottom: 1px solid rgba(30, 45, 77, 0.07);
    padding: 20px 0;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    color: var(--orange);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 12px;
}

.faq-answer p { color: var(--text-mid); }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    max-width: 680px;
    margin: 0 auto;
}

.about-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--navy);
    margin: 36px 0 12px;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px auto;
    max-width: 680px;
}

.credential-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border-left: 4px solid var(--orange);
}

.credential-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 6px;
}

.credential-card p {
    font-size: 15px;
    margin-bottom: 0;
    color: var(--text-mid);
}

/* ============================================
   FOLLOW PAGE
   ============================================ */

.follow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.follow-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(30, 45, 77, 0.05);
    transition: all var(--transition);
}

.follow-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.follow-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.follow-card p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 15px;
}

.lead-magnet {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 44px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(240, 78, 35, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.lead-magnet h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}

.lead-magnet p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 16px;
    position: relative;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(30, 45, 77, 0.12);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    background: var(--cream);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group textarea { height: 120px; resize: vertical; }

.calendly-embed-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.calendly-embed-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 78, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.calendly-embed-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
}

.calendly-embed-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    position: relative;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section { padding: 64px 0; }

.cta-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 78, 35, 0.12) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 480px;
    margin: 0 auto 28px;
    position: relative;
}

/* ============================================
   PAGE HEADERS
   ============================================ */

.page-header {
    padding: 64px 28px 48px;
    text-align: center;
    background: var(--cream);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    padding: 56px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-brand p { font-size: 14px; line-height: 1.5; }

.footer-links { display: flex; gap: 40px; }

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    font-size: 13px;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

.dot-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.08;
}

.squiggle {
    display: block;
    margin: 40px auto;
    opacity: 0.15;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px 28px;
        gap: 0;
        border-bottom: 1px solid rgba(30, 45, 77, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(30, 45, 77, 0.05);
    }

    .nav-links li:last-child { border-bottom: none; padding-top: 14px; }
    .nav-cta { text-align: center; display: block; }
    .hero { padding: 110px 24px 56px; }
    .section { padding: 56px 0; }
    .split { grid-template-columns: 1fr; gap: 24px; }
    .cards, .tiers, .follow-grid, .credentials { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .cta-card { padding: 40px 24px; border-radius: var(--radius-lg); }
    .proof-card { grid-template-columns: 1fr; }
    .proof-number { font-size: 36px; }
    .service-header { flex-direction: column; }
    .orange-stripe { padding: 40px 0; }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    .card, .tier, .service-detail, .follow-card { padding: 24px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-in {
    animation: fadeUp 0.5s ease forwards;
    opacity: 0;
}

.animate-in:nth-child(2) { animation-delay: 0.08s; }
.animate-in:nth-child(3) { animation-delay: 0.16s; }
.animate-in:nth-child(4) { animation-delay: 0.24s; }
