/* ------------------------- */
/* RESET */
/* ------------------------- */

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

/* ------------------------- */
/* BODY */
/* ------------------------- */

body {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    color: white;
    background: #111;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.page-loaded {
    opacity: 1;
}

body.page-leaving {
    opacity: 0;
}

body.modal-open {
    overflow: hidden;
}

/* ------------------------- */
/* HERO */
/* ------------------------- */

.hero {
    min-height: 100vh;
    margin-left: 0;
    transition: margin-left 0.4s ease;

    background-image: url("../images/landing.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* ------------------------- */
/* HERO CONTENT */
/* ------------------------- */

.hero-content {
    position: relative;
    z-index: 2;

    top: 42vh;
    left: 7%;

    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}

.gold-line {
    width: 42px;
    height: 2px;
    background: #c8a85b;
    margin-bottom: 28px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 36px;
}

.button {
    display: inline-block;

    padding: 16px 32px;

    border: 1px solid rgba(255,255,255,0.7);

    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;

    transition: 0.25s ease;
}

.button:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.home-policy-links {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 2;

    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;

    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 8pt;
}

.home-policy-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.home-policy-links a:hover {
    opacity: 0.7;
}

/* ------------------------- */
/* PAGE TITLE */
/* ------------------------- */

.page-container {
    min-height: 100vh;
    margin-left: 0;
    transition: margin-left 0.4s ease;
    
    background: #111;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    position: relative;
    z-index: 2;

    text-align: center;

    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 300;
    line-height: 1.6;
}

/* ------------------------- */
/* POLICY PAGES */
/* ------------------------- */

.policy-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 820px;

    padding: 80px 40px;

    color: white;
    text-align: left;
}

.policy-content h1,
.policy-content h2 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 14pt;
    font-weight: bold;
    margin-bottom: 24px;
}

.policy-content h2 {
    margin-top: 40px;
}

.policy-content p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 12pt;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content a {
    color: #c8a85b;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.policy-content a:hover {
    opacity: 0.7;
}

/* ------------------------- */
/* DESIGN PRINCIPLES PAGE */
/* ------------------------- */

.principles-page {
    align-items: center;
    justify-content: center;
}

.principles-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1200px;

    padding: 80px 40px;
    color: white;
}

.principles-intro {
    max-width: 900px;
    margin-bottom: 56px;
}

.principles-intro h1 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.principles-intro p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}

.principle-item h2 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: bold;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.principle-item p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    line-height: 1.75;
    margin: 0;
}

/* ------------------------- */
/* ABOUT PAGE */
/* ------------------------- */

.about-content {
    position: relative;
    z-index: 2;
    
    width: 33.33%;
    
    padding: 60px 40px;
    padding-left: 60px;
    
    text-align: left;
    line-height: 1.8;
    color: white;
}

.about-content h2 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.about-content p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    margin-bottom: 16px;
}

.profile-image {
    position: absolute;
    top: 60px;
    right: calc(40px + 2.5vw);
    z-index: 2;
    
    width: 25%;
    height: auto;
    
    object-fit: cover;
}

/* ------------------------- */
/* PORTFOLIO PAGE */
/* ------------------------- */

.portfolio-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1100px;

    padding: 60px 40px;
}

.portfolio-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* ------------------------- */
/* SERVICES PAGE */
/* ------------------------- */

.services-content {
    position: relative;
    z-index: 2;
    
    width: 66.66%;
    
    padding: 60px 40px;
    padding-left: 60px;
    
    text-align: left;
    line-height: 1.8;
    color: white;
}

.services-content h2 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.services-intro {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    margin-bottom: 32px;
}

.services-panels {
    margin-top: 32px;
}

