/* ===================================================================
   Iwona Klonek — Fotografia noworodkowa
   Odwzorowanie makiety (czysty HTML/CSS/JS)
   =================================================================== */

:root {
  --green:        #7C8564;
  --green-dark:   #5F6B4A;
  --green-deep:   #4E5840;
  --cream:        #F5F1EA;
  --cream-2:      #EFE9DF;
  --white:        #FFFFFF;
  --brown:        #A9836B;
  --brown-dark:   #8C6A54;
  --ink:          #3A3A34;
  --ink-soft:     #6B6B62;
  --line:         #E3DBCE;

  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 14px 40px rgba(90, 80, 60, .10);
  --shadow-sm:    0 6px 18px rgba(90, 80, 60, .08);

  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Jost", -apple-system, "Segoe UI", sans-serif;
  --script: "Dancing Script", "Segoe Script", cursive;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- Typography helpers ---------- */
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: .3px;
}
.section-title.center { margin: 0 auto; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--ink-soft); margin-top: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 11px 22px; font-size: .68rem; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { background: var(--cream-2); transform: translateY(-2px); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 241, 234, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--green-dark); letter-spacing: .5px; }
.logo-sub { font-size: .58rem; letter-spacing: 4px; text-transform: uppercase; color: var(--brown); margin-top: 3px; }

.nav { display: flex; gap: 26px; }
.nav a {
  font-size: .78rem; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ink); font-weight: 400; padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--green); transition: width .25s ease;
}
.nav a:hover { color: var(--green-dark); }
.nav a:hover::after { width: 100%; }

.hamburger { display: none; background: none; border: 0; width: 34px; height: 30px; cursor: pointer; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--ink); margin: 6px 0; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { padding: 70px 0 40px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; color: var(--ink);
}
.hero-lead { font-family: var(--script); font-weight: 600; font-size: 2rem; color: var(--green); margin-top: 10px; }
.hero-desc { color: var(--ink-soft); margin-top: 18px; max-width: 440px; }
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.hero-badges li { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--ink-soft); }
.ico { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.hero-media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  aspect-ratio: 1/1; object-fit: cover;
}

/* ===================================================================
   TRUST BAR
   =================================================================== */
.trust { padding: 60px 0; background: var(--white); }
.trust-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-top: 42px;
}
.trust-grid li { text-align: center; padding: 0 6px; }
.trust-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--cream); color: var(--brown); margin-bottom: 14px;
}
.trust-ico svg {
  width: 26px; height: 26px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.trust-grid strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--green-dark); font-weight: 600; }
.trust-grid span:last-child { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }

/* ===================================================================
   COOPERATION / STEPS
   =================================================================== */
.cooperation { padding: 80px 0; }
.cooperation-inner { display: grid; grid-template-columns: 0.72fr 1.6fr; gap: 54px; align-items: center; }
.cooperation-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 3/4; object-fit: cover; }
.cooperation-text .section-title { margin-bottom: 44px; }

.steps { display: flex; justify-content: space-between; margin: 0 0 38px; }
.step { flex: 1; text-align: center; position: relative; padding: 0 4px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 27px; left: 50%; width: 100%;
  border-top: 2px dotted var(--line); z-index: 0;
}
.step-ico {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--cream);
  margin-bottom: 16px;
}
.step-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--brown); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.step-no { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); font-weight: 600; }
.step-desc { display: block; color: var(--ink-soft); font-size: .82rem; margin-top: 6px; line-height: 1.4; }

/* ===================================================================
   CATEGORIES
   =================================================================== */
.categories { padding: 80px 0; background: var(--white); }
.cat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  margin: 44px 0 40px;
}
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; display: block;
  box-shadow: var(--shadow-sm);
}
.cat-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; gap: 2px; padding: 18px 8px;
  text-align: center; color: #fff;
  background: linear-gradient(to top, rgba(60,58,44,.72), rgba(60,58,44,.05) 55%, transparent);
}
.cat-overlay strong { font-family: var(--serif); font-size: 1.02rem; letter-spacing: .5px; text-transform: uppercase; font-weight: 500; }
.cat-overlay small { font-size: .68rem; opacity: .9; letter-spacing: .5px; }

