/* ================================================
   IceDrop PL — Główny arkusz stylów
   Paleta: biel + teal/zielono-turkusowy
   Czcionka: Syne + Inter (Google Fonts)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-900: #0d3d3a;
  --teal-700: #0f5f58;
  --teal-500: #0e9488;
  --teal-400: #14b8a8;
  --teal-300: #2dd4c8;
  --teal-100: #ccfbf1;
  --teal-50:  #f0fdfa;
  --white:    #ffffff;
  --gray-50:  #f8fafb;
  --gray-100: #f1f5f4;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(14,148,136,.12);
  --shadow-md: 0 8px 32px rgba(14,148,136,.16);
  --shadow-lg: 0 20px 60px rgba(14,148,136,.20);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ───────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; color: var(--gray-900); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--gray-500); }

.text-teal  { color: var(--teal-500); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ── Layout Helpers ───────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(14,148,136,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(14,148,136,.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal-500);
  border: 2px solid var(--teal-400);
}
.btn-outline:hover {
  background: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--teal-700);
}
.btn-white:hover {
  background: var(--teal-50);
  transform: translateY(-2px);
}

/* ── Badges / Tags ────────────────────────────── */
.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-teal { background: var(--teal-100); color: var(--teal-700); }
.badge-white { background: rgba(255,255,255,.2); color: var(--white); border: 1px solid rgba(255,255,255,.4); }

/* ── Section Headers ──────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin: 12px 0 20px; }
.section-header p  { max-width: 580px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── Header / Navbar ──────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1240px;
  margin: 0 auto;
  transition: padding var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.site-header.scrolled .header-inner { padding: 14px 24px; }
.site-header.scrolled .nav-link     { color: var(--gray-700); }
.site-header.scrolled .nav-link:hover { color: var(--teal-500); }
.site-header.scrolled .logo-text    { color: var(--teal-700); }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-300));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-text span { color: var(--teal-300); }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .92rem;
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.site-header.scrolled .nav-link.active {
  background: var(--teal-100);
  color: var(--teal-700);
}

.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--gray-700); }

/* ── Hero Section ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-ice.jpg');
  background-size: cover;
  background-position: center;
  opacity: .45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,61,58,.92) 0%,
    rgba(14,148,136,.55) 60%,
    rgba(45,212,200,.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge { margin-bottom: 28px; }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--teal-300); display: block; }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 1.05rem;
}
.hero-phone-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.3);
}
.hero-phone-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; }
.hero-phone:hover { color: var(--teal-300); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.5s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Stats row in hero */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
}
.hero-stat {
  padding: 28px 24px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--teal-300); }
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── USP Cards ────────────────────────────────── */
.usp-section { background: var(--gray-50); }

.usp-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.usp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.usp-card:hover::before { transform: scaleX(1); }

.usp-icon {
  width: 64px; height: 64px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.usp-icon svg { width: 30px; height: 30px; stroke: var(--teal-500); fill: none; stroke-width: 1.8; }

.usp-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.usp-card p  { font-size: .92rem; line-height: 1.65; }

/* ── Services ─────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body { padding: 28px 24px; }
.service-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.service-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card-body p  { font-size: .9rem; margin-bottom: 20px; }
.service-card-body .price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal-700);
}
.service-card-body .price-line small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* ── How It Works ─────────────────────────────── */
.how-section { background: var(--teal-900); }

.step-card {
  position: relative;
  text-align: center;
}
.step-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(45,212,200,.12);
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}
.step-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(14,148,136,.4);
}
.step-icon-wrap svg { width: 36px; height: 36px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.step-card h3 { color: var(--white); margin-bottom: 12px; }
.step-card p  { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ── Gallery ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,61,58,.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

/* ── Pricing ──────────────────────────────────── */
.price-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--teal-400); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--teal-500);
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--white);
}
.price-card.featured h3,
.price-card.featured .price-amount { color: var(--white); }
.price-card.featured p { color: rgba(255,255,255,.75); }
.price-card.featured .price-feature { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.12); }
.price-card.featured .price-feature svg { stroke: var(--teal-300); }

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--teal-400), var(--teal-300));
  color: var(--teal-900);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-card h3 { margin-bottom: 8px; }