.service-panel {
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-header {
    background: none;
    border: none;
    color: white;
    
    width: 100%;
    padding: 16px 0;
    
    display: flex;
    align-items: center;
    gap: 12px;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    
    cursor: pointer;
    
    transition: opacity 0.2s ease;
}

.panel-header:hover {
    opacity: 0.8;
}

.panel-arrow {
    display: inline-block;
    width: 12px;
    font-size: 0.65rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.service-panel.active .panel-arrow {
    transform: rotate(90deg);
}

.panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.service-panel.active .panel-content {
    max-height: 360px;
    padding: 0 0 16px 24px;
}

.panel-content p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    margin: 0;
}

/* ------------------------- */
/* PROCESS PAGE */
/* ------------------------- */

.process-wrapper {
    position: relative;
    z-index: 2;
    
    width: 90%;
    max-width: 1200px;
    
    padding: 60px 40px;
    
    text-align: left;
    line-height: 1.8;
    color: white;
}

.process-intro {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.process-intro h2 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.process-intro p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.process-intro p:last-child {
    margin-bottom: 0;
}

.process-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
    
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.design-philosophy h2 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 24px;
    margin-top: 0;
}

.design-philosophy > p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    
    margin-top: 40px;
}

.philosophy-item h3 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.philosophy-item p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    margin: 0;
}

/* ------------------------- */
/* JOURNAL PAGE */
/* ------------------------- */

.journal-content {
    position: relative;
    z-index: 2;
    
    width: 90%;
    max-width: 1200px;
    
    padding: 60px 40px;
    padding-left: 60px;
    
    text-align: left;
    color: white;
    
    animation: fadeIn 0.6s ease;
}

.journal-header h2 {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 24px;
    margin-top: 0;
}

.journal-header p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    margin-bottom: 48px;
    opacity: 0.9;
}

.journal-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid rgba(200, 168, 91, 0.5);
    color: white;
    
    padding: 8px 16px;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #c8a85b;
    color: #c8a85b;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.journal-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(200, 168, 91, 0.2);
    color: white;
    text-decoration: none;
    
    display: flex;
    flex-direction: column;
    min-height: 430px;
    
    overflow: hidden;
    
    animation: cardFadeIn 0.7s ease both;
    cursor: default;
    transition: all 0.4s ease;
}

.journal-card[href] {
    cursor: pointer;
}

.journal-card:hover {
    transform: translateY(-8px);
    border-color: #c8a85b;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.journal-card:nth-child(2) {
    animation-delay: 0.04s;
}

.journal-card:nth-child(3) {
    animation-delay: 0.08s;
}

.journal-card:nth-child(4) {
    animation-delay: 0.12s;
}

.journal-card:nth-child(5) {
    animation-delay: 0.16s;
}

.journal-card:nth-child(6) {
    animation-delay: 0.2s;
}

.journal-card:nth-child(7) {
    animation-delay: 0.24s;
}

.journal-card:nth-child(8) {
    animation-delay: 0.28s;
}

.journal-card:nth-child(9) {
    animation-delay: 0.32s;
}

.journal-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.8), rgba(30, 30, 30, 0.8));
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    padding: 24px;
    flex: 0 0 auto;
}

.journal-card-image img,
.article-hero-image img,
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journal-card-content {
    padding: 24px;
    
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.journal-card-date {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c8a85b;
    margin-bottom: 12px;
}

.journal-card-title {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.3;
}

.journal-card-excerpt {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    flex: 1;
    
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.7;
}

.journal-card-link {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    color: #c8a85b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
    
    transition: opacity 0.3s ease;
}

.journal-card-link:hover {
    opacity: 0.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------- */
/* JOURNAL ARTICLE PAGE */
/* ------------------------- */

.article-container {
    position: relative;
    z-index: 2;
    
    width: 100%;
    max-width: 820px;
    
    padding: 60px 60px;
    border: 1px solid rgba(200, 168, 91, 0.45);
    
    text-align: left;
    color: white;
    
    animation: fadeIn 0.6s ease;
}

.article-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.article-image-grid .article-image {
    aspect-ratio: 4 / 3;
    background: none;
    margin: 0;
    padding: 0;
}

.article-image-feature {
    grid-row: auto;
}

.article-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.8), rgba(30, 30, 30, 0.8));
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 32px;
    
    margin-bottom: 48px;
}

