:root {
    --base: #f9f9f9;
    --contrast: #111111;
    --contrast-2: #636363;
    --bg-light: #ffffff;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Cardo', serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--base);
    color: var(--contrast);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

/* Header & Navigation */
header {
    background: var(--base);
    padding: 1.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

/* FORCED BLACK & UNDERLINED LINK */
/* This targets all possible browser states to prevent purple/blue colors */
a.nav-link-special, 
a.nav-link-special:link, 
a.nav-link-special:visited, 
a.nav-link-special:hover, 
a.nav-link-special:active {
    color: #111111 !important; /* Absolute Black */
    text-decoration: underline !important; /* Forced Underline */
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

a.nav-link-special:hover {
    opacity: 0.7;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; }

.asterisk::before, .asterisk-small::before {
    content: '✶';
    display: block;
    margin-bottom: 1rem;
    color: var(--contrast-2);
}
.asterisk.text-center::before { margin: 0 auto 1rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: 0.3s;
}
.btn-dark { background: var(--contrast); color: white; }
.btn-dark:hover { background: var(--contrast-2); }

/* Hero Section */
.hero { padding: 5rem 0; text-align: center; }
.subtitle { font-size: 1.2rem; color: var(--contrast-2); max-width: 700px; margin: 0 auto 2rem; }
.hero-image img { 
    width: 85%; 
    margin: 3rem auto 0; 
    border-radius: 12px; 
}

/* Services Grid (4 Columns, 2 Rows) */
.services-intro {
    background: var(--bg-light);
    padding: 6rem 0;
}
.intro-p { max-width: 800px; margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.service-card h3 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--contrast-2); line-height: 1.5; }

/* Profile Section */
.profile-row, .mission-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
}
.profile-text { flex: 1.2; }
.profile-img { flex: 0.8; }
.profile-img img { width: 70%; margin-left: auto; border-radius: 12px; }

/* Mission Image Section (windows.webp - Large) */
.mission-text { flex: 0.7; }
.mission-img { flex: 1.3; }
.mission-img img { width: 100%; border-radius: 12px; }

.checkmark-list { list-style: "✓ "; padding-left: 1.2rem; color: var(--contrast-2); }

/* Quote Section */
.bg-dark { background: var(--contrast); color: white; padding: 6rem 0; }
.quote { font-size: 2rem; font-family: var(--font-heading); font-style: italic; }
.author { margin-top: 1rem; color: var(--base); }

/* Booking Card */
.booking-card {
    background: var(--base);
    padding: 4rem;
    border-radius: 16px;
    margin: 4rem auto;
}

/* Footer */
footer { background: var(--base); padding: 4rem 0; border-top: 1px solid #ddd; }
.footer-grid { display: flex; justify-content: space-between; }
.footer-links { display: flex; gap: 4rem; }
.link-col h4 { font-size: 0.9rem; margin-bottom: 1rem; }
.link-col a { display: block; text-decoration: none; color: var(--contrast-2); font-size: 0.85rem; margin-bottom: 0.5rem; }

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

@media (max-width: 768px) {
    .profile-row, .mission-row { flex-direction: column; text-align: center; }
    .profile-img img, .mission-img img, .hero-image img { width: 100%; margin: 2rem auto; }
    .services-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.2rem; }
}