:root {
    --hg-black: #0f172a;
    --hg-dark: #1e293b;
    --hg-gray: #64748b;
    --hg-light: #f8fafc;
    --hg-white: #ffffff;
    --hg-border: #e2e8f0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-sans);
    color: var(--hg-dark);
    background-color: var(--hg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--hg-black);
    font-weight: 700;
}
a { color: var(--hg-black); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }
img { width: 100%; height: auto; object-fit: cover; display: block; }

.hg-site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hg-border);
    z-index: 100;
}
.hg-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hg-logo-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
}
.hg-nav-menu {
    display: flex;
    gap: 2rem;
}
.hg-nav-menu a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hg-hero-stage {
    max-width: 1000px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
    text-align: center;
}
.hg-hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hg-hero-subtitle {
    font-size: 1.25rem;
    color: var(--hg-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.hg-btn-primary {
    display: inline-block;
    background: var(--hg-black);
    color: var(--hg-white);
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
}
.hg-btn-primary:hover {
    background: var(--hg-dark);
    opacity: 1;
}
.hg-hero-visual {
    margin-top: 4rem;
    border-radius: 4px;
    overflow: hidden;
}
.hg-hero-visual img {
    aspect-ratio: 16/9;
}

.hg-story-block {
    background: var(--hg-light);
    padding: 6rem 2rem;
}
.hg-story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hg-story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.hg-story-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.hg-story-text a {
    text-decoration: underline;
}
.hg-stats-wrapper {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hg-border);
}
.hg-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--hg-black);
}
.hg-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--hg-gray);
}
.hg-story-imagery {
    position: relative;
}
.hg-story-imagery img {
    border-radius: 4px;
}
.hg-offset-img {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 60%;
    border: 8px solid var(--hg-light);
}

.hg-practice-areas {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}
.hg-section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.hg-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hg-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.hg-practice-card img {
    aspect-ratio: 4/3;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.hg-practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hg-voices {
    background: var(--hg-black);
    color: var(--hg-white);
    padding: 6rem 2rem;
    text-align: center;
}
.hg-voices h2 {
    color: var(--hg-white);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}
.hg-voices-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.hg-voice-card {
    flex: 1 1 300px;
    background: var(--hg-dark);
    padding: 2.5rem;
    text-align: left;
    border-radius: 4px;
}
.hg-voice-card p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #cbd5e1;
}
.hg-client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hg-client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.hg-client-info span {
    font-weight: 600;
    font-size: 0.9rem;
}

.hg-connect {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}
.hg-connect-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}
.hg-connect-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.hg-connect-text p {
    margin-bottom: 1.5rem;
}
.hg-hours {
    padding-top: 1.5rem;
    border-top: 1px solid var(--hg-border);
}
.hg-form-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hg-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hg-input-group label {
    font-size: 0.9rem;
    font-weight: 600;
}
.hg-input-group input, .hg-input-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--hg-border);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--hg-light);
}
.hg-input-group input:focus, .hg-input-group textarea:focus {
    outline: none;
    border-color: var(--hg-black);
}
.hg-form-disclaimer {
    font-size: 0.75rem;
    color: var(--hg-gray);
    margin-top: -0.5rem;
}

.hg-footer-base {
    background: var(--hg-light);
    border-top: 1px solid var(--hg-border);
    padding: 4rem 2rem 2rem;
}
.hg-footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.hg-footer-col h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hg-footer-col p, .hg-footer-col a {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--hg-gray);
}
.hg-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--hg-border);
    font-size: 0.85rem;
    color: var(--hg-gray);
}

@media (max-width: 900px) {
    .hg-story-grid, .hg-connect-wrap {
        grid-template-columns: 1fr;
    }
    .hg-offset-img {
        display: none;
    }
    .hg-footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .hg-header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .hg-nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .hg-hero-title {
        font-size: 2.5rem;
    }
}