
:root {
  --blush: #F7EDEA;
  --champagne: #FFF7F0;
  --sage: #ECF4EF;
  --powder: #EEF4FB;
  --dark: #2F2F2F;
  --mid: #6E6E6E;
  --accent: #3A3A3A;
  --frame: #ffffff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: var(--dark); line-height: 1.6; background: white; }
h1, h2, h3, .logo { font-family: 'Cormorant Garamond', Georgia, serif; letter-spacing: .5px; }
/* Tight headings */
h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; margin: 0 0 8px; }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.08; margin: 6px 0 10px; }
h3 { font-size: 22px; line-height: 1.08; margin: 6px 0 8px; }

.container { width: min(1120px, 92vw); margin-inline: auto; padding: 24px 0; }
/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.9); backdrop-filter: saturate(150%) blur(8px); border-bottom: 1px solid #eaeaea; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 600; color: var(--dark); text-decoration: none; font-size: 22px; }
nav a { color: var(--dark); text-decoration: none; margin-left: 18px; font-weight: 600; }
nav a:hover { opacity: .7; }

.btn { background: var(--accent); color: white; padding: 12px 18px; border-radius: 999px; text-decoration: none; display: inline-block; border: 1px solid var(--accent); transition: transform .1s ease, opacity .2s ease, background .2s ease; text-align:center; white-space: nowrap; }
.btn.small { padding: 10px 14px; font-size: .95rem; }
.btn.center { align-self: center; }
.btn:hover { transform: translateY(-1px); opacity: .92; }
.btn.outline { background: transparent; color: var(--accent); }

.section { padding: 72px 0; }
.section.alt { background: var(--blush); }
.section.tight-top { padding-top: 40px; }
.section.tight-bottom { padding-bottom: 40px; } /* smaller gaps between sections */
.eyebrow { text-transform: uppercase; letter-spacing: .12em; color: var(--mid); font-size: .8rem; }
.lead { font-size: 1.15rem; color: var(--mid); max-width: 60ch; margin-top: 6px; }

.hero { background: linear-gradient(180deg, var(--champagne), white 50%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; }
.hero-media img { width: 100%; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,.08); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; }
.about-img { width: 100%; border-radius: 24px; box-shadow: 0 16px 50px rgba(0,0,0,.08); }

/* Work section (smaller photo + framed video) */
.work .work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.work-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 20px; box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.video-box { background: #fff; border: 1px solid #e6e6e6; border-radius: 16px; padding: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.06); aspect-ratio: 3/4; display: flex; }
.video { position: relative; flex: 1 1 auto; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 12px; }

/* Lists & cards */
.checks { list-style: disc inside; padding: 0; margin: 14px 0 0; }
.card-body ul { list-style: disc inside; padding-left: 0; margin: 0 0 8px; color: var(--mid); }
.prices { list-style: none; padding: 0; margin: 0 0 8px; color: var(--dark); }
.prices li { display:flex; justify-content: space-between; white-space: nowrap; }
.prices strong { white-space: nowrap; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: white; border: 1px solid #eee; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.04); display:flex; flex-direction:column; }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 18px; display:flex; flex-direction:column; gap:10px; }

/* Gallery — equal sizes */
.gallery .grid-gallery { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px; box-shadow: 0 8px 28px rgba(0,0,0,.05); }

/* Instagram preview card */
.insta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items:center; }
.insta-card { text-decoration: none; color: inherit; display: grid; grid-template-columns: 120px 1fr; gap: 12px; align-items:center; border: 1px solid #eee; padding: 12px; border-radius: 16px; box-shadow: 0 8px 22px rgba(0,0,0,.04); }
.insta-thumb { width: 120px; height: 120px; background-size: cover; background-position: center; border-radius: 12px; }
.insta-meta span { color: var(--mid); display:block; }
.insta-meta strong { display:block; margin-top: 6px; }

/* Reduce space between Instagram and Contact (already tight) */
.insta.section { padding-bottom: 24px; }
.contact.section { padding-top: 40px; padding-bottom: 20px; }

/* Framed contact card */
.contact-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; padding: 18px; border: 1px solid #eee; border-radius: 20px; background: var(--frame); box-shadow: 0 10px 40px rgba(0,0,0,.05); }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid #ddd; font: inherit; background: white; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form button { margin-top: 10px; }

/* Mini contact section */
.mini-grid { display: grid; gap: 10px; align-items: center; }
.mini-cards { display: flex; gap: 12px; flex-wrap: wrap; }
.mini { padding: 10px 14px; border: 1px solid #eee; border-radius: 12px; text-decoration: none; color: var(--dark); background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.04); }

/* Footer */
.site-footer { background: var(--dark); color: white; padding: 36px 0; }
.site-footer .logo { color: #fff; } /* white title */
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 22px; align-items: start; }
.site-footer a { color: white; opacity: .9; text-decoration: none; display: block; margin: 4px 0; }
.copy { opacity: .7; }
.note { color: var(--mid); margin-top: 14px; font-size: .95rem; }

/* Instagram floating button */
.insta-fab { position: fixed; right: 18px; bottom: 18px; background: var(--accent); color: white; width: 52px; height: 52px; display:flex; align-items:center; justify-content:center; border-radius: 999px; text-decoration:none; font-weight: 700; box-shadow: 0 10px 25px rgba(0,0,0,.18); }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .work .work-grid, .cards, .gallery .grid-gallery, .footer-grid, .contact-card, .insta-grid { grid-template-columns: 1fr; }
  .card img { height: 240px; }
  nav a { margin-left: 12px; }
}

.contact-mini.section { padding-top: 20px; }


/* Logo w nagłówku + znak graficzny */
.site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header .logo-mark {
  display: block;
  max-height: 40px;
  width: auto;
}


/* Karty cennika – sezony 2026 i 2027 */
.packages .cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

/* Bannerek Wesele z Klasą – wyróżnienie */
.section.wk-reco {
  background: var(--powder);
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  text-align: center;
}

.section.wk-reco .note {
  font-weight: 600;
  margin-bottom: 16px;
}

.section.wk-reco a img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* Na telefonie układ kart jeden pod drugim */
@media (max-width: 980px) {
  .packages .cards {
    grid-template-columns: 1fr;
  }
}
