:root {
    --mint: #77b8a0;
    --teal: #006869;
    --teal-deep: #043332;
    --gold: #fff89a;
    --primary: #006869;
    --primary-hover: #005455;
    --primary-soft: rgba(0, 104, 105, 0.1);
    --bg: #e8f0ed;
    --bg-elevated: #f4f8f6;
    --card: #f4f8f6;
    --text: #043332;
    --text-muted: #3d5c58;
    --border: #c5d6d2;
    --nav-bg: rgba(232, 240, 237, 0.94);
    --shadow: 0 8px 24px rgba(4, 51, 50, 0.08);
    --radius: 12px;
    --max: 1080px;
    --pad: 1.5rem;
    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --ease: 0.2s ease;
    color-scheme: light dark;
}

[data-theme="dark"] {
    --primary: #77b8a0;
    --primary-hover: #8fc9b3;
    --primary-soft: rgba(119, 184, 160, 0.12);
    --bg: #061211;
    --bg-elevated: #0b1f1e;
    --card: #0d2423;
    --text: #eef6f3;
    --text-muted: #b4cfc8;
    --border: rgba(119, 184, 160, 0.18);
    --nav-bg: rgba(6, 18, 17, 0.92);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100dvh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.container {
    width: min(var(--max), calc(100% - var(--pad) * 2));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 0.8rem;
    z-index: 2000;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.eyebrow {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.section {
    padding: 4.5rem 0;
    scroll-margin-top: 80px;
}

.section-header {
    max-width: 620px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin-bottom: 0.6rem;
}

.section-header p,
.muted { color: var(--text-muted); }

.section-header.left {
    margin-left: 0;
    text-align: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1.15rem;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--ease);
}

.btn:hover { background: var(--primary-hover); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover { background: var(--card); }

.btn-insta {
    background: #262626;
}

.btn-insta:hover { background: #111; }

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 1rem;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-desktop a,
.nav-drawer a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-desktop a:hover,
.nav-drawer a:hover,
.nav-desktop a[aria-current="page"],
.nav-drawer a[aria-current="page"] {
    color: var(--text);
}

.nav-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.nav-toggle { display: none; }

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 51, 50, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 1090;
}

.nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(320px, 86vw);
    height: 100dvh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    padding: 1rem 1.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.nav-drawer.is-open {
    transform: none;
}

.nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.nav-drawer a {
    padding: 0.85rem 0.2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
}

body.nav-open {
    overflow: hidden;
}

@media (min-width: 901px) {
    .nav-drawer,
    .nav-backdrop {
        display: none;
    }
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 7rem 0 4.5rem;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: #043332;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: brightness(0.38) saturate(0.7);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(0, 104, 105, 0.15), transparent 42%),
        linear-gradient(180deg, rgba(4, 51, 50, 0.55) 0%, rgba(6, 18, 17, 0.72) 48%, #061211 100%);
}

.hero-content {
    max-width: 34rem;
    color: #eef6f3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .eyebrow {
    color: var(--gold);
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 1.3rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
    font-size: clamp(3.2rem, 12vw, 5.4rem);
    margin-bottom: 0.25rem;
    letter-spacing: 0.04em;
}

.hero-lead {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 0.9rem;
}

.hero p {
    color: rgba(238, 246, 243, 0.8);
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero .btn {
    background: var(--mint);
    color: #043332;
}

.hero .btn:hover {
    background: var(--gold);
}

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

.card,
.stat,
.trend-card,
.faq-item,
.legal-card,
.place-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.card { padding: 1.4rem; }

.card h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.card p { color: var(--text-muted); }

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.4rem;
}

.stat {
    padding: 1.1rem;
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.stat span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trend-card { overflow: hidden; }

.trend-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.trend-body { padding: 1.2rem 1.3rem 1.4rem; }

.trend-card .kicker {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.trend-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.45rem;
}

.trend-card p {
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.trend-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.landing-center {
    text-align: center;
    max-width: 920px;
}

.landing-center h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin-bottom: 0.8rem;
}

.landing-center > .reveal p {
    color: var(--text-muted);
    max-width: 34rem;
    margin: 0 auto 0.7rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.2rem;
    text-align: left;
}

.info-grid .card h3 {
    font-size: 1.25rem;
}

.info-grid a {
    color: var(--primary);
    font-weight: 600;
}

.section-alt {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.2rem;
    text-align: left;
}

.contact-grid .card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-grid h3 {
    font-size: 1.2rem;
    word-break: break-word;
}

.contact-grid p {
    margin-bottom: 1.15rem;
}

.contact-grid .btn {
    margin-top: auto;
    align-self: flex-start;
}

.ig-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.ig-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 0.7rem;
}

.ig-copy p {
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.rolinck-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}

.rolinck-facts {
    display: grid;
    gap: 0.8rem;
}

.rolinck-facts article {
    padding: 1.1rem 1.2rem;
}

.quiet-photo {
    margin-top: 2rem;
}

.quiet-photo img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    opacity: 0.9;
}

.quiet-photo figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.place-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
}

.place-card { padding: 1.5rem; overflow: hidden; }

.place-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin: -1.5rem -1.5rem 1.2rem;
    max-width: none;
    width: calc(100% + 3rem);
}

.place-card h3 { margin: 0.2rem 0 0.6rem; }

.geo-list {
    display: grid;
    gap: 0.4rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.geo-list strong {
    color: var(--text);
    min-width: 7rem;
    display: inline-block;
}

.map-frame {
    min-height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    background: var(--bg-elevated);
}

.map-consent {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    text-align: center;
}

.map-consent p {
    max-width: 360px;
    color: var(--text-muted);
    margin: 0.6rem auto 1rem;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
}

.faq-list {
    display: grid;
    gap: 0.7rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item { padding: 0; }

.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    color: var(--text);
    padding: 1rem 1.15rem;
    font: inherit;
    font-weight: 650;
    cursor: pointer;
}

.faq-item div {
    display: none;
    padding: 0 1.15rem 1rem;
    color: var(--text-muted);
}

.faq-item.is-open div { display: block; }

.legal-page { padding: 8rem 0 4rem; }
.legal-wrap { max-width: 720px; }
.legal-wrap h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.7rem; }
.legal-wrap h2 { margin: 1.8rem 0 0.55rem; font-size: 1.2rem; }
.legal-wrap p,
.legal-wrap li { color: var(--text-muted); margin-bottom: 0.75rem; }
.legal-wrap ul { padding-left: 1.15rem; }

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.9em;
    background: var(--primary-soft);
    padding: 0.1em 0.35em;
    border-radius: 4px;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.legal-card { padding: 1rem 1.15rem; margin: 1rem 0; }

.legal-warning {
    border-color: #d8c48a;
    background: #f7f1dc;
}

[data-theme="dark"] .legal-warning {
    border-color: #5c5336;
    background: #2a2618;
}

footer {
    border-top: 1px solid var(--border);
    padding: 1.8rem 0 2.2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-links a:hover { color: var(--text); }

html.js .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

html.js .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    :root { --pad: 1.1rem; }
    .nav-toggle { display: grid; }
    .nav-desktop { display: none; }
    .hero {
        min-height: 100dvh;
        padding: 6.2rem 1rem 3rem;
    }
    .hero-logo {
        width: 112px;
        height: 112px;
    }
    .hero-btns .btn {
        width: min(100%, 280px);
    }
    .hero-layout,
    .grid-3,
    .trend-grid,
    .ig-panel,
    .rolinck-panel,
    .landing-info,
    .info-grid,
    .contact-grid,
    .place-layout {
        grid-template-columns: 1fr;
    }
    .info-grid,
    .contact-grid {
        text-align: center;
    }
    .contact-grid .btn {
        align-self: center;
        width: min(100%, 280px);
    }
    .footer-grid {
        justify-content: center;
        text-align: center;
    }
    .stats { grid-template-columns: 1fr 1fr; }
    .section { padding: 3.2rem 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
