
:root {
  --bg: #faf6f1; --bg-2: #f3e7e1; --fg: #3a2a26; --muted: #8b7670; --accent: #c9a06c; --pink: #e8c5c0; --line: rgba(58,42,38,.1);
  --font-h: 'Cormorant Garamond', serif; --font-b: 'Karla', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-b); font-weight: 400; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color .25s; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 500; line-height: 1.15; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media(max-width:768px){.container{padding:0 20px;}}

.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 24px 40px; background: rgba(250,246,241,.85); backdrop-filter: blur(12px); transition: padding .3s, box-shadow .3s; }
.nav.scrolled { padding: 14px 40px; box-shadow: 0 1px 0 var(--line); }
.logo { font-family: var(--font-h); font-size: 24px; font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; letter-spacing: 0.1em; color: var(--fg); }
.nav-links a.active, .nav-links a:hover { color: var(--accent); }
.menu-toggle { display: none; background: none; border: 0; width: 32px; height: 28px; cursor: pointer; flex-direction: column; justify-content: space-between; padding: 6px 0; }
.menu-toggle span { display: block; height: 1px; background: var(--fg); }
@media(max-width:900px){
  .nav { padding: 18px 20px; }
  .menu-toggle { display: flex; }
  .nav-links { position: fixed; inset: 65px 0 auto 0; flex-direction: column; background: var(--bg); padding: 30px; gap: 20px; transform: translateY(-110%); transition: transform .35s; box-shadow: 0 4px 12px rgba(0,0,0,.05); }
  body.menu-open .nav-links { transform: translateY(0); }
}

.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding: 80px 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; filter: saturate(0.85); }
.hero-bg::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(250,246,241,.95) 0%, rgba(250,246,241,.6) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { font-size: clamp(56px, 9vw, 130px); font-weight: 500; font-style: italic; }
.hero h1 span { font-style: normal; color: var(--accent); display: block; }
.hero p { font-size: 20px; color: var(--muted); margin: 32px 0 44px; max-width: 480px; }
.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; display: inline-block; }

.btn { display: inline-block; padding: 16px 36px; background: var(--accent); color: white; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 100px; transition: transform .25s, background .25s; border: 0; cursor: pointer; font-family: inherit; }
.btn:hover { background: var(--fg); transform: translateY(-2px); color: white; }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--fg); }
.btn-ghost:hover { background: var(--fg); color: white; }

section { padding: 120px 0; }
@media(max-width:768px){ section { padding: 70px 0; } }
.section-title { font-size: clamp(40px, 6vw, 80px); font-style: italic; margin-bottom: 20px; }
.section-title span { font-style: normal; color: var(--accent); }
.section-lead { color: var(--muted); max-width: 600px; margin-bottom: 70px; font-size: 17px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col img { aspect-ratio: 4/5; object-fit: cover; border-radius: 8px; }
@media(max-width:900px){ .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* Zabiegi cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: white; border-radius: 16px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(58,42,38,.2); }
.card img { aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 32px; }
.card h3 { font-size: 26px; margin-bottom: 10px; font-style: italic; }
.card .price { font-family: var(--font-h); font-size: 28px; color: var(--accent); margin-top: 20px; display: inline-block; }
@media(max-width:900px){ .cards { grid-template-columns: 1fr; } }

/* Pricing table */
.pricing-section { background: white; }
.price-table { background: var(--bg); border-radius: 24px; padding: 60px 50px; }
.price-cat { margin-bottom: 50px; }
.price-cat:last-child { margin-bottom: 0; }
.price-cat h3 { font-size: 32px; font-style: italic; color: var(--accent); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px dotted var(--line); gap: 20px; }
.price-row:last-child { border: 0; }
.price-name { font-size: 16px; flex: 1; }
.price-name small { display: block; color: var(--muted); font-size: 13px; margin-top: 4px; }
.price-val { font-family: var(--font-h); font-size: 22px; color: var(--accent); white-space: nowrap; }
@media(max-width:600px){ .price-table { padding: 30px 22px; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
@media(max-width:900px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info p { margin: 16px 0; font-size: 17px; }
.hours { background: white; border-radius: 16px; padding: 24px; margin-top: 30px; }
.hours h4 { font-size: 18px; margin-bottom: 14px; color: var(--accent); font-style: italic; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }

form { display: flex; flex-direction: column; gap: 18px; }
input, textarea { background: white; border: 1px solid var(--line); padding: 16px 22px; color: var(--fg); font-family: inherit; font-size: 15px; border-radius: 100px; transition: border-color .25s; }
textarea { border-radius: 20px; min-height: 160px; resize: vertical; }
input:focus, textarea:focus { outline: none; border-color: var(--accent); }

.footer { background: var(--bg-2); padding: 70px 0 30px; margin-top: 80px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.footer-brand { font-family: var(--font-h); font-style: italic; font-size: 26px; color: var(--accent); margin-bottom: 12px; }
.footer-tag { color: var(--muted); font-style: italic; }
.footer h4 { font-family: var(--font-h); font-style: italic; font-size: 20px; margin-bottom: 18px; color: var(--fg); }
.footer p { color: var(--muted); font-size: 14px; margin: 6px 0; }
.footer a:hover { color: var(--accent); }
.footer-bottom { max-width: 1280px; margin: 50px auto 0; padding: 24px 32px 0; border-top: 1px solid var(--line); text-align: center; color: var(--muted); font-size: 12px; letter-spacing: 0.1em; }
.footer-bottom a { color: var(--accent); }
@media(max-width:768px){ .footer-inner { grid-template-columns: 1fr; gap: 30px; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