.article-header {
    margin-bottom: 48px;
}

.article-meta {
    display: flex;
    gap: 24px;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c8a85b;
    
    margin-bottom: 24px;
}

.article-title {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.article-body {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 48px;
}

.article-body p {
    margin-bottom: 24px;
}

.article-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.8), rgba(30, 30, 30, 0.8));
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 24px;
    
    margin: 48px 0;
    overflow: hidden;
}

.back-to-journal {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    color: #c8a85b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    
    display: inline-block;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(200, 168, 91, 0.2);
    
    transition: opacity 0.3s ease;
}

.back-to-journal:hover {
    opacity: 0.7;
}

/* ------------------------- */
/* RESPONSIVE */
/* ------------------------- */

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

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

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

    .page-container:has(.about-content) {
        align-items: flex-start;
        flex-direction: column;
        overflow-x: hidden;
    }

    .about-content {
        width: 100%;
        padding: 72px 28px 32px;
        line-height: 1.95;
    }

    .about-content h2 {
        margin-bottom: 28px;
    }

    .about-content p {
        margin-bottom: 20px;
    }

    .profile-image {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 56px);
        max-width: 360px;
        margin: 0 auto 48px;
    }

    .principles-content {
        width: 100%;
        padding: 64px 28px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .article-container {
        padding: 40px 24px;
    }

    .article-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .article-image-feature {
        grid-row: auto;
    }
}

/* ------------------------- */
/* CONTACT PAGE */
/* ------------------------- */

.contact-content {
    position: relative;
    z-index: 2;
    
    width: 90%;
    max-width: 1000px;
    
    padding: 60px 40px;
    padding-left: 60px;
    
    text-align: left;
    color: white;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 72px;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
}

.contact-intro {
    width: 100%;
    max-width: none;
    margin: -32px auto 48px;

    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.8rem;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.info-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    min-width: 0;
}

.info-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(200, 168, 91, 0.45);
    color: #c8a85b;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    font-size: 0.7rem;
    font-weight: bold;
    line-height: 1;
}

.info-label {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
}

.info-value {
    color: #c8a85b;
    font-size: 0.85rem;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: opacity 0.25s ease;
}

.info-value:hover {
    opacity: 0.75;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.enquiry-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(200, 168, 91, 0.2);
    
    padding: 32px;
    
    text-align: left;
    color: white;
    width: 100%;
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    
    cursor: pointer;
    transition: all 0.4s ease;
}

.enquiry-card:focus-visible,
.modal-close:focus-visible,
.submit-btn:focus-visible {
    outline: 1px solid #c8a85b;
    outline-offset: 4px;
}

.enquiry-card:hover {
    transform: translateY(-8px);
    border-color: #c8a85b;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.card-label {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #c8a85b;
    margin-bottom: 8px;
}

.card-title {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.35;
    margin-bottom: 16px;
}

.enquiry-card p {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ------------------------- */
/* CONTACT MODAL */
/* ------------------------- */

.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background: rgba(0, 0, 0, 0.8);
    padding: 24px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    z-index: 100;
    
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid rgba(200, 168, 91, 0.3);
    
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    
    padding: 48px 40px;
    
    position: relative;
    
    transform: translateY(24px);
    overflow-y: auto;
    transition: transform 0.4s ease;
}

.contact-modal.active .modal-content {
    animation: slideUp 0.4s ease;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    
    background: none;
    border: none;
    color: white;
    
    font-size: 0;
    cursor: pointer;
    
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 0.6;
}

.modal-title {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 32px;
    margin-top: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 168, 91, 0.3);
    color: white;
    
    padding: 12px 16px;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    
    transition: border-color 0.3s ease;
}

.form-group input[readonly] {
    color: #c8a85b;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c8a85b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.submit-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    
    padding: 12px 32px;
    
    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    
    cursor: pointer;
    
    transition: all 0.3s ease;
    
    margin-top: 16px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c8a85b;
    color: #c8a85b;
}

