:root {
    --ink: #17201c;
    --muted: #5d6b66;
    --paper: #f8faf7;
    --white: #ffffff;
    --line: #dfe7e1;
    --green: #24745b;
    --green-dark: #163d31;
    --red: #b64b43;
    --yellow: #c48a26;
    --blue: #315f91;
    --shadow: 0 18px 46px rgba(20, 35, 29, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    z-index: 100;
    transform: translateY(-160%);
    background: var(--white);
    color: var(--ink);
    padding: 0.65rem 0.9rem;
    border-radius: 6px;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 74px;
    padding: 0.75rem clamp(1rem, 3vw, 2.25rem);
    background: rgba(248, 250, 247, 0.94);
    border-bottom: 1px solid rgba(223, 231, 225, 0.9);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.site-nav a {
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 650;
    padding: 0.65rem 0.8rem;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: rgba(36, 116, 91, 0.1);
    color: var(--green-dark);
}

.language-form {
    margin: 0;
}

.language-form select {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 0.92rem;
    padding: 0.45rem 0.65rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 0.6rem;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(84svh - 74px);
    overflow: hidden;
    display: grid;
    align-content: end;
    padding: clamp(6rem, 12vh, 10rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 6vh, 4rem);
    color: var(--white);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("/assets/images/hotel-front.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(13, 31, 25, 0.9) 0%, rgba(13, 31, 25, 0.64) 42%, rgba(13, 31, 25, 0.18) 100%),
        linear-gradient(0deg, rgba(13, 31, 25, 0.62) 0%, rgba(13, 31, 25, 0.06) 46%);
}

.hero-inner {
    position: relative;
    width: min(780px, 100%);
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #bce4d4;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    line-height: 1.08;
    margin: 0;
}

h1 {
    font-size: clamp(3.2rem, 9vw, 7.4rem);
    font-weight: 850;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    max-width: 920px;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-copy {
    width: min(700px, 100%);
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.78rem 1rem;
    font-weight: 800;
    text-decoration: none;
}

.button.primary {
    background: var(--green);
    color: var(--white);
}

.button.light {
    border-color: rgba(255, 255, 255, 0.44);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.button.secondary {
    border-color: var(--green);
    color: var(--green-dark);
    background: rgba(36, 116, 91, 0.09);
}

.hero-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(980px, 100%);
    gap: 1px;
    margin-top: clamp(2.5rem, 8vh, 6rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.hero-stats span {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.9rem;
}

.hero-stats strong {
    font-size: 1.1rem;
}

.section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-muted {
    width: 100%;
    padding-inline: max(1rem, calc((100% - 1180px) / 2));
    background: #eef4f0;
}

.section-heading {
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p:not(.eyebrow),
.feature-split p,
.legal-teaser p,
.contact-section p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.05rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(20, 35, 29, 0.06);
}

.product-card > span {
    color: var(--muted);
    font-weight: 750;
}

.product-card p {
    color: var(--muted);
    margin: 0;
}

.product-card ul,
.legal-page ul {
    padding-left: 1.1rem;
    margin: 0;
}

.product-card li + li,
.legal-page li + li {
    margin-top: 0.35rem;
}

.accent-green {
    border-top: 5px solid var(--green);
}

.accent-red {
    border-top: 5px solid var(--red);
}

.accent-yellow {
    border-top: 5px solid var(--yellow);
}

.accent-blue {
    border-top: 5px solid var(--blue);
}

.visual-band {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 1px;
    background: var(--green-dark);
}

.visual-band figure {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
}

.visual-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-band figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: 8px;
    background: rgba(10, 22, 18, 0.76);
    color: var(--white);
    padding: 0.8rem 0.9rem;
    font-weight: 650;
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.feature-split-reverse {
    grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.feature-split p {
    margin: 1rem 0 0;
}

.text-link {
    display: inline-flex;
    margin-top: 1.25rem;
    color: var(--green-dark);
    font-weight: 800;
}

.mock-screen {
    min-height: 420px;
    border: 1px solid #cfd9d2;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.screen-bar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0 1rem;
    border-bottom: 1px solid var(--line);
    background: #f1f5f2;
}

.screen-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #9fb0a8;
}

.screen-bar strong {
    margin-left: 0.4rem;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
}

.room-tile {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    padding: 0.9rem;
    color: var(--white);
}

.room-tile span {
    font-size: 1.45rem;
    font-weight: 850;
}

.room-tile small {
    font-weight: 750;
}

.room-tile.clean {
    background: var(--green);
}

.room-tile.stay {
    background: var(--blue);
}

.room-tile.open {
    background: var(--yellow);
}

.chart-lines {
    min-height: 250px;
    display: flex;
    align-items: end;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
}

.chart-lines i {
    flex: 1;
    min-height: 60px;
    border-radius: 8px 8px 0 0;
    background: var(--red);
}

.screen-list,
.time-rows,
.language-stack {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
}

.screen-list span,
.time-rows span,
.language-stack span {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.85rem;
    background: #fbfcfb;
}

.language-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.language-stack span:first-child {
    grid-column: 1 / -1;
    background: rgba(196, 138, 38, 0.12);
    border-color: rgba(196, 138, 38, 0.32);
}

.translator-text {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.price-group {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}

.price-group h3 {
    padding: 1rem;
    background: var(--green-dark);
    color: var(--white);
}

.price-rows {
    display: grid;
}

.price-row {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr 0.8fr;
    align-items: center;
    gap: 0.75rem;
    min-height: 64px;
    padding: 0.85rem 1rem;
    border-top: 1px solid var(--line);
}

.price-row span {
    color: var(--muted);
}

.price-row b {
    text-align: right;
}

.price-note {
    margin: 1.25rem 0 0;
    color: var(--muted);
}

.contract-section {
    width: 100%;
    padding-inline: max(1rem, calc((100% - 1180px) / 2));
    background: #fcf8ef;
}

.contract-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.contract-grid article {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e2d5bd;
    border-radius: 8px;
    padding: 1.2rem;
    background: var(--white);
}

.contract-grid p {
    color: var(--muted);
}

.legal-teaser,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: center;
    gap: 2rem;
}

.legal-links {
    display: grid;
    gap: 0.75rem;
}

.legal-links a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    background: var(--white);
    color: var(--green-dark);
    font-weight: 800;
    text-decoration: none;
}

.contact-section {
    width: 100%;
    padding-inline: max(1rem, calc((100% - 1180px) / 2));
    background: var(--green-dark);
    color: var(--white);
}

.contact-section .eyebrow,
.contact-section p {
    color: #bce4d4;
}

.page-hero {
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 780px;
    color: var(--muted);
    font-size: 1.15rem;
}

.legal-page {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto;
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.legal-page article {
    border-top: 1px solid var(--line);
    padding: 1.6rem 0;
}

.legal-page h2 {
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.legal-page p,
.legal-page li {
    color: var(--muted);
}

.legal-page a {
    color: var(--green-dark);
    font-weight: 750;
}

.site-footer {
    padding: 3rem max(1rem, calc((100% - 1180px) / 2));
    background: #101815;
    color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
    gap: 1.5rem;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.66);
    margin: 0.6rem 0 0;
}

.footer-grid span,
.footer-grid strong {
    display: block;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0.55rem;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    margin-top: 0.4rem;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-note {
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

@media (max-width: 1020px) {
    .product-grid,
    .contract-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-split,
    .feature-split-reverse,
    .legal-teaser,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .visual-band {
        grid-template-columns: 1fr;
    }

    .visual-band figure {
        min-height: 360px;
    }
}

@media (max-width: 780px) {
    .site-header {
        min-height: 66px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        top: calc(100% + 0.5rem);
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 0.5rem;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.85rem;
    }

    .language-form select {
        width: 100%;
    }

    .hero {
        min-height: calc(86svh - 66px);
        padding-top: 5rem;
    }

    .hero-stats,
    .pricing-grid,
    .product-grid,
    .contract-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .price-row {
        grid-template-columns: 1fr;
    }

    .price-row b {
        text-align: left;
    }

    .room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mock-screen {
        min-height: 360px;
    }
}

@media (max-width: 460px) {
    .button,
    .hero-actions,
    .contact-actions {
        width: 100%;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .room-tile {
        min-height: 112px;
    }

    .visual-band figure {
        min-height: 300px;
    }
}
