/* ============================================================
   ELITE AFFAIRS — MAIN STYLESHEET
   ============================================================ */

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
    --gold:         #C9A84C;
    --gold-light:   #E8CC80;
    --gold-dark:    #9E7A2E;
    --navy:         #0D1B2A;
    --navy-mid:     #1A2F45;
    --navy-light:   #2A4460;
    --off-white:    #F8F5F0;
    --warm-white:   #FDFAF6;
    --cream:        #F2EDE4;
    --text-dark:    #1A1A1A;
    --text-mid:     #4A4A4A;
    --text-light:   #8A8A8A;
    --white:        #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Barlow Condensed', 'Arial Narrow', sans-serif;

    --max-width:    1200px;
    --gutter:       clamp(1.5rem, 5vw, 4rem);

    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
    --transition:   0.4s var(--ease-out);
}

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

html {
    font-size: calc(0.875rem + 0.25vw);
    scroll-behavior: auto; /* Lenis handles this */
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ------------------------------------------------------------
   3. PAGE TRANSITION OVERLAY
   ------------------------------------------------------------ */
#page-transition {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    transform-origin: bottom;
    pointer-events: none;
}

/* ------------------------------------------------------------
   4. HEADER & NAV
   ------------------------------------------------------------ */

/* Account for WordPress admin bar */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.75rem var(--gutter);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.8s var(--ease-in-out), padding 0.8s var(--ease-in-out), box-shadow 0.8s var(--ease-in-out), border-color 0.8s var(--ease-in-out), backdrop-filter 0.8s var(--ease-in-out);
}