.submit-btn:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-toast {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 120;

    background: #d9f6d8;
    border: 1px solid #1f6f35;
    color: #145126;

    padding: 12px 18px;

    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-toast.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .info-item {
        align-items: flex-start;
    }
    
    .modal-content {
        width: 95%;
        padding: 32px 24px;
    }
}

/* ------------------------- */
/* HAMBURGER MENU */
/* ------------------------- */

.hamburger {
    position: fixed;
    top: 20px;
    left: 20px;

    width: 40px;
    height: 30px;

    background: none;
    border: none;

    cursor: pointer;

    z-index: 11;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    opacity: 1;
    transition: opacity 0.3s ease;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}

.hamburger.active {
    opacity: 0;
    pointer-events: none;
}

/* ------------------------- */
/* SIDEBAR */
/* ------------------------- */

.sidebar {

    position: fixed;

    top: 0;
    left: 0;

    width: 280px;
    height: 100vh;

    background: rgba(8,8,8,0.95);

    padding: 36px 48px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;

    z-index: 10;

    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.sidebar.active {
    transform: translateX(0);
}

/* ------------------------- */
/* CLOSE BUTTON */
/* ------------------------- */

.close {
    position: fixed;
    top: 20px;
    left: 20px;

    width: 40px;
    height: 30px;

    background: none;
    border: none;

    color: white;

    font-size: 28px;

    cursor: pointer;

    z-index: 12;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
}

.close::before,
.close::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}

.close::before {
    transform: rotate(45deg);
}

.close::after {
    transform: rotate(-45deg);
}

.sidebar.active .close {
    opacity: 1;
    pointer-events: auto;
}

/* ------------------------- */
/* BRAND */
/* ------------------------- */

.brand {

    text-align: center;

    margin-top: 60px;
}

.logo-img {

    width: 169px;

    height: auto;

    display: block;

    margin: 0 auto 24px auto;
}

.brand h2 {

    font-size: 1rem;

    text-transform: uppercase;

    letter-spacing: 0.35em;

    font-weight: 300;

    line-height: 1.6;
}

/* ------------------------- */
/* NAVIGATION */
/* ------------------------- */

nav {

    display: flex;

    flex-direction: column;

    gap: 24px;

    margin-top: 16px;
}

nav a {

    color: white;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-size: 0.88rem;

    transition: color 0.25s ease;
}

nav a:hover {

    color: #c8a85b;
}

nav a[aria-current="page"] {
    color: #c8a85b;
}

/* ------------------------- */
/* FOOTER */
/* ------------------------- */

.sidebar-footer {

    display: flex;
    flex-direction: column;

    gap: 16px;

    font-size: 0.7rem;

    opacity: 0.8;
}

.sidebar-footer a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    transition: opacity 0.2s ease;
}

.sidebar-footer a:hover {
    opacity: 1;
}

#phone-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    
    background: #000;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 50;
    
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    animation: slideIn 0.3s ease;
}

#phone-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #000;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------- */
/* SCROLL INDICATOR */
/* ------------------------- */

.scroll-indicator {

    position: absolute;

    bottom: 28px;

    left: calc(50% + 140px);

    z-index: 2;

    font-size: 28px;

    opacity: 0.8;
}

.hero .home-policy-links {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 3;

    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;

    font-family: Futura, "Trebuchet MS", Arial, sans-serif;
    font-size: 8pt;
    line-height: 1.4;
}

.hero .home-policy-links a,
.hero .home-policy-links a:visited,
.hero .home-policy-links a:focus {
    color: white;
    text-decoration: none;
}

/* ------------------------- */
/* MOBILE */
/* ------------------------- */

@media (max-width: 800px) {

    .sidebar {

        width: 230px;

        padding: 28px;
    }

    .hero,
    .page-container {
        margin-left: 0;
    }

    .hero-content h1 {

        font-size: 2rem;
    }

    .hero .home-policy-links {
        left: 24px;
        right: 24px;
        bottom: 18px;
        justify-content: center;
        gap: 10px 16px;
        text-align: center;
    }

}
