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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: "Garamond", "Times New Roman", serif;
    color: #1a2441;
}

body.nav-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ACCESSIBILITY */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 2000;
    padding: 12px 20px;
    background: #1a2441;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.skip-link:focus {
    top: 16px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #c9a46c;
    outline-offset: 3px;
}

h2 {
    font-size: 42px;
    font-weight: 400;
    color: #1a2441;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c9a46c;
    margin: 18px auto 0;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url('img/header_desk.jpeg') center/cover no-repeat;
}

@media (max-width: 768px) {
    .hero {
        background: url('img/header_mob.jpeg') center/cover no-repeat;
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* NAV */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 110px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 0 240px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: center;
    text-transform: uppercase;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 60px;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a,
.nav-right a {
    position: relative;
    text-decoration: none;
    color: #1a2441;
    letter-spacing: 4px;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #c9a46c;
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #c9a46c;
}

.nav-logo {
    justify-self: center;
    line-height: 0;
}

.nav-logo img {
    width: 100px;
    display: block;
}

/* HAMBURGER – hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #1a2441;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
    display: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
    html {
        scroll-padding-top: 90px;
    }

    .navbar {
        padding: 0 60px;
        height: 90px;
    }

    .nav-left,
    .nav-right {
        gap: 30px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .nav-logo img {
        width: 80px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
        height: 70px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-logo {
        justify-self: start;
    }

    .nav-logo img {
        width: 70px;
    }

    .nav-toggle {
        display: flex;
        justify-self: end;
        position: relative;
        z-index: 1001;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        position: fixed;
        inset: 70px 0 0;
        background: rgba(255, 255, 255, 0.98);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #1a2441;
        font-size: 18px;
        letter-spacing: 4px;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .mobile-nav a:hover,
    .mobile-nav a:focus-visible {
        color: #c9a46c;
    }

    .mobile-nav-reserve {
        margin-top: 16px;
        padding: 14px 28px;
        border: 1px solid #c9a46c;
        color: #c9a46c !important;
        font-family: Arial, sans-serif;
        font-size: 13px !important;
        letter-spacing: 3px !important;
    }

    .mobile-nav-reserve:hover {
        background: #c9a46c;
        color: #ffffff !important;
    }
}

/* HERO CONTENT */
.hero-content {
    position: absolute;
    z-index: 2;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 36px;
    background: white;
    border: 1px solid #c9a46c;
    color: #c9a46c;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: Arial, sans-serif;
}

.hero-btn:hover {
    background: #c9a46c;
    color: white;
    transform: translateY(-2px);
}

.hero-btn:active {
    transform: translateY(0);
}

/* SECTIONS */
section {
    position: relative;
    background: white;
}

/* GRID */
.grid-section {
    padding: 80px 10%;
    background: #f5f5f5;
    min-height: 100vh;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    padding: 40px;
}

.grid-item {
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.pdf-btn {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #c9a46c;
    border: 1px solid #c9a46c;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pdf-btn:hover {
    background: #c9a46c;
    color: white;
    transform: translateY(-2px);
}

.pdf-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .grid-section {
        padding: 60px 24px 40px;
        min-height: auto;
    }

    .grid {
        grid-template-columns: 1fr;
        padding: 24px 0 0;
        gap: 16px;
    }

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

    .tablet-hidden {
        display: none;
    }

    .button-wrapper {
        margin-top: 24px;
    }
}

/* CARDS */
.cards-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 100px 10%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)),
        url("img/um_background.jpg");
    background-size: cover;
    background-position: center;
}

.card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 5px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.card-text {
    padding: 35px;
    text-align: center;
}

.card-text h2 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-text h2::after {
    width: 50px;
    margin-top: 14px;
}

.card-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cards-section {
        grid-template-columns: 1fr;
        padding: 70px 20px;
        gap: 30px;
    }

    .card img {
        height: 240px;
    }

    .card-text {
        padding: 28px 24px;
    }

    .card-text p {
        max-width: 100%;
    }
}

/* LOCATION */
.location-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #f7f3ee 0%, #ffffff 100%);
}

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

.section-head .eyebrow {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a46c;
    display: block;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 42px;
    font-weight: 300;
    margin: 0;
}

.map-wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.map-box {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #e6dccf;
    background: #f8f6f2;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-link {
    margin-top: 16px;
}

.map-link a {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a46c;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.map-link a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .section-head h2 {
        font-size: 32px;
    }

    .location-section {
        padding: 60px 16px;
    }
}

/* FOOTER */
.footer {
    background: #171717;
    color: #ffffff;
    padding: 100px 40px 35px;
    border-top: 2px solid #c9a46c;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-box h3 {
    margin-bottom: 24px;
    color: #c9a46c;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-box p {
    color: #c5c5c5;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.footer-box .contact-line a {
    color: #c5c5c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-box .contact-line a:hover {
    color: #c9a46c;
}

.contact-line i {
    color: #c9a46c;
    width: 20px;
    margin-right: 8px;
}

.google-link {
    display: inline-block;
    margin-top: 10px;
    color: #c9a46c;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.google-link:hover {
    color: #ffffff;
}

.social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social a {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #d9d9d9;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.35s ease;
}

.social a:hover {
    background: #c9a46c;
    border-color: #c9a46c;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
}

.footer-bottom p {
    color: #777777;
    font-size: 13px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer {
        padding: 70px 24px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .social {
        justify-content: center;
    }

    .contact-line i {
        margin-right: 6px;
    }
}