.site-header.scrolled {
    background: rgba(13, 27, 42, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.6rem var(--gutter);
    border-bottom-color: rgba(201, 168, 76, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    width: 100px;
    height: auto;
    transition: opacity 0.8s var(--ease-in-out), width 0.8s var(--ease-in-out);
}

.site-header.scrolled .site-logo img {
    width: 72px;
}

.site-logo:hover img {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    height: 100%;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    letter-spacing: 0.12em;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

/* ------------------------------------------------------------
   5. CONTAINER & LAYOUT
   ------------------------------------------------------------ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) 0;
    overflow: hidden;
}

.section--dark {
    background: var(--navy);
    color: var(--off-white);
}

.section--tinted {
    background: var(--cream);
}

.section-grid {
    display: grid;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.section-grid--welcome,
.section-grid--additional {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.section-grid--property {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
}

.section-grid--welcome .image-frame {
    aspect-ratio: 2/3;
}

.section-grid--story {
    grid-template-columns: 1fr 1.2fr;
}

.section-grid--business {
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
}

.section-grid--business .section-image {
    height: 100%;
}

.section-grid--business .section-image .image-frame {
    height: 100%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section--dark .section-label {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section--dark .section-title {
    color: var(--white);
}

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

.section--dark .section-title em {
    color: var(--gold-light);
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section--dark .section-intro {
    color: rgba(248, 245, 240, 0.7);
}

.section-sub {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.section--dark .section-sub {
    color: rgba(248, 245, 240, 0.5);
}

.section-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-body p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.section--dark .section-body p {
    color: rgba(248, 245, 240, 0.75);
}

.section-body strong {
    font-weight: 500;
    color: var(--text-dark);
}

.section--dark .section-body strong {
    color: var(--white);
}

.text-accent {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--navy) !important;
    line-height: 1.6;
    border-left: 2px solid var(--gold);
    padding-left: 1.25rem;
    margin-top: 0.5rem !important;
}

.text-small {
    font-size: 0.8rem !important;
}

.text-muted {
    color: var(--text-light) !important;
}

.section--dark .text-muted {
    color: rgba(248, 245, 240, 0.4) !important;
}

.section-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    cursor: pointer;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4), 0 0 10px rgba(201, 168, 76, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    margin-left: 1rem;
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

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

.section--dark .btn--outline:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4), 0 0 10px rgba(201, 168, 76, 0.25);
}

.image-frame--banner {
    width: 100%;
    aspect-ratio: 16/7;
    margin: 1.5rem 0;
}

.image-frame--banner img {
    object-position: center 30%;
}

.section--welcome .section-text .btn--outline {
    margin-left: 0;
    margin-top: 20px;
}

.section--welcome .section-text .btn--outline:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.section--additional .section-text .btn--outline {
    margin-left: 0;
    margin-top: 20px;
}

.section--additional .section-text .btn--outline:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.section--property {
    padding-left: 0;
    padding-right: 0;
}

.section--property .section-text .btn--outline {
    margin-left: 0;
    margin-top: 20px;
}

.section--property .section-text .btn--outline:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.section--business .section-text .btn--gold {
    margin-left: 0;
    margin-top: 20px;
}

.section--business .section-text .btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

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

.btn--gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4), 0 0 10px rgba(201, 168, 76, 0.25);
}

/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */
.section--hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: var(--navy);
    overflow: hidden;
}

.section--hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.72) 35%, rgba(13, 27, 42, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.65;
    will-change: transform;
}

.hero-person-wrap {
    position: absolute;
    top: 140px;
    bottom: 0;
    right: 8%;
    z-index: 2;
    opacity: 0;
    transform: translateX(80px);
    pointer-events: none;
}

.hero-person {
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
    object-fit: contain;
    object-position: bottom;
    transform: scaleX(-1);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding-top: clamp(7rem, 14vw, 11rem);
    padding-bottom: 4rem;
    margin-left: max(var(--gutter), calc((100vw - var(--max-width)) / 2));
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

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

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

/* ------------------------------------------------------------
   8. IMAGE FRAMES
   ------------------------------------------------------------ */
.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 1;
    pointer-events: none;
}

.image-frame::after,
.property-mosaic__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 35%, rgba(13, 27, 42, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-frame--portrait {
    aspect-ratio: 3/4;
}

/* Composite frame — background photo + Edyta no-bg overlay */
.image-frame--composite {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.image-frame--composite .composite-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out);
}

.image-frame--composite:hover .composite-bg {
    transform: scale(1.03);
}

.image-frame--composite .composite-person {
    position: absolute;
    bottom: 0;
    right: -10px;
    height: 92%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    transform: translateX(60px);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

/* Immigration cinematic banner */
.section--immigration {
    background-image: url('../images/consultation-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed;
}

.section--immigration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(242, 237, 228, 0.82);
    z-index: 0;
    pointer-events: none;
}

.section--immigration .container {
    position: relative;
    z-index: 1;
}

/* Property mosaic */
.property-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 8px;
    height: 100%;
    min-height: 400px;
}

.property-mosaic__main {
    grid-column: 1;
    grid-row: 1 / 4;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}

.property-mosaic__main::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 1;
    pointer-events: none;
}

.property-mosaic__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out);
}

.property-mosaic__main:hover img {
    transform: scale(1.04);
}

.property-mosaic__stack {
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-mosaic__item {
    flex: 1;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}

.property-mosaic__item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 1;
    pointer-events: none;
}

.property-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s var(--ease-out);
}

.property-mosaic__item:hover img {
    transform: scale(1.04);
}

/* Tune each tile's focal point */
.property-mosaic__item:nth-child(1) img { object-position: center 40%; }
.property-mosaic__item:nth-child(2) img { object-position: center 60%; }
.property-mosaic__item:nth-child(3) img { object-position: center top; }

/* Golden overlay on pool tile */
.property-mosaic__item:nth-child(3)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.22);
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
}


/* ------------------------------------------------------------
   9. STORY QUOTE
   ------------------------------------------------------------ */
.story-quote {
    margin-top: -3rem;
    margin-left: 2rem;
    position: relative;
    z-index: 2;
}

.story-quote blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--white);
    background: var(--navy-mid);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 1.75rem;
    line-height: 1.6;
}

