/* =========================================
   Base
   ========================================= */

   :root {
    --cream: #f7f3ec;
    --cream-dark: #ebe4d8;
    --charcoal: #252522;
    --muted: #68665f;
    --white: #ffffff;
    --accent: #9b5d45;
    --accent-dark: #754332;

    --max-width: 1180px;

    --font-serif: Georgia, "Times New Roman", serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--charcoal);
    font-family: var(--font-sans);
    line-height: 1.6;
}

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

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

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

.section {
    padding: 110px 0;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}


/* =========================================
   Typography
   ========================================= */

h1,
h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.08;
}

h1 {
    margin: 0;
    font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
    margin: 0 0 28px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

p {
    margin-top: 0;
}


/* =========================================
   Navigation
   ========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    color: var(--white);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    padding-bottom: 28px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    position: relative;
    font-size: 0.9rem;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* =========================================
   Hero
   ========================================= */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.20)
        ),
        url("../images/prague-hero.jpg");
    background-position: center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-tagline {
    max-width: 500px;
    margin: 28px 0 38px;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}


/* =========================================
   Buttons
   ========================================= */

.button {
    display: inline-block;
    padding: 14px 26px;
    border: 1px solid transparent;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.button-light {
    background: var(--white);
    color: var(--charcoal);
}

.button-light:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.button-dark {
    background: var(--charcoal);
    color: var(--white);
}

.button-dark:hover {
    background: var(--accent);
}


/* =========================================
   Guide section
   ========================================= */

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.guide-text {
    max-width: 530px;
}

.guide-text p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 1.05rem;
}

.guide-image-wrapper {
    overflow: hidden;
}

.guide-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.text-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 16px;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 4px;
    font-weight: 600;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   Value statement
   ========================================= */

.value-section {
    padding: 120px 0;
    background: var(--charcoal);
    color: var(--white);
}

.value-content {
    max-width: 780px;
    text-align: center;
}

.value-content .eyebrow {
    color: #d59a7e;
}

.value-content h2 {
    margin-bottom: 30px;
}

.value-content p:last-child {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    color: #c9c7c1;
    font-size: 1.1rem;
}


/* =========================================
   Reviews
   ========================================= */

.reviews-section {
    background: var(--cream);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
}

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

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 36px;
    background: var(--white);
}

.stars {
    margin-bottom: 24px;
    color: var(--accent);
    letter-spacing: 0.12em;
}

.review-card blockquote {
    flex: 1;
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.5;
}

.review-author {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}


/* =========================================
   CTA
   ========================================= */

.cta-section {
    padding: 130px 0;
    background: var(--cream-dark);
}

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

.cta-content h2 {
    max-width: 700px;
    margin-right: auto;
    margin-bottom: 38px;
    margin-left: auto;
}


/* =========================================
   Footer
   ========================================= */

.site-footer {
    background: var(--charcoal);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.footer-content p {
    margin-top: 12px;
    color: #aaa9a4;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: #d4d2cd;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid #454540;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #85847f;
    font-size: 0.75rem;
}


/* =========================================
   Mobile
   ========================================= */

@media (max-width: 800px) {

    .container {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a {
        font-size: 0.8rem;
    }

    .hero {
        min-height: 75vh;
    }

    .guide-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .guide-text {
        max-width: none;
    }

    .guide-image-wrapper {
        max-width: 600px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: auto;
    }

    .footer-content {
        flex-direction: column;
    }
}


@media (max-width: 550px) {

    .nav-container {
        align-items: flex-start;
    }

    .logo {
        font-size: 1.15rem;
    }

    .main-nav {
        gap: 12px;
    }

    .main-nav a {
        font-size: 0.7rem;
    }

    .hero-content {
        padding-top: 100px;
    }

    .section {
        padding: 80px 0;
    }

    .value-section,
    .cta-section {
        padding: 90px 0;
    }
}

/* =========================================
   About page
   ========================================= */

/* Interior-page header */

.site-header.inner {
    position: relative;
    background: var(--charcoal);
}


/* Page hero */

.page-hero {
    padding: 100px 0 110px;
    background: var(--cream-dark);
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 24px;
}

.page-intro {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1.5;
}


/* About introduction */

.about-intro {
    padding: 110px 0;
}

.about-intro h2 {
    max-width: 750px;
    margin-bottom: 40px;
}

.about-intro p:not(.eyebrow) {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 1.05rem;
}


/* About guide section */

.about-guide {
    padding: 110px 0;
    background: var(--white);
}

.about-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.about-guide-image {
    overflow: hidden;
}

.about-guide-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-guide-text {
    max-width: 530px;
}

.about-guide-text p:not(.eyebrow) {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 1.05rem;
}


/* About values */

.values-section {
    padding: 110px 0;
    background: var(--cream);
}

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

.value-card {
    padding: 36px;
    border-top: 1px solid rgba(37, 37, 34, 0.25);
}

.value-card h3 {
    margin: 0 0 16px;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
}

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


/* About page mobile */

@media (max-width: 800px) {

    .page-hero {
        padding: 80px 0 90px;
    }

    .about-intro,
    .about-guide,
    .values-section {
        padding: 80px 0;
    }

    .about-guide-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-guide-text {
        max-width: none;
    }

    .about-guide-image {
        max-width: 600px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 550px) {

    .page-hero {
        padding: 70px 0 80px;
    }

    .about-intro,
    .about-guide,
    .values-section {
        padding: 70px 0;
    }

    .value-card {
        padding: 28px 0;
    }
}