:root {
    --ink: #18352b;
    --forest: #315f4c;
    --forest-dark: #214637;
    --sea: #2f7182;
    --sand: #f4eee2;
    --paper: #fffdf8;
    --white: #fff;
    --muted: #64726c;
    --line: #dce5df;
    --shadow: 0 18px 50px rgba(24, 53, 43, .11);
    --radius: 22px;
}

html { scroll-behavior: smooth; }
body {
    background: var(--paper);
    color: var(--ink);
    font-family: Prompt, Roboto, system-ui, sans-serif;
    overflow-x: hidden;
}

.container { width: min(1180px, calc(100% - 40px)); padding-inline: 0; }

header {
    background: rgba(255, 253, 248, .94);
    border-bottom: 1px solid rgba(49, 95, 76, .11);
    box-shadow: 0 7px 24px rgba(24, 53, 43, .07);
    backdrop-filter: blur(14px);
}
.header-container { min-height: 78px; padding: 8px 0; gap: 24px; }
.logo img { height: 62px; width: auto; display: block; }
nav ul { align-items: center; gap: 6px; }
nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--ink);
}
nav a:hover, nav a:focus-visible { color: var(--forest-dark); background: var(--sand); }
nav > ul > li:last-child > a { color: var(--white); background: var(--forest); }
nav > ul > li:last-child > a:hover { background: var(--forest-dark); }
.dropdown-content { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    color: var(--forest-dark);
    font-size: 1.4rem;
    cursor: pointer;
}

.hero {
    min-height: 680px;
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
    padding: 96px 20px 120px;
    background-position: center;
    background-size: cover;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(100deg, rgba(11, 35, 29, .84), rgba(21, 57, 47, .54) 58%, rgba(47, 113, 130, .28));
}
.hero > .container { max-width: 1000px; text-align: left; }
.hero h1 { max-width: 870px; color: var(--white); font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: 1.02; letter-spacing: -.045em; }
.hero .tagline { max-width: 700px; color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero .cta-button { margin-top: 10px; }

section { padding: 84px 0; }
.section-title { margin-bottom: 36px; }
.section-title h1, .section-title h2 {
    color: var(--forest-dark);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.1;
    letter-spacing: -.035em;
}
.section-title p { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }

.breadcrumb { padding-block: 18px; color: var(--muted); background: transparent; }
.breadcrumb a { font-weight: 600; }

.content-section { max-width: 850px; padding: 30px 34px; }
.content-section + .content-section { margin-top: 18px; }
.content-section h2 { color: var(--forest-dark); font-size: clamp(1.55rem, 3vw, 2.1rem); }
.content-section h3 { color: var(--ink); }
.content-section p, .content-section li { color: #44564f; }
.content-section a { color: var(--sea); font-weight: 600; }

.content-section.faq-section {
    width: 100%;
    max-width: none;
    padding: 72px 0;
}
.faq-section > .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}
.faq-section > .container > h2 {
    max-width: 760px;
    margin-bottom: 28px;
}
.faq-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.faq-item {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(24, 53, 43, .07);
}
.faq-item h3 { margin: 0 0 12px; font-size: 1.12rem; line-height: 1.4; }
.faq-item p { margin: 0; }

/* Homepage guide hub is a full-width grid, unlike long-form article content. */
.content-section.guide-section {
    width: 100%;
    max-width: none;
    padding: 72px 0;
}
.guide-section > .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}
.guide-section .guide-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid, .activities-grid, .types-grid, .guide-grid, .services-list, .activity-categories {
    gap: 22px;
}
.service-card, .activity-card, .type-item, .guide-card, .service-item, .activity-category, .contact-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(24, 53, 43, .07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover, .activity-card:hover, .type-item:hover, .guide-card:hover, .service-item:hover {
    transform: translateY(-5px);
    border-color: #b9cec2;
    box-shadow: var(--shadow);
}
.service-card, .service-item, .activity-category { padding: 28px; }
.features-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.service-icon, .type-icon { color: var(--forest); }

.page-cover { width: min(920px, 100%); margin: 0 auto 42px; }
.page-cover img { max-height: 500px; border-radius: 26px; box-shadow: var(--shadow); }

.cta-button {
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white) !important;
    font-weight: 650;
    box-shadow: 0 10px 24px rgba(49, 95, 76, .23);
}
.cta-button:hover { background: var(--forest-dark); transform: translateY(-2px); }
.cta-button.cta-button-light {
    background: var(--white);
    color: var(--forest-dark) !important;
    box-shadow: 0 10px 26px rgba(8, 31, 25, .2);
}
.cta-button.cta-button-light:hover { background: var(--sand); }
.cta-section { border-radius: 30px; background: linear-gradient(130deg, var(--forest-dark), var(--sea)); box-shadow: var(--shadow); }

.booking-form, .contact-form {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.form-group input, .form-group select, .form-group textarea {
    min-height: 48px;
    border: 1px solid #cad8d0;
    border-radius: 12px;
    background: #fbfcfa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: 3px solid rgba(47, 113, 130, .16);
    border-color: var(--sea);
}
.map-container { border-radius: 24px; overflow: hidden; }

footer { background: #173128; color: rgba(255,255,255,.78); }
.footer-column h3 { color: var(--white); }
.footer-column a { color: rgba(255,255,255,.76); }
.footer-column a:hover { color: var(--white); }
.newsletter-form { margin-top: 20px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 11px 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 8px;
}
.newsletter-consent { display: flex; align-items: flex-start; gap: 8px; margin: 2px 0 12px; font-size: .78rem; line-height: 1.45; }
.newsletter-consent input { margin-top: 3px; }
.newsletter-status { margin-top: 10px; padding: 9px 10px; border-radius: 8px; font-size: .82rem; line-height: 1.4; }
.newsletter-status[data-state="ok"] { background: #dcefe3; color: #173f2d; }
.newsletter-status[data-state="invalid"], .newsletter-status[data-state="error"] { background: #ffe7e4; color: #7a261f; }

@media (max-width: 1050px) {
    .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .faq-list { grid-template-columns: 1fr; }
    .guide-section .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .container { width: min(100% - 28px, 1180px); }
    .header-container { min-height: 70px; flex-direction: row; padding: 7px 0; }
    .logo img { height: 54px; }
    .menu-toggle { display: inline-grid; place-items: center; margin-left: auto; }
    header nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 14px;
        right: 14px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: var(--paper);
        box-shadow: var(--shadow);
        overflow: visible;
    }
    header.is-menu-open nav { display: block; }
    header nav ul { width: 100%; flex-direction: column; align-items: stretch; gap: 4px; }
    header nav a { width: 100%; justify-content: space-between; padding: 11px 14px; }
    .dropdown-content { position: static; box-shadow: none; margin-top: 4px; }
    .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: block; }
    .hero { min-height: 610px; padding: 76px 14px 100px; }
    .hero > .container { text-align: center; }
    .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
    section { padding: 58px 0; }
    .section-title { margin-bottom: 28px; }
    .content-section { padding: 22px 10px; }
    .content-section.faq-section { padding: 52px 0; }
    .faq-section > .container { width: min(100% - 28px, 1180px); }
    .faq-item { padding: 22px; }
    .content-section.guide-section { padding: 52px 0; }
    .guide-section > .container { width: min(100% - 28px, 1180px); }
    .guide-section .guide-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr !important; }
    .page-cover { margin-bottom: 28px; }
    .page-cover img { max-height: 300px; border-radius: 18px; }
    .booking-form, .contact-form { padding: 24px 18px; }
}
