:root {
    --font-heading: 'Noto Serif Display', serif;
    --font-body: 'Outfit', sans-serif;

    --color-bg: #ffffff;
    --color-bg-alt: #f8f8f6;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-primary: #1a2b4b;
    /* Deep Navy */
    --color-accent: #c5a059;
    /* Muted Gold */
    --color-white: #ffffff;

    --container-width: 1200px;
    --header-height: 80px;

    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Review: Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    /* Slightly rounded */
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--color-accent);
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: var(--color-primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Slight darken for text legibility */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--color-white);
    max-width: 600px;
    margin-left: 5%;
    /* Slight offset */
}

.hero h1 {
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero .btn {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
}

.hero .btn:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Intro (About) */
.intro {
    background-color: var(--color-bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-align: justify;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--color-bg-alt);
}

.host-profile {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.host-profile h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Services */
.services {
    background-color: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Image Break */
.image-break {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-break h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-style: italic;
}

/* Why Us */
.why-us-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-us .lead {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 3rem;
}

.check-list {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Plans */
.plans {
    background-color: var(--color-bg-alt);
}

.plans-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.plan-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.plan-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
}

.plan-card h3 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.plan-card .price {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 1rem 0 2rem;
}

.plan-card ul {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-card ul li {
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}

.plan-card .btn {
    width: 100%;
    text-align: center;
}

/* Steps */
.steps-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1.5rem 0;
}

.faq-item .question {
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    font-size: 1.1rem;
}

.faq-item .answer {
    margin-top: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact */
.contact {
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}

.contact h2,
.contact p {
    color: white;
}

.contact .container {
    max-width: 700px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-btn:hover {
    background: white;
    color: var(--color-primary);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact .note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #111;
    color: #888;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        flex-direction: column;
        align-items: center;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .steps-flex {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        padding: 2rem;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        font-size: 1.25rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 0 1rem;
    }
}