:root {
    --bg: #faf6f2;
    --bg-alt: #f0e6de;
    --ink: #3a2e28;
    --muted: #7a6a60;
    --accent: #c98a6b;
    --accent-dark: #a9694b;
    --white: #fffdfb;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 300;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f5e9e1 0%, #e8d3c6 100%);
    padding: 2rem;
}

.hero__inner { max-width: 640px; }

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    color: var(--ink);
}

.hero__title span {
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-top: 0.5rem;
}

.hero__tagline {
    margin: 1.8rem 0 2.5rem;
    font-size: 1.15rem;
    color: var(--muted);
}

.hero__cta {
    display: inline-block;
    padding: 0.9rem 2.6rem;
    background: var(--accent-dark);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero__cta:hover { background: var(--ink); transform: translateY(-2px); }

/* Sections */
.section { padding: 5rem 1.5rem; max-width: 1000px; margin: 0 auto; }
.section--alt { background: var(--bg-alt); max-width: none; }
.section--alt .section__title, .section--alt .contact { max-width: 1000px; margin-left: auto; margin-right: auto; }

.section__title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 3rem;
    color: var(--ink);
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.card {
    background: var(--white);
    padding: 2.2rem 1.8rem;
    border-radius: 0.8rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(58, 46, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(58, 46, 40, 0.12); }
.card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; color: var(--accent-dark); }
.card p { color: var(--muted); }

.contact { text-align: center; font-size: 1.1rem; color: var(--muted); }

/* Footer */
.footer {
    text-align: center;
    padding: 2.5rem 1rem;
    background: var(--ink);
    color: #d8c8bd;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}


/* Dev notice (návod pro grafičku – po dokončení webu smazat) */
.dev-notice {
    max-width: 820px;
    margin: 1.5rem auto;
    padding: 1.6rem 1.8rem;
    background: #fff8e1;
    border: 1px solid #f0d98a;
    border-left: 6px solid #e0a233;
    border-radius: 0.6rem;
    color: #4a3d1e;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.dev-notice__title { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 1.25rem; margin-bottom: 0.6rem; }
.dev-notice__lead { margin-bottom: 1rem; }
.dev-notice__steps { margin: 0 0 1rem 1.2rem; display: grid; gap: 0.8rem; }
.dev-notice__steps li { padding-left: 0.3rem; }
.dev-notice blockquote {
    margin: 0.5rem 0 0;
    padding: 0.8rem 1rem;
    background: #fffdf5;
    border: 1px dashed #e0c56a;
    border-radius: 0.4rem;
    font-size: 0.92rem;
    line-height: 1.5;
}
.dev-notice code {
    background: #f3e6bf;
    padding: 0.1rem 0.35rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
    font-size: 0.88em;
}
.dev-notice__note { font-size: 0.9rem; color: #6b5a2e; }
.dev-notice a { color: #a9694b; }
