        :root {
            --navy: #172331;
            --navy-light: #243548;
            --gold: #b79b68;
            --gold-light: #d5bd91;
            --cream: #f7f5f0;
            --white: #ffffff;
            --text: #30353a;
            --muted: #69717a;
            --border: #ddd9d0;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }

        body {
            font-family: Georgia, "Times New Roman", serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(1120px, calc(100% - 40px));
            margin: 0 auto;
        }

        /* =========================
           HEADER
        ========================= */

        header {
            background: var(--navy);
            color: var(--white);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .topbar {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: min(1200px, calc(100% - 40px));
            margin: 0 auto;
        }

        .logo {
            font-size: 1.25rem;
            letter-spacing: 0.04em;
            font-weight: normal;
        }

        .menu-button {
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,0.35);
            background: transparent;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .menu-button span {
            width: 21px;
            height: 1px;
            background: var(--white);
            transition: 0.25s;
        }

        .menu-button.active span:first-child {
            transform: translateY(3px) rotate(45deg);
        }

        .menu-button.active span:last-child {
            transform: translateY(-3px) rotate(-45deg);
        }

        /* =========================
           NAVIGATION
        ========================= */

        .mobile-nav {
            position: fixed;
            inset: 0;
            background: rgba(23, 35, 49, 0.98);
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
        }

        .mobile-nav.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }

        .mobile-nav li {
            margin: 18px 0;
        }

        .mobile-nav a {
            color: var(--white);
            font-size: 1.8rem;
            transition: color 0.2s;
        }

        .mobile-nav a:hover {
            color: var(--gold-light);
        }

        .close-nav {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,0.35);
            background: transparent;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 20px 0;
        }

        .hero-content {
            max-width: 850px;
        }

        .eyebrow {
            color: var(--gold-light);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.78rem;
            margin-bottom: 25px;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: normal;
            line-height: 0.98;
            margin-bottom: 30px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #d7dce0;
            max-width: 620px;
            margin-bottom: 40px;
        }

        .contact-line {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 30px;
            font-family: Arial, sans-serif;
            font-size: 0.9rem;
            color: #d7dce0;
        }

        .contact-line a:hover {
            color: var(--gold-light);
        }

        /* =========================
           GENERAL SECTIONS
        ========================= */

        section {
            padding: 100px 0;
        }

        section:nth-child(even) {
            background: var(--cream);
        }

        .section-label {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-family: Arial, sans-serif;
            font-size: 0.72rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .section-title {
            color: var(--navy);
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: normal;
            line-height: 1.1;
            margin-bottom: 45px;
        }

        /* =========================
           ABOUT
        ========================= */

        .about-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .portrait {
            aspect-ratio: 4 / 5;
            background: #ddd9d0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #817b71;
            text-align: center;
            padding: 30px;
            font-family: Arial, sans-serif;
            font-size: 0.85rem;
        }

        .portrait::before {
            content: "HELYE AZ ܇YVɄI PORTRɎAK";
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.08rem;
        }

        /* =========================
           PRACTICE AREAS
        ========================= */

        .practice-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
        }

        .practice-card {
            background: var(--white);
            padding: 40px 30px;
            min-height: 220px;
        }

        .practice-number {
            color: var(--gold);
            font-family: Arial, sans-serif;
            font-size: 0.75rem;
            margin-bottom: 25px;
        }

        .practice-card h3 {
            color: var(--navy);
            font-size: 1.45rem;
            font-weight: normal;
            margin-bottom: 12px;
        }

        .practice-card p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* =========================
           REFERENCES
        ========================= */

        .references {
            max-width: 800px;
        }

        .reference {
            border-top: 1px solid var(--border);
            padding: 25px 0;
        }

        .reference:last-child {
            border-bottom: 1px solid var(--border);
        }

        .reference p {
            font-size: 1.05rem;
        }

        /* =========================
           FAQ
        ========================= */

        .faq {
            max-width: 850px;
        }

        details {
            border-top: 1px solid var(--border);
            padding: 22px 0;
        }

        details:last-child {
            border-bottom: 1px solid var(--border);
        }

        summary {
            cursor: pointer;
            list-style: none;
            color: var(--navy);
            font-size: 1.15rem;
            padding-right: 30px;
            position: relative;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: "+";
            position: absolute;
            right: 0;
            top: 0;
            color: var(--gold);
            font-size: 1.3rem;
        }

        details[open] summary::after {
            content: "−";
        }

        details p {
            color: var(--muted);
            margin-top: 15px;
            padding-right: 30px;
        }

        /* =========================
           CONTACT
        ========================= */

        .contact-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
        }

        .contact-details {
            font-family: Arial, sans-serif;
        }

        .contact-item {
            margin-bottom: 25px;
        }

        .contact-item strong {
            display: block;
            color: var(--navy);
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 5px;
        }

        .contact-item span,
        .contact-item a {
            font-size: 1rem;
        }

        .contact-item a:hover {
            color: var(--gold);
        }

        /* =========================
           FORM
        ========================= */

        .contact-form {
            font-family: Arial, sans-serif;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        label {
            display: block;
            font-size: 0.78rem;
            font-weight: bold;
            margin-bottom: 7px;
            color: var(--navy);
        }

        input,
        textarea {
            width: 100%;
            border: 1px solid var(--border);
            background: var(--white);
            padding: 14px 15px;
            font-family: Arial, sans-serif;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }

        input:focus,
        textarea:focus {
            border-color: var(--gold);
        }

        textarea {
            min-height: 180px;
            resize: vertical;
        }

        .submit-button {
            border: 1px solid var(--navy);
            background: var(--navy);
            color: var(--white);
            padding: 15px 30px;
            cursor: pointer;
            font-family: Arial, sans-serif;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .submit-button:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        /* =========================
           MAP
        ========================= */

        .map-wrapper {
            margin-top: 60px;
            height: 420px;
            border: 1px solid var(--border);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: var(--navy);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            padding-bottom: 50px;
        }

        .footer-name {
            font-size: 1.5rem;
            font-weight: normal;
            margin-bottom: 10px;
        }

        .footer-description {
            color: #bfc6cc;
            max-width: 400px;
        }

        .footer-nav-title {
            color: var(--gold-light);
            text-transform: uppercase;
            font-family: Arial, sans-serif;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            margin-bottom: 18px;
        }

        .footer-nav {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            font-family: Arial, sans-serif;
            font-size: 0.85rem;
        }

        .footer-nav a {
            color: #d5dbe0;
        }

        .footer-nav a:hover {
            color: var(--gold-light);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.12);
            padding-top: 25px;
            color: #8f9aa4;
            font-family: Arial, sans-serif;
            font-size: 0.75rem;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 800px) {
            section {
                padding: 75px 0;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .practice-grid {
                grid-template-columns: 1fr;
            }

            .portrait {
                max-width: 500px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .container {
                width: min(100% - 30px, 1120px);
            }

            .topbar {
                width: calc(100% - 30px);
            }

            .hero {
                padding: 20px 0;
            }

            .hero h1 {
                font-size: 3.4rem;
            }

            .hero-subtitle {
                font-size: 1.05rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .map-wrapper {
                height: 320px;
            }
        }