/* ------------------------------------------------------------
   10. SERVICE CARDS
   ------------------------------------------------------------ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.service-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
    transition: background var(--transition), transform var(--transition);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: transparent;
    transition: background var(--transition);
}

.service-card:hover {
    background: var(--cream);
}

.service-card:hover::after {
    background: var(--gold);
}

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

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

.service-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

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

/* ------------------------------------------------------------
   11. SERVICES LIST (Additional)
   ------------------------------------------------------------ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: padding-left var(--transition);
}

.service-list-item:first-child {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.service-list-item:hover {
    padding-left: 0.5rem;
}

.service-list-item__dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.6rem;
}

.service-list-item h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.service-list-item p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ------------------------------------------------------------
   12. FEATURE LIST
   ------------------------------------------------------------ */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.feature-list li {
    font-size: 0.9rem;
    color: var(--text-mid);
    padding-left: 1.25rem;
    position: relative;
}

.section--dark .feature-list li {
    color: rgba(248, 245, 240, 0.7);
}

.section--dark .why-item h4 {
    color: var(--white);
}

.section--dark .why-item p {
    color: rgba(248, 245, 240, 0.7);
}

.section--dark .service-list-item h4 {
    color: var(--white);
}

.section--dark .service-list-item p {
    color: rgba(248, 245, 240, 0.65);
}

.feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ------------------------------------------------------------
   13. WHY CHOOSE
   ------------------------------------------------------------ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.why-item__check {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1.5;
}

.why-item h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.why-item p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.why-closing {
    text-align: center;
    max-width: 650px;
    margin: 4rem auto 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ------------------------------------------------------------
   14. TESTIMONIALS
   ------------------------------------------------------------ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.08);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.testimonial-card__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-card__author {
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding-top: 1rem;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
}

/* ------------------------------------------------------------
   15. CONTACT / CTA
   ------------------------------------------------------------ */
.section--contact {
    background: var(--navy);
    color: var(--off-white);
    text-align: center;
}

.section--contact .section-title {
    color: var(--white);
}

.section--contact .section-title em {
    color: var(--gold-light);
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 1rem;
    color: rgba(248, 245, 240, 0.65);
    line-height: 1.8;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-actions .btn {
    margin-left: 0;
}

.contact-actions .btn--outline {
    background: transparent;
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.4);
}

.contact-actions .btn--outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------ */
.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    color: rgba(248, 245, 240, 0.5);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 3rem;
    padding: 4rem var(--gutter);
    align-items: stretch;
}

.footer-logo {
    width: 80px;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: rgba(248, 245, 240, 0.8);
    margin-bottom: 0.35rem;
}

.footer-sub {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: rgba(248, 245, 240, 0.35);
    text-transform: uppercase;
}

.footer-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(248, 245, 240, 0.3);
    margin-top: 1.25rem;
    line-height: 1.7;
    max-width: 360px;
}

.footer-col-title {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-hours__day {
    font-size: 0.82rem;
    color: rgba(248, 245, 240, 0.65);
    margin-top: 0.6rem;
}

.footer-hours__day:first-child {
    margin-top: 0;
}

.footer-hours__time {
    font-size: 0.82rem;
    color: rgba(248, 245, 240, 0.4);
}

.footer-hours__closed {
    font-size: 0.82rem;
    color: rgba(248, 245, 240, 0.35);
    margin-top: 0.6rem;
    font-style: italic;
}

.footer-col--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    justify-content: space-between;
}

.footer-contact-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: rgba(248, 245, 240, 0.8);
    margin-bottom: 0.75rem;
}

.footer-contact-link {
    display: block;
    font-size: 0.85rem;
    color: rgba(248, 245, 240, 0.55);
    transition: color var(--transition);
    margin-bottom: 0.4rem;
}

.footer-contact-link:hover {
    color: var(--gold);
}

.footer-cta {
    margin-top: 0;
    margin-left: 0;
    font-size: 0.75rem;
    padding: 0.6rem 1.25rem;
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.4);
    background: transparent;
}

.footer-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem var(--gutter);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-copy {
    text-align: center;
}

.footer-credit {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248, 245, 240, 0.3);
}

.footer-credit a {
    color: rgba(248, 245, 240, 0.45);
    transition: color var(--transition);
}

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

.footer-legal {
    text-align: right;
}

