/* ==================================================
   BRAND COLOUR VARIABLES
   ================================================== */
:root {
    --bg-primary: #F7F6F2;       /* Glacier White */
    --bg-secondary: #EFEAE2;     /* Warm Stone */
    --bg-section: #E5E7E8;       /* Mist Grey */
    --bg-card: #FFFFFF;          /* Pure White */
    --brand-primary: #244B43;    /* Deep Forest */
    --brand-secondary: #4A7FA7;  /* Lake Blue */
    --accent: #B88746;           /* Copper Gold */
    --highlight: #7C9A7E;        /* Sage Green */
    --text-primary: #2B2F33;     /* Charcoal */
    --text-secondary: #66707A;   /* Slate Grey */
    --text-muted: #8C939A;       /* Muted */
    --divider: #D7D3CB;          /* Divider */
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 300ms ease;
}

/* ==================================================
   RESET & TYPOGRAPHY
   ================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* ==================================================
   NAVIGATION
   ================================================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--divider);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--brand-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand:hover {
    color: var(--accent);
}

.brand-logo-icon {
    flex-shrink: 0;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 0.3rem;
    transition: color var(--transition);
}

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

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

/* ==================================================
   BUTTONS
   ================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    padding: 1rem 2.5rem;
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--bg-card);
    border: 1px solid var(--brand-primary);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-card);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-secondary);
}

.btn-secondary:hover {
    background-color: var(--brand-secondary);
    color: var(--bg-card);
}

/* ==================================================
   HERO SECTION
   ================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    padding: 10rem 5%;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--brand-primary);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==================================================
   PROPERTY CARDS SECTION
   ================================================== */
.editorial-section {
    background-color: var(--bg-section);
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--brand-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.property-card {
    background-color: var(--bg-card);
    border: 1px solid var(--divider);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.property-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.property-card:hover .card-image {
    transform: scale(1.02);
}

.card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ==================================================
   BADGES
   ================================================== */
.badge-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.badge-location {
    background-color: #EEF5F3;
    border: 1px solid var(--highlight);
    color: var(--brand-primary);
}

.badge-dining {
    background-color: #F8F2E7;
    border: 1px solid var(--accent);
    color: #8A5A1F;
}

/* ==================================================
   CARD CONTENT
   ================================================== */
.property-title {
    font-size: 2.2rem;
    color: var(--brand-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hotel-summary {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.dining-summary {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.atmosphere-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--divider);
}

.tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    background-color: var(--bg-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.read-more-indicator {
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition), color var(--transition);
}

.property-card:hover .read-more-indicator {
    gap: 12px;
    color: var(--accent);
}

/* ==================================================
   MODAL (FULL INFO DESCRIPTION)
   ================================================== */
.modal-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 47, 51, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(8px);
}

.modal-window:target {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background-color: var(--bg-card);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.modal-window:target .modal-dialog {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-primary);
    text-decoration: none;
    z-index: 20;
    background: var(--bg-card);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: color var(--transition), transform var(--transition);
}

.modal-close:hover {
    color: var(--brand-primary);
    transform: scale(1.1);
}

.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.modal-image-wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    flex-shrink: 0;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.modal-body h3 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.modal-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.modal-actions {
    margin-top: 2rem;
}

@media (min-width: 900px) {
    .modal-content-wrapper {
        flex-direction: row;
        overflow: hidden;
    }
    .modal-image-wrapper {
        width: 45%;
        height: auto;
    }
    .modal-body {
        width: 55%;
        overflow-y: auto;
        padding: 4rem;
    }
}

/* ==================================================
   FORM SECTION (HOMEPAGE)
   ================================================== */
.journal-subscription {
    background-color: var(--bg-primary);
    padding: 8rem 5%;
    display: flex;
    justify-content: center;
}

.form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--divider);
    border-radius: 20px;
    padding: 4rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.form-container h2 {
    font-size: 2.8rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.form-container p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--divider);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background-color: var(--bg-card);
    transition: all var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 4px rgba(74, 127, 167, 0.15);
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* ==================================================
   POLICY / INFO PAGES LAYOUT
   ================================================== */
.policy-header {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    padding: 8rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid var(--divider);
}
.policy-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}
.policy-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.policy-content {
    background-color: var(--bg-card);
    padding: 5rem 5%;
}
.policy-container {
    max-width: 800px;
    margin: 0 auto;
}
.policy-container h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.policy-container h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.policy-container p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.policy-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.policy-container li { margin-bottom: 0.5rem; }

.address-box {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-left: 4px solid var(--accent);
    margin-top: 2rem;
}
.address-box p { margin-bottom: 0; color: var(--text-primary); }


/* ==================================================
   CONTACT PAGE SPECIFIC
   ================================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    padding: 6rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid var(--divider);
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-section {
    padding: 6rem 5%;
    background-color: var(--bg-card);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-top: 1px solid var(--divider);
    padding-top: 2.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-item address,
.detail-item a {
    font-style: normal;
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.4rem;
    text-decoration: none;
    line-height: 1.4;
}

.detail-item a {
    color: var(--brand-secondary);
    transition: color var(--transition);
}

.detail-item a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background-color: var(--bg-primary);
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid var(--divider);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
}

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

.contact-form.submitted .form-group,
.contact-form.submitted .form-submit,
.contact-form.submitted .form-row {
    display: none;
}

.contact-form.submitted .form-success-message {
    display: flex;
}

.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem;
    gap: 1rem;
}

.form-success-message svg {
    color: var(--highlight);
    margin-bottom: 1rem;
}

.form-success-message h4 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--brand-primary);
    margin-bottom: 0;
    font-weight: 500;
}

.form-success-message p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form .form-input {
    background-color: var(--bg-card);
}

.contact-form .form-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(36, 75, 67, 0.1);
}

/* ==================================================
   FOOTER
   ================================================== */
.site-footer {
    background-color: var(--brand-primary);
    color: #F7F6F2;
    padding: 5rem 5% 2rem;
    border-top: 4px solid var(--accent);
    text-align: center;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #F7F6F2;
    text-decoration: none;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-brand:hover {
    color: var(--accent);
}

.footer-address {
    color: #D6D6D6;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-style: normal;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-link {
    color: #D6D6D6;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-legal-nav {
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-legal-nav .footer-link {
    font-size: 0.8rem;
    color: #A0A9A6;
}

.footer-copyright {
    color: #8D9995;
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info {
        padding-right: 0;
    }
    .modal-content-wrapper {
        flex-direction: column;
    }
    .modal-image-wrapper {
        width: 100%;
        height: 250px;
    }
    .modal-body {
        width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-menu { display: none; }
    .form-container { padding: 2rem; }
    .footer-nav { flex-direction: column; gap: 1.5rem; }
    .footer-legal-nav { flex-direction: row; justify-content: center; gap: 1rem; }
    .modal-body h3 { font-size: 2rem; }
    .policy-header h1, .contact-hero h1 { font-size: 3rem; }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}