html, body { background: var(--bg-body); }
/* =======================================================================
   Fotografujemy.pl — Global Styles (homepage + subpages)
   Notes:
   - Unifies header/footer styling used via /includes/*.html
   - Adds missing components used on podstrony: card, grid, form, table, etc.
   ======================================================================= */

/* --- 1. Tokens + Reset ------------------------------------------------- */
:root {
  /* Cinematic Dark — premium tokens */
  --bg-body: #000000;
  --bg-surface: #0B0B0C;
  --bg-elev: rgba(255,255,255,0.04);
  --bg-dark: #000000;

  --text-main: #F5F5F7;
  --text-muted: rgba(245,245,247,0.72);
  --text-subtle: rgba(245,245,247,0.55);

  --accent: #C8A439;        /* champagne gold */
  --accent-dark: #8C6D1B;
  --accent-soft: rgba(200,164,57,0.18);

  --border: rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.18);

  --shadow-sm: 0 10px 30px rgba(0,0,0,0.45);
  --shadow-md: 0 18px 55px rgba(0,0,0,0.55);
  --shadow-lg: 0 26px 90px rgba(0,0,0,0.65);

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: 'Playfair Display', ui-serif, Georgia, serif;

  --radius-lg: 26px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --container-width: 1240px;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --header-blur: 14px;

  --section-pad-y: clamp(56px, 6.5vw, 120px);
}


/* --- Base body --------------------------------------------------------- */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background:
    radial-gradient(1200px circle at 18% -20%, rgba(200,164,57,0.18), transparent 60%),
    radial-gradient(900px circle at 110% 22%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(700px circle at 50% 120%, rgba(255,255,255,0.04), transparent 60%),
    var(--bg-body);
}
img { max-width: 100%; height: auto; display: block; }

/* --- 2. Typography + Utilities ---------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.2; }
h3 { font-size: 1.2rem; line-height: 1.25; }

.muted { color: var(--text-muted); }
.small { font-size: 0.92rem; }
.lead { font-size: 1.08rem; }

.display-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
}
.heading-md {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.9rem;
}
.subheading { color: var(--text-muted); font-size: 1.06rem; }

/* --- 3. Layout + Common components ------------------------------------ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

main.container { padding-bottom: 70px; }

.section { padding: clamp(34px, 5vw, 86px) 0; }
.section-header { text-align: center; margin-bottom: clamp(28px, 4vw, 60px); }
.section-title { margin-bottom: 16px; }
.section-title p { margin-top: 6px; }

.page-head {
  padding: clamp(26px, 4vw, 44px) 0 10px;
}
.page-head h1 { margin: 10px 0 8px; }
.breadcrumbs { font-size: 0.9rem; color: var(--text-muted); }
.breadcrumbs a { color: inherit; border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { color: var(--text-main); border-bottom-color: rgba(255,255,255,0.28); }

/* Grid helpers used on subpages */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }

/* Card (global) */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
a.card { display: block; color: inherit; }
a.card:hover, .card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.card h2 { margin-bottom: 8px; }
.card h3 { margin-bottom: 6px; }
.card p { margin-top: 8px; }
.card .hero-actions { margin: 14px 0 0; }

.note {
  background: rgba(212, 196, 183, 0.22);
  border: 1px solid rgba(212, 196, 183, 0.38);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: rgba(245,245,247,0.92);
  font-size: 0.95rem;
}
.note a { border-bottom: 1px solid rgba(255,255,255,0.28); }
.note a:hover { border-bottom-color: rgba(255,255,255,0.40); }

/* Media cards (Usługi) */
.media-card { padding: 0; overflow: hidden; }
.card-media { position: relative; overflow: hidden; border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.card-media { aspect-ratio: 16 / 10; }
.card-media.card-media-square { aspect-ratio: 1 / 1; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 0.6s var(--ease-out); }
a.media-card:hover .card-media img { transform: scale(1.08); }
.card-body {
  padding: 16px 18px 20px;
}

/* Global links */
a { color: inherit; text-decoration: none; }
a:hover { color: var(--text-main); }

.card-body h3 { font-family: var(--font-serif); }

/* Figure (services/portfolio pages) */
.figure { margin: 0 0 14px; }
.figure img {
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px var(--border);
}
.figure figcaption { margin-top: 10px; }

/* List styling (ul/ol with .list) */
.list { display: grid; gap: 8px; margin-top: 10px; }
.list li {
  position: relative;
  padding-left: 18px;
  color: rgba(245,245,247,0.92);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-dark);
}

/* Keep ordered lists readable (no custom bullet) */
ol.list { list-style: decimal; padding-left: 18px; }
ol.list li { padding-left: 0; }
ol.list li::before { display: none; }

/* Table */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
}
.table th, .table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
  text-align: left;
}
.table thead th {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
}
.table tr:last-child td { border-bottom: 0; }

