:root {
    --navy: #07111f;
    --navy-2: #0d1b2d;
    --ink: #17202d;
    --gold: #c7a35a;
    --gold-2: #e3c784;
    --cream: #f6f2e9;
    --muted: #eef1f4;
    --white: #ffffff;
    --line: rgba(16, 30, 48, 0.13);
    --radius: 22px;
    --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3 {
    margin: 0 0 20px;
    font-family: "Playfair Display", serif;
    line-height: 1.12;
    color: var(--navy);
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 4rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.45rem;
}

p {
    margin: 0 0 18px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    max-width: 880px;
}

.section {
    padding: 105px 0;
}

.muted {
    background: var(--muted);
}

.dark-section {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #d8e0e9;
}

.dark-section h2 {
    color: #fff;
}

.lead {
    font-size: 1.2rem;
    color: #344154;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--gold-2);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.45;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    flex: 0 0 auto;
    background: currentColor;
}

.eyebrow.dark {
    color: #8b6e34;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-act-notice {
    margin: 22px 0 14px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-act-notice {
        margin: 18px 0 12px;
        font-size: 13px;
        line-height: 1.5;
    }
}






.btn-gold {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: var(--navy);
    box-shadow: 0 12px 32px rgba(199, 163, 90, 0.27);
}

.btn-ghost,
.btn-outline {
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
}

.btn-sm {
    min-height: 43px;
    padding-inline: 18px;
    font-size: 0.84rem;
}

.btn-full {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 99;
    padding: 21px 0;
    color: #fff;
    transition: 0.3s ease;
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(7, 17, 31, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(227, 199, 132, 0.65);
    border-radius: 14px;
    color: var(--gold-2);
    font-family: "Playfair Display", serif;
    font-weight: 700;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.25em;
}

.brand-copy small {
    margin-top: 7px;
    font-size: 0.62rem;
    opacity: 0.67;
}

.custom-logo {
    width: auto;
    max-height: 54px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list a {
    font-size: 0.83rem;
    font-weight: 600;
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #fff;
}

/* Home hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 150px 0 42px;
    color: #303030;
    background: radial-gradient(circle at 76% 34%, #303030 0, transparent 31%), linear-gradient(135deg, #06101e, #303030 65%, #303030);

}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, #000, transparent);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.18;
}

.orb-one {
    top: 12%;
    right: 8%;
    width: 260px;
    height: 260px;
    background: #315778;
}

.orb-two {
    bottom: 5%;
    left: 12%;
    width: 180px;
    height: 180px;
    background: #c7a35a;
    opacity: 0.06;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    gap: clamp(48px, 5vw, 76px);
    align-items: center;
}

.hero-copy,
.hero-visual {
    min-width: 0;
}

.hero-copy .eyebrow {
    margin-bottom: 22px;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(3.25rem, 4.25vw, 4.75rem);
    line-height: 1;
    letter-spacing: -0.043em;
    text-wrap: balance;
}

.hero h1 em {
    color: var(--gold-2);
    font-style: normal;
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 13px;
    color: #fff;
    font-size: clamp(1.15rem, 1.35vw, 1.35rem);
    line-height: 1.45;
}

.hero-copy > p:not(.hero-lead) {
    max-width: 700px;
    margin-bottom: 0;
    color: #d6e0ea;
    font-size: 1rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 29px;
}

.hero-actions .btn {
    min-height: 54px;
    padding-inline: 27px;
    white-space: nowrap;
}

.hero-visual {
    width: 100%;
}

.hero-court-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.55;
    min-height: 520px;
    max-height: 610px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 31px;
    background: #0d1b2d;
    box-shadow:
        28px 38px 80px rgba(0, 0, 0, 0.31),
        inset 0 1px rgba(255, 255, 255, 0.12);
}

.hero-court-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.02) 45%, rgba(7, 17, 31, 0.38) 100%),
        linear-gradient(90deg, rgba(7, 17, 31, 0.06), transparent 34%);
}

.hero-court-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
}

.hero-image-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    max-width: calc(100% - 44px);
    padding: 16px 19px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 15px;
    background: rgba(7, 17, 31, 0.84);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.hero-image-badge span,
.hero-image-badge strong {
    display: block;
}

.hero-image-badge span {
    margin-bottom: 5px;
    color: var(--gold-2);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-image-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 1.02rem;
    line-height: 1.25;
}

.trust-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.trust-strip span {
    font-size: 0.72rem;
    line-height: 1.45;
    text-align: center;
    opacity: 0.75;
}

/* Home sections */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 82px;
    align-items: start;
}

.home-intro .split,
.dark-section .split {
    align-items: center;
}

.home-intro h2 {
    max-width: 570px;
    font-size: clamp(2.55rem, 4vw, 3.75rem);
}

.home-intro .intro-copy {
    max-width: 650px;
}

.home-intro .lead {
    margin-bottom: 15px;
    font-size: 1.18rem;
    line-height: 1.65;
}

.section-head {
    max-width: 720px;
    margin-bottom: 46px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    display: flex;
    min-height: 355px;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 46px rgba(7, 17, 31, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-card h3 {
    line-height: 1.25;
}

.service-card p {
    color: #5b6673;
    font-size: 0.98rem;
    line-height: 1.68;
}

.service-card a {
    margin-top: auto;
    color: #80652f;
    font-weight: 700;
}

.icon-3d {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 19px;
    background: linear-gradient(145deg, #f8ecd0, #c8a65d);
    color: var(--navy);
    box-shadow:
        8px 12px 25px rgba(120, 87, 25, 0.22),
        inset 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.icon-3d svg {
    width: 31px;
}

.dark-section .btn {
    margin-top: 12px;
}

.feature-list {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-row {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-row span {
    color: var(--gold-2);
    font-size: 0.72rem;
}

.feature-row strong {
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-card {
    position: relative;
    min-height: 175px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.process-card span {
    color: #a17f3f;
    font-weight: 700;
}

.process-card h3 {
    margin-top: 16px;
    line-height: 1.32;
}

.process-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 2;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
}

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

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 58px;
    border-radius: 30px;
    background: linear-gradient(125deg, #0b192a, #142d47);
    color: #dce5ee;
    box-shadow: var(--shadow);
}

.cta-card h2 {
    max-width: 780px;
    color: #fff;
}

/* Shared inner pages */
.page-hero {
    padding: 190px 0 105px;
    background:
        radial-gradient(circle at 80% 20%, #213d5a 0, transparent 28%),
        linear-gradient(135deg, #06101e, #0d2035);
    color: #dbe5ee;
}

.page-hero h1 {
    color: #fff;
}

.page-hero p {
    max-width: 700px;
    font-size: 1.2rem;
}

.profile-grid,
.contact-grid {
    display: grid;
    gap: 70px;
    align-items: start;
}

.profile-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 85px;
    align-items: center;
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.profile-art {
    position: relative;
    display: grid;
    height: 580px;
    overflow: hidden;
    place-items: center;
    border-radius: 32px;
    background: linear-gradient(145deg, #0b192a, #1d3a55);
    box-shadow: var(--shadow);
}

.profile-art::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(227, 199, 132, 0.23);
    border-radius: 50%;
    box-shadow:
        0 0 0 50px rgba(255, 255, 255, 0.025),
        0 0 0 100px rgba(255, 255, 255, 0.02);
}

.monogram {
    position: relative;
    color: var(--gold-2);
    font-family: "Playfair Display", serif;
    font-size: 8rem;
}

.profile-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.72);
    color: #fff;
    text-align: center;
}

.credential-grid,
.contact-cards,
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.credential-grid {
    margin: 30px 0;
}

.credential-grid div,
.contact-cards div {
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.credential-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
}

.credential-grid svg {
    width: 20px;
    flex: 0 0 auto;
    color: #a17f3f;
}

blockquote {
    margin: 30px 0;
    padding: 22px 28px;
    border-left: 3px solid var(--gold);
    background: var(--cream);
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
}

.services-stack {
    display: grid;
    gap: 20px;
}

.service-detail {
    display: grid;
    grid-template-columns: 50px 80px 1fr 54px;
    gap: 25px;
    align-items: start;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 25px;
    box-shadow: 0 14px 45px rgba(7, 17, 31, 0.05);
}

.service-number {
    padding-top: 15px;
    color: #9a7a3c;
    font-size: 0.75rem;
}

.service-detail .icon-3d {
    margin: 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-list span {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--muted);
    font-size: 0.78rem;
}

.circle-link {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.3rem;
    transition: 0.2s ease;
}

.circle-link:hover {
    background: var(--navy);
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    min-height: 280px;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: 25px;
    box-shadow: 0 14px 45px rgba(7, 17, 31, 0.05);
}

.why-card:first-child {
    grid-column: span 2;
    background: var(--cream);
}

.why-card > span {
    display: block;
    margin-bottom: 40px;
    color: #9a7a3c;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card {
    margin: 0;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(7, 17, 31, 0.07);
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
}

.quote-mark {
    color: var(--gold);
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    line-height: 0.7;
}

.testimonial-card footer {
    margin-top: 28px;
    font-weight: 700;
}

.testimonial-card footer small {
    display: block;
    color: #79818b;
    font-weight: 400;
}

.contact-cards {
    margin: 30px 0;
}

.contact-cards div {
    padding: 18px;
    border-radius: 15px;
}

.contact-cards small {
    display: block;
    color: #8c6f37;
}

.contact-cards strong {
    font-size: 0.85rem;
    overflow-wrap: anywhere;
}

.consultation-steps {
    margin-top: 40px;
}

.consultation-steps > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.hero-act-notice {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-act-notice span {
    color: #e6c16f;
    font-weight: 700;
}

.consultation-steps span {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 0.75rem;
}

.consultation-steps p {
    margin: 0;
}

.form-panel {
    padding: 38px;
    border-radius: 26px;
    background: var(--muted);
    box-shadow: var(--shadow);
}

.field-row {
    gap: 15px;
}

.inquiry-form label {
    display: block;
    margin-bottom: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 14px 15px;
    border: 1px solid #d5dbe1;
    border-radius: 11px;
    outline: none;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(199, 163, 90, 0.14);
}

.consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
}

.consent input {
    width: auto;
    margin-top: 4px;
}

.form-note {
    margin: 12px 0 0;
    color: #69737e;
    font-size: 0.72rem;
    text-align: center;
}

.hp {
    position: absolute !important;
    left: -9999px;
}

.notice {
    margin-bottom: 18px;
    padding: 15px;
    border-radius: 12px;
}

.notice.success {
    background: #e3f4ea;
    color: #195c35;
}

.notice.error {
    background: #fce7e7;
    color: #8b2525;
}

/* About imagery */
.about-page-hero {
    position: relative;
    overflow: hidden;
}

.about-page-hero::after {
    content: "§";
    position: absolute;
    right: 7%;
    bottom: -110px;
    color: rgba(227, 199, 132, 0.055);
    font-family: "Playfair Display", serif;
    font-size: 420px;
    line-height: 1;
    pointer-events: none;
}

.about-feature-wrap {
    padding: 90px 0;
}

.about-feature {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    overflow: hidden;
    border: 1px solid rgba(16, 30, 48, 0.1);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 52px;
}

.about-kicker {
    margin-bottom: 12px;
    color: #b98f3c;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
}

.about-feature h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.gold-rule {
    display: block;
    width: 42px;
    height: 3px;
    margin: 4px 0 32px;
    background: linear-gradient(90deg, #c7a35a, #e7c974);
}

.about-feature-copy p {
    font-size: 1.05rem;
}

.about-feature-copy .lead {
    color: #1f2a37;
}

.legal-symbol-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 30px 0;
    padding: 18px;
    border: 1px solid #eee9df;
    background: linear-gradient(180deg, #fff, #faf8f3);
}

.legal-symbol-row span {
    display: grid;
    min-height: 48px;
    place-items: center;
    color: #b38a3d;
}

.legal-symbol-row svg {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 5px 8px rgba(164, 120, 35, 0.18));
}

.square-btn {
    align-self: flex-start;
    padding-inline: 30px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-feature-photo {
    position: relative;
    min-height: 650px;
    background: #d7d7d7;
}

.about-feature-photo img,
.profile-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
}

.about-feature-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(7, 17, 31, 0.58));
}

.photo-caption {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 2;
    color: #fff;
}

.photo-caption strong,
.photo-caption span {
    display: block;
}

.photo-caption strong {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
}

.photo-caption span {
    color: #ead495;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-photo-card {
    display: block;
    background: #d4d4d4;
}

.profile-photo-card::before {
    display: none;
}

.refined-profile {
    align-items: center;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.prose {
    font-size: 1.06rem;
}

/* Large laptop */
@media (max-width: 1180px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(3.05rem, 4.6vw, 4.15rem);
    }

    .hero-court-image {
        min-height: 490px;
    }
}

/* Tablet */
@media (max-width: 980px) {
    .primary-nav {
        position: fixed;
        inset: 0;
        display: none;
        flex-direction: column;
        justify-content: center;
        background: var(--navy);
    }

    .primary-nav.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        font-size: 1.2rem;
    }

    .menu-toggle {
        position: relative;
        z-index: 2;
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 136px 0 40px;
    }

    .hero-grid,
    .split,
    .profile-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-copy,
    .hero-visual {
        max-width: 760px;
    }

    .hero h1 {
        max-width: 690px;
        font-size: clamp(3.1rem, 7.7vw, 4.35rem);
    }

    .hero-court-image {
        width: min(100%, 680px);
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 11;
    }

    .trust-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-card::after {
        display: none !important;
    }
.testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-art {
        height: 480px;
    }

    .service-detail {
        grid-template-columns: 45px 70px 1fr;
    }

    .circle-link {
        grid-column: 3;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card:first-child {
        grid-column: auto;
    }

    .about-feature {
        grid-template-columns: 1fr;
    }

    .about-feature-photo {
        min-height: 560px;
        order: -1;
    }

    .about-feature-copy {
        padding: 45px;
    }

    .about-page-hero::after {
        font-size: 300px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .section {
        padding: 68px 0;
    }

    .site-header {
        padding: 13px 0;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        padding: 116px 0 32px;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero-copy .eyebrow {
        margin-bottom: 17px;
        font-size: 0.63rem;
        letter-spacing: 0.14em;
    }

    .hero h1 {
        margin-bottom: 16px;
        font-size: clamp(2.55rem, 12.4vw, 3.25rem);
        line-height: 1.01;
        letter-spacing: -0.038em;
        text-wrap: initial;
    }

    .hero-lead {
        margin-bottom: 11px;
        font-size: 1.05rem;
        line-height: 1.48;
    }

    .hero-copy > p:not(.hero-lead) {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
        margin-top: 24px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        padding: 11px 19px;
        white-space: normal;
    }

    .hero-court-image {
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .hero-court-image img {
        object-position: 63% center;
    }

    .hero-image-badge {
        right: 13px;
        bottom: 13px;
        left: 13px;
        max-width: none;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .hero-image-badge span {
        font-size: 0.57rem;
    }

    .hero-image-badge strong {
        font-size: 0.92rem;
    }

    .trust-strip {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 30px;
        padding-top: 8px;
    }

    .trust-strip span {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 0.75rem;
        text-align: left;
        color:#ffffff;
    }
    
    .container.trust-strip {
    color: #ffffff;
}

    .split {
        gap: 26px;
    }

    .home-intro h2,
    .section-head h2,
    .dark-section h2,
    .cta-card h2 {
        font-size: clamp(2.08rem, 9.6vw, 2.65rem);
        line-height: 1.08;
    }

    .home-intro .lead {
        font-size: 1.05rem;
    }

    .section-head {
        margin-bottom: 30px;
    }

    .service-grid,
    .process-grid,
    .credential-grid,
    .contact-cards,
    .field-row {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .process-grid {
        gap: 15px;
    }

    .service-card {
        min-height: 0;
        padding: 24px 22px;
        border-radius: 18px;
    }

    .service-card .icon-3d {
        width: 58px;
        height: 58px;
        margin-bottom: 19px;
        border-radius: 16px;
    }

    .service-card h3 {
        margin-bottom: 13px;
        font-size: 1.32rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .dark-section .split {
        gap: 33px;
    }

    .dark-section .btn,
    .cta-card .btn {
        width: 100%;
    }

    .feature-row {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
        padding: 16px 0;
    }

    .feature-row strong {
        font-size: 0.94rem;
        line-height: 1.45;
    }

    .process-card {
        min-height: 0;
        padding: 22px;
    }

    .process-card h3 {
        margin-bottom: 0;
        font-size: 1.28rem;
    }

    .cta-section {
        padding-bottom: 68px;
    }

    .cta-card {
        gap: 23px;
        padding: 32px 24px;
        border-radius: 22px;
    }

    .page-hero {
        padding: 145px 0 75px;
    }

    .service-detail {
        grid-template-columns: 42px 1fr;
        gap: 15px;
        padding: 25px;
    }

    .service-detail .icon-3d {
        grid-column: 2;
    }

    .service-detail > div:nth-child(3) {
        grid-column: 1 / -1;
    }

    .circle-link {
        grid-column: 2;
    }

    .profile-art {
        height: 390px;
    }

    .monogram {
        font-size: 6rem;
    }

    .why-card,
    .form-panel {
        padding: 27px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .about-feature-wrap {
        padding: 55px 0;
    }

    .about-feature {
        border-radius: 18px;
    }

    .about-feature-photo {
        min-height: 430px;
    }

    .about-feature-copy {
        padding: 30px 24px;
    }

    .legal-symbol-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        padding: 12px;
    }

    .legal-symbol-row svg {
        width: 25px;
        height: 25px;
    }

    .square-btn {
        width: 100%;
    }

    .photo-caption {
        bottom: 18px;
        left: 20px;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .hero h1 {
        font-size: 2.38rem;
    }
}

/* ==========================================================
   SITE FOOTER — FINAL CLEAN VERSION
   ========================================================== */
.site-footer {
    background: #303030;
    color: #fff;
    padding: 46px 0 16px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 1.25fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

.site-footer .footer-brand-column {
    max-width: 390px;
}

.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
}

.site-footer .footer-logo img,
.site-footer .footer-logo .custom-logo {
    display: block;
    width: auto;
    height: 50px;
    max-width: 270px;
    object-fit: contain;
}

.site-footer .footer-logo strong {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

.site-footer .footer-description {
    margin: 0 0 20px;
    color: #fff;
    font-size: 0.94rem;
    line-height: 1.55;
}

.site-footer .footer-column h3 {
    margin: 0 0 14px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.site-footer .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .footer-links li {
    position: relative;
    margin: 0 0 6px;
    padding-left: 22px;
}

.site-footer .footer-links li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.site-footer .footer-links a {
    display: inline;
    margin: 0;
    color: #fff;
    font-size: 0.94rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.site-footer .footer-links a:hover,
.site-footer a.footer-contact-item:hover {
    color: var(--gold-2);
}

.site-footer .footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: 50%;
    background: #202020;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-footer .footer-social:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.site-footer .footer-contact {
    max-width: 470px;
}

.site-footer .footer-contact-item,
.site-footer a.footer-contact-item {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 0 0 12px;
    color: #fff;
    font-size: 0.94rem;
    line-height: 1.5;
}

.site-footer .footer-contact-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 22px;
    padding-top: 3px;
}

.site-footer .footer-contact-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.site-footer .footer-address {
    margin-top: 2px;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.7rem;
    line-height: 1.45;
}

@media (max-width: 980px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 44px;
    }

    .site-footer .footer-contact {
        grid-column: 1 / -1;
        max-width: 620px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 38px 0 16px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer .footer-contact {
        grid-column: auto;
        max-width: none;
    }

    .site-footer .footer-logo {
        margin-bottom: 12px;
    }

    .site-footer .footer-logo img,
    .site-footer .footer-logo .custom-logo {
        height: 44px;
        max-width: 225px;
    }

    .site-footer .footer-description,
    .site-footer .footer-links a,
    .site-footer .footer-contact-item,
    .site-footer a.footer-contact-item {
        font-size: 0.88rem;
    }

    .site-footer .footer-column h3 {
        margin-bottom: 12px;
        font-size: 1rem;
    }

    .site-footer .footer-contact-item,
    .site-footer a.footer-contact-item {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 10px;
    }

    .site-footer .footer-contact-icon {
        width: 20px;
    }

    .site-footer .footer-contact-icon svg {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-top: 24px;
        padding-top: 12px;
        text-align: left;
    }
}
