@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:wght@700;800;900&family=Aldrich&display=swap');

/* ═══════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
    --color-dark: #780000;
    --color-accent: #C1121F;
    --color-bg-warm: #FDF0D5;
    --color-structural: #003049;
    --color-soft-accent: #669BBC;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-tech: 'Aldrich', sans-serif;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

    /* spacing scale */
    --space-xs: 1rem;
    --space-sm: 2rem;
    --space-md: 4rem;
    --space-lg: 8rem;
    --space-xl: 12rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
}

body {
    background-color: var(--color-bg-warm);
    color: var(--color-structural);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.editorial-text {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(0, 48, 73, 0.98);
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(253, 240, 213, 0.1);
}

nav .nav-link,
nav .logo {
    color: var(--color-bg-warm);
}

nav.scrolled {
    background: rgba(0, 48, 73, 1);
    backdrop-filter: blur(15px);
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.nav-group {
    flex: 1;
    display: flex;
    gap: 3rem;
}

.nav-group.left {
    justify-content: flex-end;
    padding-right: 2rem;
}

.nav-group.right {
    justify-content: flex-start;
    padding-left: 2rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    position: relative;
    white-space: nowrap;
}

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

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

.logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--color-bg-warm);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-bg-warm);
    transition: var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-structural);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: var(--color-bg-warm);
}

/* ═══════════════════════════════════════════
   GENERAL LAYOUT
═══════════════════════════════════════════ */
main {
    padding: 0;
    display: block;
    width: 100%;
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
}

.btn-editorial {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-bg-warm);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-editorial:hover {
    background: var(--color-dark);
}

/* ═══════════════════════════════════════════
   IMAGE CONTAINER
═══════════════════════════════════════════ */
.img-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.img-container:hover img {
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════
   HERO SPLIT
═══════════════════════════════════════════ */
.hero-split {
    display: flex;
    height: 100vh;
    min-height: 700px;
    width: 100%;
}

.hero-left {
    flex: 1;
    background: var(--color-structural);
    color: var(--color-bg-warm);
    display: flex;
    align-items: center;
    padding: 0 8% 0 12%;
}

.hero-right {
    flex: 1;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    max-width: 500px;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
    background: var(--color-accent);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem 0;
}

.stat-item {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.stat-num {
    font-family: var(--font-tech);
    font-weight: 400;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════
   ASYMMETRIC GRID (HOME)
═══════════════════════════════════════════ */
.grid-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.grid-header h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.grid-header p {
    max-width: 500px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.grid-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.grid-item {
    position: relative;
    background: white;
    overflow: hidden;
}

.grid-item.large {
    height: 600px;
}

.grid-item.small {
    height: 290px;
}

.grid-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    z-index: 2;
}

.grid-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.grid-content p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.services-list {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.service-editorial-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 48, 73, 0.1);
    position: relative;
    gap: 3rem;
}

.service-info {
    flex: 1;
    padding-right: 4rem;
}

.service-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--color-accent);
    line-height: 0.8;
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.service-desc {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 2rem;
    color: rgba(0, 48, 73, 0.7);
}

.service-image {
    width: 500px;
    height: 350px;
    flex-shrink: 0;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   LOCATIONS PAGE
═══════════════════════════════════════════ */
.locations-grid {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--color-structural);
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.location-card:hover .location-img {
    opacity: 1;
    transform: scale(1.04);
}

.location-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    color: var(--color-bg-warm);
    z-index: 2;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.location-badge {
    background: var(--color-soft-accent);
    color: var(--color-structural);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.location-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-container {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.magazine-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    margin-bottom: 8rem;
}

.highlight-quote {
    grid-column: span 2;
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 48, 73, 0.1);
    border-bottom: 1px solid rgba(0, 48, 73, 0.1);
}

.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 50px);
    gap: 1.5rem;
}

.team-img {
    filter: grayscale(100%);
    transition: var(--transition);
}

.team-card:hover .team-img {
    filter: grayscale(0%);
}