/* Callout */
.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 196, 183, 0.45);
  background: rgba(212, 196, 183, 0.20);
}
.callout strong { font-family: var(--font-serif); font-size: 1.05rem; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  cursor: pointer;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn:not(.btn-primary):not(.btn-outline):not(.btn-dark):hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #0B0B0C;
  border-color: rgba(200,164,57,0.55);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.btn-primary:hover { background: rgba(200,164,57,0.92); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-main);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.28); }

.btn-dark {
  background: rgba(255,255,255,0.10);
  color: var(--text-main);
  padding: 0.75rem 1.25rem;
  font-size: 0.92rem;
}
.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.link-arrow:hover { gap: 12px; border-bottom-color: rgba(255,255,255,0.28); }

.link-underlined {
  border-bottom: 1px solid rgba(255,255,255,0.28);
  display: inline-block;
  width: fit-content;
}


.btn-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.25);
  margin-top: 14px;
}

/* Badge */
.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  background: rgba(255,255,255,0.06);
}

/* --- 4. Header (global via includes/header.html) ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.68);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--text-main);
  color: #000000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1200;
}
.skip-link:focus { left: 12px; }

.topbar {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  font-size: 0.9rem;
}
.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--text-main); }
.topbar-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.topbar-address { color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 520px; }
.sep { opacity: 0.6; }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  position: relative; /* for mobile dropdown nav */
}

.brand {
  color: var(--text-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
 .brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
  opacity: 0.95;
}
.brand-name, .brand-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.dot { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  color: rgba(245,245,247,0.92);
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(200,164,57,0.65);
  transition: 0.25s var(--ease-out);
}
.site-nav a:not(.btn):hover::after { width: 100%; }
.site-nav .btn { padding: 0.7rem 1.1rem; font-size: 0.92rem; }

.nav-toggle, .menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px 10px;
  cursor: pointer;
  box-shadow: 0 10px 26px var(--border);
}
.nav-toggle span, .menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(28,28,30,0.92);
  border-radius: 99px;
}
.nav-toggle span + span, .menu-toggle span + span { margin-top: 6px; }

/* --- 5. Hero (homepage) ------------------------------------------------ */

/* Hero cover (homepage v2) */
.hero-cover {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  padding: clamp(28px, 5vw, 72px) 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero-cover__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.75) 100%),
    radial-gradient(900px circle at 20% 20%, rgba(200,164,57,0.22), transparent 55%),
    radial-gradient(700px circle at 85% 40%, rgba(255,255,255,0.06), transparent 60%);
}
.hero-cover__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}
.hero-cover__copy {
  padding-top: clamp(8px, 2vw, 22px);
}
.hero-cover__card { align-self: center; }

.hero-form-card {
  background: rgba(11,11,12,0.72);
  border-color: rgba(255,255,255,0.16);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-form-title { margin: 0; font-size: 1.35rem; }
.hero-form .field { margin-top: 12px; }
.hero-form button { width: 100%; margin-top: 12px; }

.hero-form-meta { margin-top: 10px; }

.mini-trust {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 8px;
}
.mini-trust__item { color: rgba(245,245,247,0.86); font-size: 0.92rem; }

.section-head { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 8px; }
.section-alt { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }

/* Portfolio grid (homepage v2) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.portfolio-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}
.portfolio-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.portfolio-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.03);
  transform: scale(1.01);
  transition: transform 0.55s var(--ease-out);
}
.portfolio-tile:hover img { transform: scale(1.06); }

.final-cta { text-align: left; }

/* Responsive */
@media (max-width: 980px) {
  .hero-cover { min-height: auto; padding: 46px 0; }
  .hero-cover__grid { grid-template-columns: 1fr; }
  .hero-cover__veil { background: linear-gradient(180deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.80) 55%, rgba(0,0,0,0.92) 100%); }
  .hero-cover__card { margin-top: 8px; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

.hero-modern {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 80px);
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  flex-wrap: wrap;
}
.stat-item strong { display: block; font-size: 1.5rem; font-family: var(--font-serif); }
.stat-item span { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero Image Composition */
.hero-visual { position: relative; }
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 20px 20px 60px var(--border);
}
.floating-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 0.9rem;
}
.floating-card .icon { color: #FFD700; font-size: 1.2rem; }

/* --- 6. Bento Grid Services (homepage) --------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
  background: #000;
  transition: transform 0.4s var(--ease-out);
}
.bento-card:hover { transform: scale(0.985); }

.card-bg { position: absolute; inset: 0; z-index: 0; }
.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.82;
}
.bento-card:hover .card-bg img { transform: scale(1.08); opacity: 0.62; }

.card-content { position: relative; z-index: 1; }
.card-content h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 8px; }
.card-content p { font-size: 0.95rem; opacity: 0.92; margin-bottom: 0; }

/* Specific Card Layouts */
.card-large { grid-column: span 2; grid-row: span 2; }
.card-utility {
  background: var(--bg-surface);
  border: 1px solid var(--border);
}
.card-utility .card-content.light-mode {
  color: var(--text-main);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- 7. Process Section (homepage) ------------------------------------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 80px);
}