/* ===================================================================
   WHY STUDIO
   =================================================================== */
.why { padding: 80px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.checklist { margin: 26px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: .72rem;
  display: flex; align-items: center; justify-content: center;
}
.why-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.1; object-fit: cover; }

/* ===================================================================
   PRODUCTS
   =================================================================== */
.products { padding: 80px 0; background: var(--white); }
.prod-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin: 44px 0 40px;
}
.prod-card { text-align: center; }
.prod-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.prod-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-top: 14px; color: var(--ink); }
.price { color: var(--brown); font-size: .82rem; letter-spacing: 1px; margin-top: 2px; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.reviews { padding: 84px 0; background: var(--green); color: #fff; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 46px 0 40px; }
.review-card {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 30px 26px; backdrop-filter: blur(4px);
}
.stars { color: #F0D9A8; letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { font-size: .96rem; line-height: 1.7; color: #F4F1E9; }
.review-card cite { display: block; margin-top: 18px; font-style: normal; font-weight: 500; color: #fff; letter-spacing: .5px; }

/* ===================================================================
   FAQ + CTA
   =================================================================== */
.faq-section { padding: 84px 0; }
.faq-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 54px; align-items: start; }
.accordion { margin: 30px 0 30px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 400; color: var(--ink);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc-mark { font-size: 1.5rem; color: var(--green); transition: transform .25s ease; flex: none; }
.acc-item.open .acc-mark { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-body p { padding: 0 0 20px; color: var(--ink-soft); }

.faq-cta {
  background: var(--cream-2); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-cta img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.faq-cta-body { padding: 30px 28px 34px; text-align: center; }
.faq-cta-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 22px; }

/* ===================================================================
   BOOKING STRIP
   =================================================================== */
.booking { background: var(--green-dark); color: #fff; padding: 46px 0; }
.booking-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.booking-kicker { text-transform: uppercase; letter-spacing: 2px; font-size: .72rem; color: #DCE0CE; }
.booking h2 { font-family: var(--serif); font-weight: 500; font-size: 2rem; margin-top: 4px; }

/* ===================================================================
   INSTAGRAM
   =================================================================== */
.insta { padding: 84px 0; background: var(--white); }
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin: 34px 0 36px; }
.insta-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); transition: transform .4s ease, filter .4s ease; filter: saturate(.95); }
.insta-grid img:hover { transform: scale(1.04); filter: saturate(1.1); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--green-deep); color: #E9E7DC; padding: 64px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: #C7CBB2; }
.footer-brand p { margin-top: 16px; font-size: .9rem; color: #C9CBBC; max-width: 320px; }
.footer-col h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: #fff; margin-bottom: 16px; }
.footer-col p { font-size: .9rem; margin-bottom: 8px; color: #C9CBBC; }
.footer-col a:hover { color: #fff; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col .btn { margin-top: 14px; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { font-size: .78rem; color: #A7AC97; text-align: center; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .insta-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 10px 24px 20px; transform: translateY(-140%); transition: transform .35s ease;
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .header-cta { display: none; }
  .hamburger { display: block; }

  .hero { padding: 40px 0 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { order: -1; }

  .cooperation-inner,
  .why-inner,
  .faq-inner { grid-template-columns: 1fr; gap: 36px; }
  .cooperation-media { order: -1; max-width: 320px; margin: 0 auto; }
  .steps { flex-wrap: wrap; gap: 24px 0; }
  .step { flex: 0 0 33.333%; }
  .step:not(:last-child)::after { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .booking-inner { flex-direction: column; text-align: center; align-items: center; }
  .booking h2 { font-size: 1.6rem; }
}

@media (max-width: 420px) {
  .trust-grid,
  .cat-grid,
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1; }
}
