/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #111b30;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #b08d35;
    --cream: #f7f4ee;
    --cream-dark: #ede8dc;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #6b6b6b;
    --text-on-dark: #f0ebe0;
    --text-on-dark-muted: #b8b0a0;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===== UTILITY ===== */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

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

.btn--outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 39, 68, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__brand-mark {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav__brand-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.nav__brand-title {
    font-size: 0.6875rem;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.06em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__links a:not(.nav__cta) {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-on-dark-muted);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav__links a:not(.nav__cta):hover {
    color: var(--gold);
}

.nav__cta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--navy-dark) !important;
    background: var(--gold);
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--gold-light);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    display: block;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-overlay__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-overlay__links a {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    transition: var(--transition);
}

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

.nav-overlay__cta {
    font-family: var(--font-sans) !important;
    font-size: 1rem !important;
    color: var(--navy-dark) !important;
    background: var(--gold);
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero__bg-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 27, 48, 0.95) 0%,
        rgba(26, 39, 68, 0.88) 40%,
        rgba(26, 39, 68, 0.6) 100%
    );
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 2rem 80px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero__headline em {
    font-style: italic;
    color: var(--gold);
}

.hero__sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-on-dark-muted);
    max-width: 480px;
    margin-bottom: 2.25rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__aside {
    position: relative;
    height: 560px;
}

.hero__aside-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__aside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__aside-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-on-dark-muted);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== TRUST BAR ===== */
.trust {
    background: var(--white);
    border-bottom: 1px solid rgba(26, 39, 68, 0.06);
    padding: 0;
}

.trust__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.25rem 1.5rem;
    gap: 0.375rem;
}

.trust__value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
}

.trust__label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.trust__divider {
    width: 1px;
    background: rgba(26, 39, 68, 0.08);
    align-self: stretch;
}

/* ===== ABOUT ===== */
.about {
    padding: 7rem 2rem;
    background: var(--cream);
}

.about__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__left {
    max-width: 540px;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.about__credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about__credential {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about__cred-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.about__credential span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.4;
}

.about__right {
    position: relative;
}

.about__img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

/* ===== SERVICES ===== */
.services {
    padding: 7rem 2rem;
    background: var(--navy);
}

.services__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.services__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.services__header .section-heading {
    color: var(--white);
}

.services__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-on-dark-muted);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-on-dark-muted);
}

/* ===== APPROACH ===== */
.approach {
    padding: 7rem 2rem;
    background: var(--cream);
}

.approach__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.approach__left {
    max-width: 520px;
}

.approach__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

.approach__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach__list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.approach__num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    padding-top: 0.125rem;
    flex-shrink: 0;
    min-width: 2.5rem;
}

.approach__list div strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.approach__list div span {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.approach__right {
    position: relative;
}

.approach__img-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
}

.approach__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.approach__img-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.approach__img-small {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.approach__img-small img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.approach__img-accent-block {
    height: 24px;
    background: var(--gold);
    border-radius: var(--radius);
    opacity: 0.3;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--navy-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-banner__inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-banner__heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.cta-banner__body {
    font-size: 1rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner__actions .btn svg {
    width: 18px;
    height: 18px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 7rem 2rem;
    background: var(--white);
}

.contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact__left {
    max-width: 480px;
}

.contact__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact__detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact__detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.contact__detail span,
.contact__detail a {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--gold-dark);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form__field label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.contact-form__required {
    color: var(--gold-dark);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid rgba(26, 39, 68, 0.12);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--text-light);
}

.contact-form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form__privacy {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

.contact-form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-form__success svg {
    width: 32px;
    height: 32px;
    color: var(--gold-dark);
}

.contact-form__success strong {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--navy);
}

.contact-form__success span {
    font-size: 0.875rem;
    color: var(--text-mid);
}

/* ===== MAP ===== */
.map-section {
    background: var(--cream-dark);
}

.map-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.map-section__link {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    box-shadow: var(--shadow-md);
}

.map-section__img-wrap {
    position: relative;
}

.map-section__img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--white);
    transition: var(--transition);
}

.map-section__overlay svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.map-section__overlay span {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.map-section__link:hover .map-section__overlay {
    background: rgba(26, 39, 68, 0.75);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 4rem 2rem 0;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__brand-mark {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.footer__brand-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}

.footer__brand-sub {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
    margin-top: 0.125rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    justify-content: center;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer__contact-item a {
    transition: var(--transition);
}

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

.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
}

.footer__disclaimer {
    font-size: 0.75rem !important;
    color: rgba(184, 176, 160, 0.6) !important;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__aside {
        display: none;
    }

    .hero__headline {
        max-width: 100%;
    }

    .about__inner,
    .approach__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__left,
    .approach__left,
    .contact__left {
        max-width: 100%;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust__divider {
        display: none;
    }

    .trust__item:nth-child(2) .trust__divider {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero__inner {
        padding: 4rem 1.5rem 3rem;
    }

    .hero__headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero__scroll {
        display: none;
    }

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

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

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .trust__inner {
        grid-template-columns: 1fr;
    }

    .trust__item {
        padding: 1.5rem 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

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