@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Główne */
  --blush-light: #f1dce1;
  --blush-mid:   #cb97a9;
  --rose-dark:   #795461;

  /* Pomocnicze */
  --sand:        #dddcd3;
  --olive:       #76765b;
  --gold:        #e1c673;

  /* Niszowe */
  --gold-dark:   #ad8d47;

  /* Tekst */
  --text:        #3a2a2e;
  --text-light:  #6b5560;
  --white:       #fdfaf9;
  --warm-white:  #faf6f7;

  /* Aliasy */
  --cream:       var(--blush-light);
  --brown:       var(--rose-dark);
  --rose:        var(--blush-mid);
  --gold-light:  #ede5e8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--rose-dark);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.05em;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
  display: flex; justify-content: flex-end; gap: 30px; align-items: center;
}
.topbar a { color: #fff; opacity: 0.9; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; }

/* ===== HEADER ===== */
header {
  background: var(--warm-white);
  border-bottom: 1px solid #e8dde0;
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(121,84,97,0.12); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 500;
  color: var(--rose-dark); letter-spacing: 0.02em; line-height: 1.2;
}
.logo span {
  display: block; font-weight: 300; font-size: 12px;
  font-family: var(--font-sans); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blush-mid);
}

nav ul { display: flex; gap: 35px; align-items: center; }
nav a {
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rose-dark); font-weight: 400;
  position: relative; padding-bottom: 3px; transition: color 0.2s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--blush-mid); transition: width 0.3s;
}
nav a:hover, nav a.active { color: var(--blush-mid); }
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-voucher {
  background: var(--blush-mid); color: #fff !important;
  padding: 10px 22px; border-radius: 2px; letter-spacing: 0.1em;
  transition: background 0.2s !important;
}
.nav-voucher::after { display: none !important; }
.nav-voucher:hover { background: var(--rose-dark) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--rose-dark); transition: all 0.3s; }

