/* Ward Hilton Boren — Clean Professional Design */

:root {
    --white: #ffffff;
    --off-white: #f7f8fa;
    --navy: #0c1f3a;
    --navy-mid: #152e4f;
    --gold: #b8952e;
    --gold-light: #c9a63a;
    --gold-pale: rgba(184, 149, 46, 0.08);
    --text-dark: #0c1f3a;
    --text-body: #3e5068;
    --text-muted: #6b7b90;
    --border: rgba(12, 31, 58, 0.06);
    --shadow-sm: 0 1px 3px rgba(12, 31, 58, 0.05);
    --shadow-md: 0 4px 20px rgba(12, 31, 58, 0.07);
    --shadow-header: 0 1px 8px rgba(12, 31, 58, 0.05);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1160px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-header);
    background: rgba(255, 255, 255, 0.99);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    text-decoration: none;
    position: relative;
    padding-left: 14px;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.logo-sub {
    display: block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-top: -2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.main-nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.main-nav a:not(.btn-nav):hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--gold);
}

.btn-nav {
    background: var(--navy) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--navy-mid) !important;
}

.btn-nav::after {
    display: none !important;
}

.header-phone {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    padding-left: 20px;
}

.header-phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.7;
}

.header-phone::after {
    content: '';
    position: absolute;
    left: 3px;
    top: calc(50% - 2px);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

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

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 150px 0 84px;
    background: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12,31,58,0.92) 0%, rgba(21,46,79,0.88) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(12,31,58,0.4), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(184, 149, 46, 0.35);
    border-radius: 2px;
    background: rgba(184, 149, 46, 0.06);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    margin: 0 auto 38px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 54px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(184, 149, 46, 0.18);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 149, 46, 0.25);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid rgba(255,255,255,0.22);
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.06);
}

.btn-full {
    width: 100%;
}

/* ========== SECTIONS ========== */
.section-tag {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.68rem;
    font-weight: 600;
    margin-bottom: 12px;
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--navy);
}

.section-sub {
    color: var(--text-body);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 44px;
}

/* ========== PRACTICE AREAS ========== */
.practice-areas {
    padding: 90px 0;
    background: var(--off-white);
    position: relative;
}

.practice-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.practice-areas h2,
.practice-areas .section-tag,
.practice-areas .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

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

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 34px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(184, 149, 46, 0.15);
    transform: translateY(-3px);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    color: var(--gold);
    margin-bottom: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 8px;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.card p {
    color: var(--text-body);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
    padding: 90px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.image-frame {
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    opacity: 0.12;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.about-content h2 {
    margin-bottom: 20px;
}

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

.about-list {
    list-style: none;
    margin: 24px 0 30px;
}

.about-list li {
    padding: 7px 0 7px 24px;
    position: relative;
    color: var(--text-body);
    font-size: 0.925rem;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* ========== TEAM ========== */
.team {
    padding: 90px 0;
    background: var(--off-white);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.team-image {
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    left: 8px;
    top: 8px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    opacity: 0.12;
    z-index: -1;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--gold);
    position: relative;
    z-index: 1;
}

.team-content h2 {
    margin-bottom: 20px;
}

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

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 90px 0;
    background: var(--navy);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.testimonials h2,
.testimonials .section-tag {
    text-align: center;
    color: #fff;
}

.testimonials .section-sub {
    color: rgba(255,255,255,0.55);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 32px;
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(184, 149, 46, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 22px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    opacity: 0.07;
    line-height: 1;
}

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    color: rgba(255,255,255,0.78);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.testimonial-card cite {
    color: var(--gold);
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== CONTACT ========== */
.contact {
    padding: 90px 0;
    background: var(--off-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-info p {
    color: var(--text-body);
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 16px;
    border-left: 2px solid var(--gold-pale);
    transition: border-color var(--transition);
}

.contact-item:hover {
    border-left-color: var(--gold);
}

.contact-item strong {
    display: block;
    color: var(--navy);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--navy);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--off-white);
    border: 1px solid rgba(12, 31, 58, 0.1);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 149, 46, 0.1);
}

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

/* ========== FOOTER ========== */
.site-footer {
    background: var(--navy);
    padding: 48px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184, 149, 46, 0.08);
    transform: translateY(-1px);
}

.footer-nav h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-nav nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-nav a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.825rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
    margin-bottom: 4px;
}

.disclaimer {
    font-size: 0.68rem !important;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .main-nav { display: none; }
    .header-phone { display: none; }
    .mobile-toggle { display: flex; }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .team-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 32px; }
}

@media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.85rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary { text-align: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .logo { padding-left: 10px; }
    .logo::before { width: 2px; }
}