/* ═══════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════ */
.blog-container {
    padding-top: 10rem;
    padding-bottom: var(--space-lg);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.featured-article {
    border-right: 1px solid rgba(0, 48, 73, 0.1);
    padding-right: 4rem;
}

.featured-article .img-container {
    height: 600px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-article .img-container {
    height: 250px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-img,
.sidebar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-category {
    color: var(--color-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.sidebar-article {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 48, 73, 0.1);
}

.sidebar-article:last-child {
    border: none;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-excerpt {
    font-size: 0.9rem;
    opacity: 0.7;
}

.read-more {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-block;
    margin-top: 1.5rem;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.read-more:hover {
    opacity: 0.75;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.contact-left {
    background: var(--color-structural);
    color: var(--color-bg-warm);
    padding: 10rem 8% 6rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-right {
    background: var(--color-bg-warm);
    padding: 10rem 10% 6rem 8%;
}

.contact-info-list {
    list-style: none;
    margin-top: 3rem;
}

.contact-info-list li {
    margin-bottom: 2.5rem;
}

.info-tag {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
    margin-bottom: 0.4rem;
}

.info-value {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.2;
}

.emergency-box {
    border-top: 1px solid rgba(253, 240, 213, 0.15);
    padding-top: 2.5rem;
    margin-top: 2rem;
}

.emergency-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.55;
    margin-bottom: 0.8rem;
    color: var(--color-accent);
}

.emergency-phone {
    font-family: var(--font-tech);
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--color-accent);
}

.minimal-form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 48, 73, 0.12);
    padding-bottom: 0.4rem;
}

.form-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-structural);
    padding: 0.4rem 0;
    outline: none;
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
}

.submit-container {
    margin-top: 3rem;
}

/* ═══════════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════════ */
.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item span:first-child {
    color: var(--color-soft-accent);
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   FLOATING CALL BUTTON
═══════════════════════════════════════════ */
.floating-call {
    font-family: var(--font-tech);
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    background: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.floating-call:hover {
    background: var(--color-dark);
    transform: translateY(-5px);
}

.floating-call i {
    font-style: normal;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
    background: var(--color-structural);
    color: var(--color-bg-warm);
    padding: 6rem 4rem 4rem;
    border-top: 1px solid rgba(253, 240, 213, 0.1);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid .logo {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-grid h4 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.footer-grid ul li {
    margin-bottom: 0.75rem;
}

.footer-grid ul li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 240, 213, 0.1);
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* Nav */
    nav {
        padding: 1.2rem 2rem;
    }

    .nav-group {
        gap: 1.5rem;
    }

    .nav-group.left {
        padding-right: 1rem;
    }

    .nav-group.right {
        padding-left: 1rem;
    }

    .nav-link {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Hero */
    .hero-split {
        flex-direction: column;
        height: auto;
        min-height: unset;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
        height: 55vh;
    }

    .hero-left {
        padding: 8rem 6% 4rem;
    }

    /* Grids */
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }

    .grid-item.large {
        height: 420px;
    }

    .grid-item.small {
        height: 260px;
    }

    .grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Stats */
    .stats-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Services */
    .service-editorial-item {
        flex-direction: column;
    }

    .service-info {
        padding-right: 0;
    }

    .service-image {
        width: 100%;
        height: 280px;
        margin-top: 2rem;
    }

    .services-list {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 8rem 2rem 4rem;
    }

    /* About */
    .magazine-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .highlight-quote {
        grid-column: span 1;
    }

    .about-container {
        padding: 8rem 2rem 4rem;
    }

    /* Blog */
    .blog-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .featured-article {
        border-right: none;
        border-bottom: 1px solid rgba(0, 48, 73, 0.1);
        padding-right: 0;
        padding-bottom: 4rem;
    }

    .featured-article .img-container {
        height: 420px;
    }

    /* Contact */
    .contact-split {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .contact-left {
        padding: 9rem 8% 4rem;
        justify-content: flex-start;
        gap: 3rem;
    }

    .contact-right {
        padding: 4rem 8% 6rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    footer {
        padding: 5rem 2rem 3rem;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Nav — show hamburger, hide links */
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-group {
        display: none;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero-left {
        padding: 7rem 5% 3rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Stats */
    .stats-strip {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border: none;
    }

    /* Services */
    .services-list {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 8rem;
    }

    .service-editorial-item {
        padding: 3.5rem 0;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-image {
        height: 220px;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        gap: 1.5rem;
    }

    .location-card {
        height: 380px;
    }

    /* About */
    .about-container {
        padding: 7rem 1.5rem 3rem;
    }

    .magazine-columns {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        margin-bottom: 4rem;
    }

    .magazine-columns .column p {
        text-align: left !important;
        font-size: 1.05rem !important;
        line-height: 1.6;
    }

    .highlight-quote {
        padding: 3rem 0;
    }

    .mosaic-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    /* Blog */
    .blog-container {
        padding: 7rem 1.5rem 3rem;
    }

    .featured-article .img-container {
        height: 280px;
    }

    .featured-title {
        font-size: 2.2rem;
    }

    .featured-excerpt {
        font-size: 1rem;
    }

    .sidebar-article .img-container {
        height: 200px;
    }

    /* Contact */
    .contact-left {
        padding: 7rem 5% 3rem;
    }

    .contact-right {
        padding: 3rem 5% 5rem;
    }

    .info-value {
        font-size: 1.2rem;
    }

    .emergency-phone {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    footer {
        padding: 4rem 1.5rem 3rem;
    }

    /* Floating button */
    .floating-call {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    /* General spacing */
    .section {
        padding: 6rem 1.5rem 4rem;
    }

    .editorial-container {
        padding: 0 1.5rem;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {

    .hero-title {
        font-size: 2rem;
    }

    .featured-title {
        font-size: 1.9rem;
    }

    .sidebar-title {
        font-size: 1.5rem;
    }

    .location-card {
        height: 320px;
    }

    .location-name {
        font-size: 1.5rem;
    }

    .contact-left,
    .contact-right {
        padding-left: 4%;
        padding-right: 4%;
    }

    .grid-item.large {
        height: 320px;
    }

    .grid-item.small {
        height: 220px;
    }

    .logo {
        font-size: 1rem;
    }
}

/* -------------------------------------------------------
   MOBILE NAVIGATION OVERRIDES (Final Fix)
   ------------------------------------------------------- */
@media (max-width: 1024px) {
    .nav-group {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 5001 !important;
        padding: 0;
        position: relative;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-bg-warm) !important;
        transition: 0.3s;
    }

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

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

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

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        width: 100%;
        padding: 0 1.5rem !important;
    }

    nav .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        z-index: 11000 !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        white-space: nowrap;
    }

    footer .logo {
        position: static !important;
        transform: none !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        display: block !important;
    }

    h1, h2, .editorial-text {
        font-size: clamp(2rem, 10vw, 3.5rem) !important;
        line-height: 1.1 !important;
        word-break: break-word;
    }

    .mobile-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #003049 !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 9000 !important;
        visibility: hidden;
        transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 2rem;
    }

    .mobile-menu.open {
        right: 0;
        visibility: visible;
    }

    .mobile-menu .nav-link {
        font-family: var(--font-display);
        font-size: 1.6rem;
        color: var(--color-bg-warm);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        text-align: center;
        width: 100%;
        padding: 0.5rem 0;
    }
}
/* Centering grid content on mobile */
@media (max-width: 768px) {
    .grid-content {
        left: 50% !important;
        bottom: 50% !important;
        transform: translate(-50%, 50%) !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
}

/* Footer mobile centering fix */
@media (max-width: 768px) {
    .footer-grid > div {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 3rem;
    }
    .footer-grid ul {
        padding: 0 !important;
        list-style: none !important;
    }
    .footer-grid h4 {
        margin-bottom: 1.5rem !important;
    }
}