.process-steps { display: flex; flex-direction: column; gap: 34px; }
.step {
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.step-num { font-size: 0.78rem; font-weight: 800; color: var(--accent-dark); margin-bottom: 5px; display: block; letter-spacing: 0.12em; }
.step h4 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { font-size: 0.95rem; color: var(--text-muted); }

/* --- 8. Portfolio Strip (homepage) ------------------------------------- */
.scrolling-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.scrolling-gallery img {
  border-radius: var(--radius-md);
  height: 300px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(18%);
  transition: transform 0.35s var(--ease-out), filter 0.35s var(--ease-out);
}
.scrolling-gallery img:hover { filter: grayscale(0%); transform: translateY(-5px); }

.mood-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

/* Portfolio page grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-grid .figure { margin: 0; }
.gallery-grid figcaption { margin-top: 10px; font-weight: 600; }

/* --- 9. Footer (global via includes/footer.html) ----------------------- */
.site-footer {
  background: linear-gradient(180deg, #121212 0%, #0e0e0f 100%);
  color: rgba(245,245,247,0.92);
  padding: 72px 0 28px;
  margin-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  margin-bottom: 44px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 10px;
}
.footer-brand .dot { color: var(--accent); }
.site-footer p { color: rgba(245,245,247,0.70); }


.site-footer .muted { color: rgba(245,245,247,0.70); }
.site-footer .muted.small { color: rgba(245,245,247,0.60); }
.site-footer strong { color: rgba(245,245,247,0.92); }

.footer-title {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,247,0.65);
  margin-bottom: 14px;
  font-weight: 800;
}

.footer-links { display: grid; gap: 10px; }
.footer-links a {
  color: rgba(245,245,247,0.72);
  border-bottom: 1px solid transparent;
  width: fit-content;
}
.footer-links a:hover {
  color: white;
  border-bottom-color: rgba(245,245,247,0.30);
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.footer-bottom a { color: rgba(245,245,247,0.72); }
.footer-bottom a:hover { color: white; }

/* --- 10. Forms (Kontakt) ---------------------------------------------- */
.form { display: grid; gap: 14px; margin-top: 12px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 650; font-size: 0.95rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.07);
  color: var(--text-main);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: rgba(168,155,144,0.55);
  box-shadow: 0 0 0 4px rgba(212, 196, 183, 0.35);
  background: rgba(255,255,255,0.08);
}

/* --- 11. Responsiveness ------------------------------------------------ */
@media (max-width: 980px) {
  .topbar-address { display: none; }
  .topbar-inner { font-size: 0.88rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .floating-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 0.9rem;
}

  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .card-large { grid-column: span 1; grid-row: auto; min-height: 320px; }

  .split-layout { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .scrolling-gallery { grid-template-columns: 1fr; }
  .scrolling-gallery img { height: 260px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }

  /* Mobile nav dropdown */
  .nav-toggle, .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(92vw, 420px);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;

    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a:not(.btn),
  .site-nav a.btn {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    justify-content: flex-start;
  }
  .site-nav a:not(.btn):hover { background: rgba(255,255,255,0.06); }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .btn { justify-content: center; margin-top: 6px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { gap: 8px; }
  .badge-pill { letter-spacing: 0.08em; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* --- Wedding upgrades (homepage + film page) ---------------------------- */
.section-alt {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trust-strip span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.img-tile {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.img-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s var(--ease-out);
}
.img-tile:hover img { transform: scale(1.07); }

.testimonials { align-items: stretch; }
.testimonial { display: flex; flex-direction: column; justify-content: space-between; }
.quote {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(245,245,247,0.92);
  margin: 0 0 12px;
}
.quote::before { content: "“"; }
.quote::after { content: "”"; }

.faq { display: grid; gap: 12px; margin-top: 12px; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-main);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--accent-dark);
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 10px 0 0; color: var(--text-muted); }

.pricing-grid { margin-top: 18px; }
.pricing-card { height: 100%; display: flex; flex-direction: column; gap: 12px; }
.pricing-card .list { margin: 0; }
.pricing-card .btn { margin-top: auto; }

.pricing-card-featured {
  border-color: var(--border);
  box-shadow: 0 18px 50px var(--border);
  position: relative;
}
.pricing-card-featured::before{
  content: "Polecane";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.09);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.contact-cta .card { text-align: left; }

@media (max-width: 900px) {
  .trust-strip { margin-top: 14px; }
}

.footer-cta { margin-top: 14px; }


::selection{ background: rgba(200,164,57,0.35); color: #0B0B0C; }


.cinematic-divider{height:1px;background:linear-gradient(90deg,transparent,rgba(200,164,57,0.35),transparent);margin:var(--section-pad-y) auto 0;max-width:var(--container-width);}