.price-tag { margin: 24px 0; }
.price-amount {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--teal-700);
}
.price-amount small { font-size: 1rem; font-weight: 400; color: var(--gray-500); }

.price-features { margin: 24px 0 32px; }
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.price-feature svg { width: 18px; height: 18px; stroke: var(--teal-500); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ── Testimonials ─────────────────────────────── */
.testimonials-section { background: var(--gray-50); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { color: #f59e0b; font-size: 1rem; }
.testimonial-text {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-300));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .92rem; color: var(--gray-900); }
.author-role { font-size: .8rem; color: var(--gray-500); }

/* ── CTA Banner ───────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/ice-bags.jpg');
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p  { color: rgba(255,255,255,.75); max-width: 520px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Partners / Clients ───────────────────────── */
.clients-section { background: var(--gray-50); padding: 60px 0; }
.clients-label {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 32px;
  font-weight: 600;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.client-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: .04em;
  transition: color var(--transition);
}
.client-logo:hover { color: var(--teal-500); }

/* ── About Split ──────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }

.about-badge-float {
  position: absolute;
  bottom: 32px; right: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-float .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-500);
  line-height: 1;
}
.about-badge-float .label { font-size: .8rem; color: var(--gray-500); margin-top: 4px; }

.about-list { margin: 28px 0; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.about-list-icon {
  width: 36px; height: 36px;
  background: var(--teal-50);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list-icon svg { width: 18px; height: 18px; stroke: var(--teal-500); fill: none; stroke-width: 2; }
.about-list-item h4 { font-size: .95rem; margin-bottom: 4px; }
.about-list-item p  { font-size: .85rem; }

/* ── Contact Form ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info-icon {
  width: 52px; height: 52px;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; stroke: var(--teal-500); fill: none; stroke-width: 1.8; }
.contact-info-item h4 { font-size: .9rem; color: var(--gray-500); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }
.contact-info-item p, .contact-info-item a { font-size: 1rem; font-weight: 600; color: var(--gray-900); }
.contact-info-item a:hover { color: var(--teal-500); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14,148,136,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success svg { width: 60px; height: 60px; stroke: var(--teal-500); fill: none; margin: 0 auto 16px; }
.form-success h3 { color: var(--teal-700); margin-bottom: 8px; }

/* ── Footer ───────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
}
.footer-main {
  padding: 80px 0 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-about { max-width: 300px; }
.footer-about .logo { margin-bottom: 20px; }
.footer-about p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-300); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--teal-400); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--teal-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: var(--teal-300); }

/* ── Page Hero (inner pages) ──────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: url('../images/ice-cubes.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 560px; font-size: 1.1rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a:hover { color: var(--teal-300); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ── Cookie Banner ────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gray-900);
  border-top: 2px solid var(--teal-500);
  z-index: 9999;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: .88rem; color: rgba(255,255,255,.7); }
.cookie-inner a { color: var(--teal-300); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-cookie-accept { background: var(--teal-500); color: var(--white); }
.btn-cookie-accept:hover { background: var(--teal-400); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.btn-cookie-decline:hover { color: var(--white); }

/* ── Animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Map placeholder ──────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  background: var(--gray-100);
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── Inner page content ───────────────────────── */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--teal-700); }
.prose h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.prose p  { margin-bottom: 16px; font-size: .97rem; line-height: 1.8; color: var(--gray-600); }
.prose ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }
.prose ul li { font-size: .97rem; color: var(--gray-600); margin-bottom: 8px; line-height: 1.7; }
.prose a  { color: var(--teal-500); text-decoration: underline; }
.last-update { font-size: .82rem; color: var(--gray-400); margin-bottom: 40px; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 28px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { padding: 20px 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px; gap: 4px; box-shadow: var(--shadow-md); border-top: 2px solid var(--teal-400); }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--gray-700); }
  .nav-link:hover { background: var(--teal-50); color: var(--teal-600); }
  .hamburger { display: flex; }
  .nav-cta { margin-left: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .form-card { padding: 32px 24px; }
  .price-cards { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}