/* ===== HERO ===== */
/*
e8dde0 - bialy
e5c8d1 - jasny roz
d4afbc - ciemny roz
*/
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--blush-light) 0%, #e8dde0 50%, #d4afbc 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 70vw; height: 120%;
  background: radial-gradient(ellipse, rgba(203,151,169,0.2) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px); font-weight: 300;
  line-height: 1.1; color: var(--rose-dark); margin-bottom: 24px;
}
.hero-text h1 em { font-style: italic; color: var(--blush-mid); }
.hero-text p { font-size: 17px; color: var(--text-light); margin-bottom: 40px; max-width: 420px; line-height: 1.8; }
.hero-image { position: relative; }
.hero-image img { width: 100%; height: 550px; object-fit: cover; object-position: center top; border-radius: 2px; }
.hero-image::before {
  content: ''; position: absolute;
  top: -15px; left: -15px; right: 15px; bottom: 15px;
  border: 1px solid var(--gold); border-radius: 2px; z-index: -1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 36px;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-primary { background: var(--rose-dark); color: #fff; }
.btn-primary:hover { background: #5e3f4a; }
.btn-outline { border: 1px solid var(--rose-dark); color: var(--rose-dark); background: transparent; }
.btn-outline:hover { background: var(--rose-dark); color: #fff; }
.btn-white { background: #fff; color: var(--rose-dark); }
.btn-white:hover { background: var(--blush-light); }

/* ===== SECTION BASE ===== */
section { padding: 90px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blush-mid); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(36px, 4vw, 52px);
  font-weight: 300; color: var(--rose-dark); line-height: 1.2;
}
.section-title em { font-style: italic; }
.section-desc { margin-top: 16px; color: var(--text-light); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== ABOUT ===== */
.about { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { width: 100%; height: 520px; object-fit: cover; object-position: top center; }
.about-image { position: relative; }
.about-image::after {
  content: ''; position: absolute;
  bottom: -15px; right: -15px; width: 60%; height: 60%;
  border: 1px solid var(--gold); z-index: -1;
}
.about-text h2 { font-family: var(--font-serif); font-size: 44px; font-weight: 300; color: var(--rose-dark); margin-bottom: 8px; }
.about-text h3 { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush-mid); font-weight: 400; margin-bottom: 24px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.85; }

/* ===== OFFERS ===== */
.offers { background: var(--blush-light); }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 50px; }
.offer-card {
  background: var(--warm-white); padding: 50px 36px;
  position: relative; transition: transform 0.3s, box-shadow 0.3s; text-align: center;
}
.offer-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(121,84,97,0.12); }
.offer-icon { width: 60px; height: 60px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; }
.offer-icon svg { width: 40px; height: 40px; stroke: var(--blush-mid); fill: none; stroke-width: 1.2; }
.offer-card h3 { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--rose-dark); margin-bottom: 14px; }
.offer-card p { color: var(--text-light); font-size: 15px; line-height: 1.8; }
.offer-card::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 30px; height: 2px; background: var(--gold);
}

/* ===== STATS ===== */
.stats { background: var(--rose-dark); padding: 60px 0; }
.stats-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center;
}
.stat-number { font-family: var(--font-serif); font-size: 60px; font-weight: 300; color: var(--blush-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ===== GALLERY ===== */
.gallery { background: var(--warm-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(1) img { height: 380px; }
.gallery-item { overflow: hidden; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== VOUCHER BANNER ===== */
.voucher-banner {
  background: linear-gradient(135deg, var(--blush-mid) 0%, var(--rose-dark) 100%);
  padding: 80px 0; text-align: center;
}
.voucher-banner h2 { font-family: var(--font-serif); font-size: 48px; font-weight: 300; color: #fff; margin-bottom: 12px; }
.voucher-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 17px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--blush-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--warm-white); padding: 36px; position: relative; }
.testimonial::before {
  content: '"'; font-family: var(--font-serif); font-size: 80px; color: var(--gold);
  line-height: 1; position: absolute; top: 16px; left: 24px; opacity: 0.5;
}
.testimonial p { color: var(--text-light); font-style: italic; margin-bottom: 20px; line-height: 1.8; padding-top: 20px; }
.testimonial-author { font-size: 13px; letter-spacing: 0.1em; color: var(--blush-mid); text-transform: uppercase; font-weight: 400; }

/* ===== CONTACT STRIP ===== */
.contact-strip { background: var(--warm-white); padding: 80px 0; }
.contact-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info h2 { font-family: var(--font-serif); font-size: 42px; font-weight: 300; color: var(--rose-dark); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.contact-detail-icon { color: var(--blush-mid); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-detail-text { color: var(--text-light); }
.contact-detail-text strong { display: block; color: var(--rose-dark); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; margin-bottom: 2px; }
.contact-detail-text a { color: var(--text-light); }
.contact-detail-text a:hover { color: var(--blush-mid); }

/* ===== FOOTER ===== */
footer { background: var(--rose-dark); color: rgba(255,255,255,0.7); padding: 50px 0 30px; font-size: 13px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px;
  margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { font-family: var(--font-serif); font-size: 22px; color: #fff; font-weight: 300; margin-bottom: 12px; }
.footer-col h4 { color: #fff; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; font-weight: 400; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--blush-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.4); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blush-light) 0%, #dfc0ca 100%);
  padding: 80px 30px; text-align: center;
}
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(42px, 5vw, 64px); font-weight: 300; color: var(--rose-dark); margin-bottom: 12px; }
.page-hero p { color: var(--text-light); font-size: 17px; }
.breadcrumb { font-size: 12px; letter-spacing: 0.1em; color: var(--blush-mid); text-transform: uppercase; margin-bottom: 12px; }
.breadcrumb a { color: var(--blush-mid); }

/* ===== ZABIEGI ===== */
.zabieg-section { padding: 80px 0; }
.zabieg-section:nth-child(even) { background: var(--warm-white); }
.zabieg-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.zabieg-section:nth-child(even) .zabieg-inner { direction: rtl; }
.zabieg-section:nth-child(even) .zabieg-inner > * { direction: ltr; }
.zabieg-img img { width: 100%; height: 480px; object-fit: cover; }
.zabieg-text h2 { font-family: var(--font-serif); font-size: 42px; font-weight: 300; color: var(--rose-dark); margin-bottom: 8px; }
.zabieg-text .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush-mid); margin-bottom: 20px; display: block; }
.zabieg-text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.85; }
.zabieg-text ul { margin: 16px 0 24px; }
.zabieg-text ul li { color: var(--text-light); padding: 6px 0 6px 20px; position: relative; font-size: 15px; }
.zabieg-text ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 1px; background: var(--gold); }

/* ===== CENNIK ===== */
.cennik-section { padding: 80px 0; }
.cennik-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.cennik-table th { background: var(--rose-dark); color: #fff; padding: 16px 24px; text-align: left; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; }
.cennik-table td { padding: 16px 24px; border-bottom: 1px solid #ece0e3; color: var(--text-light); }
.cennik-table tr:last-child td { border-bottom: none; }
.cennik-table tr:hover td { background: var(--blush-light); color: var(--rose-dark); }
.cennik-table .price { font-family: var(--font-serif); font-size: 20px; color: var(--blush-mid); font-weight: 400; white-space: nowrap; }
.cennik-category { font-family: var(--font-serif); font-size: 34px; font-weight: 300; color: var(--rose-dark); margin-bottom: 4px; }
.cennik-category-wrap { margin-bottom: 50px; }

/* ===== KONTAKT ===== */
.kontakt-section { padding: 80px 0; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; }
.kontakt-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-dark); }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid #e0d0d5; background: var(--warm-white);
  padding: 12px 16px; font-family: var(--font-sans); font-size: 15px;
  color: var(--text); border-radius: 2px; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blush-mid); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 12px; color: var(--text-light); }

/* ===== VOUCHER ===== */
.voucher-section { padding: 80px 0; }
.voucher-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: start; }
.voucher-card-preview {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #4e2f3a 100%);
  padding: 60px 50px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.voucher-card-preview::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
}
.voucher-card-preview h3 { font-family: var(--font-serif); font-size: 32px; font-weight: 300; margin-bottom: 8px; }
.voucher-card-preview p { opacity: 0.7; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 30px; }
.voucher-card-preview .voucher-amount { font-family: var(--font-serif); font-size: 70px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 30px; }
.voucher-card-preview .voucher-name { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; }

/* ===== COOKIE ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--rose-dark); color: rgba(255,255,255,0.85);
  padding: 18px 30px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; z-index: 999; font-size: 13px;
  transform: translateY(100%); transition: transform 0.4s;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--blush-light); }
.cookie-btn { background: var(--blush-mid); color: #fff; border: none; padding: 8px 22px; cursor: pointer; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.1em; border-radius: 2px; flex-shrink: 0; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--warm-white); padding: 20px 30px; border-top: 1px solid #e0d0d5; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li { border-bottom: 1px solid #e0d0d5; }
  nav a { display: block; padding: 14px 0; }
  nav a::after { display: none; }
  .nav-voucher { display: inline-block; margin-top: 10px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .zabieg-inner { grid-template-columns: 1fr; }
  .zabieg-section:nth-child(even) .zabieg-inner { direction: ltr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .voucher-grid { grid-template-columns: 1fr; }
}