.footer-copy,
.footer-legal {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-legal {
    color: var(--gold);
    opacity: 0.5;
}

.footer-legal a {
    color: var(--gold);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* ------------------------------------------------------------
   17. CONSULTATION MODAL
   ------------------------------------------------------------ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-box {
    background: var(--warm-white);
    max-width: 520px;
    width: 100%;
    padding: 3rem;
    position: relative;
    border-top: 3px solid var(--gold);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.modal-close:hover {
    color: var(--navy);
}

.modal-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.modal-title em {
    color: var(--gold-dark);
}

.modal-sub {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 1.75rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid rgba(13, 27, 42, 0.15);
    padding: 0.7rem 1rem;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

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

.modal-submit {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}

/* ------------------------------------------------------------
   18. SCROLL ANIMATIONS — INITIAL STATE
   ------------------------------------------------------------ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

/* ------------------------------------------------------------
   18. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .section-grid--welcome,
    .section-grid--story,
    .section-grid--additional,
    .section-grid--property,
    .section-grid--business {
        grid-template-columns: 1fr;
    }

    .section-grid--story .section-image,
    .section-grid--business .section-text {
        order: -1;
    }

    .story-quote {
        margin-top: -2rem;
        margin-left: 1rem;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-col--contact {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.25rem;
    }

    .footer-tagline {
        font-size: 1.1rem;
    }

    .footer-col-title {
        font-size: 0.8rem;
    }

    .footer-hours__day,
    .footer-hours__time,
    .footer-hours__closed,
    .footer-contact-link {
        font-size: 1rem;
    }

    .footer-contact-name {
        font-size: 1.1rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.4rem;
    }

    .footer-legal {
        text-align: center;
    }
}

/* Mobile nav panel & backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(3px);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.is-visible {
    pointer-events: auto;
}

.mobile-nav-panel {
    display: none;
}

.mobile-nav-backdrop.is-visible {
    opacity: 1;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: var(--navy);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-nav-panel.is-open {
    transform: translateX(0);
}

.mobile-nav-close {
    align-self: flex-end;
    font-size: 1.75rem;
    color: rgba(248, 245, 240, 0.5);
    line-height: 1;
    margin-bottom: 2.5rem;
    transition: color var(--transition);
}

.mobile-nav-close:hover {
    color: var(--gold);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: rgba(248, 245, 240, 0.85);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: color var(--transition);
    opacity: 0;
    transform: translateX(20px);
}

.mobile-nav-panel.is-open .mobile-nav-link:nth-child(1) { opacity: 1; transform: translateX(0); transition: opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease, color var(--transition); }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(2) { opacity: 1; transform: translateX(0); transition: opacity 0.4s 0.15s ease, transform 0.4s 0.15s ease, color var(--transition); }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(3) { opacity: 1; transform: translateX(0); transition: opacity 0.4s 0.2s ease, transform 0.4s 0.2s ease, color var(--transition); }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(4) { opacity: 1; transform: translateX(0); transition: opacity 0.4s 0.25s ease, transform 0.4s 0.25s ease, color var(--transition); }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(5) { opacity: 1; transform: translateX(0); transition: opacity 0.4s 0.3s ease, transform 0.4s 0.3s ease, color var(--transition); }

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-footer .btn--primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
    padding: 0.85rem 1rem;
    color: var(--navy);
}

.mobile-nav-footer .btn--primary:hover {
    color: var(--white);
}

.mobile-nav-copy {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(248, 245, 240, 0.25);
    text-align: center;
}

.mobile-nav-copy a {
    color: rgba(248, 245, 240, 0.4);
    transition: color var(--transition);
}

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

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

    .mobile-nav-backdrop {
        display: block;
    }

    .mobile-nav-panel {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        z-index: 100;
    }

    .nav-toggle.is-active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

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

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .hero-sub-break {
        display: block;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-person-wrap {
        top: auto;
        bottom: 0;
        right: -50px;
        width: 80vw;
        max-width: 400px;
    }

    .hero-person {
        height: auto;
        width: 100%;
        object-position: bottom;
    }

    .contact-actions {
        flex-direction: column;
    }

    .btn--outline {
        margin-left: 0;
    }
}
