/* ============================================================
   Masáže Martin Peringer Brno – stylesheet (část 1/2)
   Paleta: šalvějově zelená + sytá přírodní béžová
   ============================================================ */

:root {
    --sage-900: #2f3a2b;
    --sage-700: #4f5e46;
    --sage-500: #6f8061;
    --sage-300: #a8b69a;
    --sage-100: #d9e2d0;

    --cream-50:  #f7efde;
    --cream-100: #e8d8b6;
    --cream-200: #d9c595;
    --cream-300: #c8af72;
    --cream-400: #b29560;

    --warm:    #a8804e;
    --warm-dk: #835f33;

    --ink:    #2a2622;
    --muted:  #5a544c;
    --white:  #ffffff;

    --font-head: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --gutter: clamp(1.25rem, 4vw, 2rem);
    --section-pad: clamp(3.5rem, 9vw, 6.5rem);

    --radius: 14px;
    --shadow-sm: 0 2px 10px rgba(47, 58, 43, .08);
    --shadow-md: 0 12px 32px -10px rgba(47, 58, 43, .22);
    --shadow-lg: 0 24px 60px -20px rgba(47, 58, 43, .35);

    --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--sage-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--warm-dk); }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--sage-900);
    line-height: 1.15;
    margin: 0 0 .5em;
}
h1 { font-size: clamp(2.25rem, 7vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.55rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--sage-700); }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--warm-dk); margin-bottom: 1rem; }
.eyebrow-light { color: var(--cream-200); }

body::before {
    content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(60% 50% at 10% 10%, rgba(168,182,154,.18), transparent 70%),
        radial-gradient(50% 40% at 90% 80%, rgba(168, 128, 78, .12), transparent 70%);
}
body > * { position: relative; z-index: 1; }

/* HLAVIČKA */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 239, 222, .92);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid rgba(131, 95, 51, .18);
}
.nav-row { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; color: var(--sage-700); }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--sage-900); }
.brand em { font-style: normal; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--warm-dk); margin-top: 2px; }

.nav-toggle { width: 44px; height: 44px; border: 0; background: transparent; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--sage-900); border-radius: 2px; transition: transform .25s, opacity .15s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--cream-50); border-bottom: 1px solid rgba(131, 95, 51, .18);
    padding: 1.5rem var(--gutter) 2rem; display: flex; flex-direction: column; gap: .25rem;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .25s, opacity .2s; box-shadow: var(--shadow-md);
}
.primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.primary-nav a { display: block; padding: .85rem .5rem; font-size: 1.05rem; font-weight: 500; color: var(--sage-900); border-bottom: 1px solid rgba(131, 95, 51, .14); }
.primary-nav a:last-child { border-bottom: 0; }
.primary-nav .nav-cta { margin-top: 1rem; background: var(--sage-700); color: var(--cream-50); text-align: center; border-radius: 999px; padding: .9rem 1.4rem; font-weight: 600; letter-spacing: .04em; }
.primary-nav .nav-cta:hover { background: var(--sage-900); color: var(--cream-50); }

/* HERO */
.hero { position: relative; min-height: calc(100svh - var(--header-h)); padding: calc(var(--section-pad) - 1rem) 0 calc(var(--section-pad) + 1rem); display: flex; align-items: center; overflow: hidden; color: var(--cream-50); }
.hero-image {
    position: absolute; inset: 0; z-index: 0;
    background: url("https://images.unsplash.com/photo-1745327883508-b6cd32e5dde5?auto=format&fit=crop&w=1600&q=80") center/cover;
    transform: scale(1.05); will-change: transform;
}
.hero-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(47,58,43,.35) 0%, rgba(47,58,43,.55) 60%, rgba(47,58,43,.85) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--cream-50); margin-bottom: .35em; }
.hero .eyebrow { color: var(--cream-200); }
.hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: rgba(244,237,224,.9); max-width: 600px; margin-bottom: 2rem; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem 1.6rem; border-radius: 999px; font-weight: 600; letter-spacing: .03em; transition: transform .15s, background .2s, color .2s, border-color .2s; border: 1.5px solid transparent; font-size: .95rem; line-height: 1; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--warm); color: var(--white); }
.btn-primary:hover { background: var(--warm-dk); color: var(--white); }
.btn-ghost { background: transparent; color: var(--cream-50); border-color: rgba(244,237,224,.6); }
.btn-ghost:hover { background: rgba(244,237,224,.12); color: var(--cream-50); }

.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.hero-badges .badge { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .85rem; background: rgba(244,237,224,.14); border: 1px solid rgba(244,237,224,.25); border-radius: 999px; font-size: .82rem; color: var(--cream-50); backdrop-filter: blur(6px); }
.hero-badges .badge span { color: var(--warm); font-weight: 700; }
.scroll-indicator { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(244,237,224,.6); border-radius: 14px; display: none; }
.scroll-indicator span { position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; background: var(--cream-50); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 16px); opacity: 0; } }

/* MOTTO */
.motto { background: #faf3e2; text-align: center; padding: 2.5rem 0; position: relative; }
.motto::before, .motto::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 40px; height: 1px; background: var(--sage-300); }
.motto::before { top: 1.25rem; }
.motto::after { bottom: 1.25rem; }
.motto p { font-family: var(--font-head); font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--sage-700); max-width: 700px; margin: 0 auto; line-height: 1.5; }
.motto strong { color: var(--sage-900); font-weight: 600; font-style: normal; }
.motto em { font-style: italic; }

/* PRUH: VEČERNÍ HODINY */
.evening-strip { background: linear-gradient(135deg, var(--sage-900) 0%, var(--sage-700) 100%); color: var(--cream-100); padding: 2.25rem 0; position: relative; overflow: hidden; }
.evening-strip::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 90% 50%, rgba(168,128,78,.3), transparent 50%); pointer-events: none; }
.evening-grid { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; position: relative; }
.evening-icon { width: 54px; height: 54px; flex-shrink: 0; color: var(--warm); display: flex; align-items: center; justify-content: center; background: rgba(244,237,224,.08); border: 1px solid rgba(244,237,224,.14); border-radius: 50%; }
.evening-icon svg { width: 28px; height: 28px; }
.evening-text h2 { color: var(--cream-50); font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: .35em; }
.evening-text p { color: rgba(244,237,224,.9); margin-bottom: 1rem; max-width: 60ch; }
.evening-text strong { color: var(--warm); }
.evening-cta { font-size: .9rem; }

/* GENERICKÉ SEKCE */
.section { padding: var(--section-pad) 0; }
.section-head { margin-bottom: 3rem; max-width: 720px; }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead { color: var(--muted); font-size: 1.05rem; margin-top: .5rem; }

/* SLUŽBY */
.services { background: linear-gradient(180deg, var(--cream-200) 0%, var(--cream-100) 100%); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.card { background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.5rem 1.6rem; box-shadow: 0 6px 20px -8px rgba(47,58,43,.22), 0 2px 4px rgba(47,58,43,.06); border: 1px solid rgba(131,95,51,.18); position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sage-500), var(--warm)); opacity: .85; transition: opacity .3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -12px rgba(47,58,43,.32), 0 4px 8px rgba(47,58,43,.1); border-color: var(--warm); }
.card:hover::before { opacity: 1; }
.card-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--sage-100), var(--cream-50)); color: var(--sage-700); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; border: 1px solid rgba(111,128,97,.2); }
.card-icon svg { width: 32px; height: 32px; }
.card h3 { margin-bottom: .4rem; color: var(--sage-900); font-weight: 600; }
.card p { color: #3f3b35; margin: 0; line-height: 1.6; font-size: .98rem; }

.card-highlight { background: linear-gradient(135deg, var(--sage-900) 0%, var(--sage-700) 65%, #6c8161 100%); color: var(--cream-50); border: 1px solid rgba(244,237,224,.18); padding: 1.85rem 1.65rem 1.75rem; }
.card-highlight::before { background: linear-gradient(90deg, var(--warm), var(--warm-dk)); opacity: 1; }
.card-highlight-leaf { position: absolute; right: -12px; bottom: -18px; width: 160px; height: 160px; color: var(--warm); pointer-events: none; }
.card-highlight-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.card-highlight-eyebrow { display: inline-block; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--warm); margin-bottom: .75rem; }
.card-highlight h3 { color: var(--cream-50); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 500; line-height: 1.1; margin-bottom: .9rem; }
.card-highlight p { color: rgba(244,237,224,.9); font-size: 1rem; line-height: 1.6; margin-bottom: 1.25rem; max-width: 38ch; }
.card-highlight-cta { align-self: flex-start; font-size: .9rem; }
.card-highlight:hover { box-shadow: 0 24px 50px -16px rgba(47,58,43,.45); border-color: var(--warm); }

.rituals { margin-top: 3.5rem; }
.rituals-title { color: var(--sage-700); margin-bottom: 1.25rem; }
.rituals-title span { color: var(--muted); font-family: var(--font-body); font-size: .85rem; font-weight: 400; letter-spacing: .02em; }
.ritual-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.ritual { background: linear-gradient(135deg, var(--sage-100), var(--cream-50)); border-radius: var(--radius); padding: 1.75rem; border: 1px solid rgba(111,128,97,.25); }
.ritual h4 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 500; color: var(--sage-900); text-transform: none; letter-spacing: 0; margin-bottom: .35rem; }
.ritual p { color: var(--sage-700); margin: 0; }

.services-note { margin-top: 2.5rem; padding: 1.25rem 1.5rem; background: var(--cream-50); border-left: 3px solid var(--warm); border-radius: 8px; color: var(--muted); font-size: .96rem; }
.services-note strong { color: var(--sage-900); }
