/* ============================================================
   Sklep Medyczny Mrągowo - BOWART | style.css
   Polish medical rental & orthopedic shop: teal + amber + bone
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --teal-900: #0b3943;
  --teal-700: #146273;
  --teal-500: #1f8fa8;
  --teal-300: #6fb8c9;
  --teal-100: #c9e2e9;
  --teal-50:  #e8f2f5;

  --amber-700: #a85e0c;
  --amber-500: #e89413;
  --amber-300: #f4bf65;
  --amber-100: #fbe5b8;

  --slate-900: #1a2530;
  --slate-700: #35495c;
  --slate-500: #627489;
  --slate-400: #8996a7;
  --slate-300: #aeb9c8;
  --slate-200: #cdd4de;
  --slate-100: #e5e9ef;

  --bone: #faf6ed;
  --paper: #fcf9f1;
  --ivory: #f4edda;

  --white: #ffffff;
  --text: #1c2026;

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius: 10px;
  --radius-sm: 6px;

  --shadow-sm: 0 2px 8px rgba(11, 57, 67, 0.07);
  --shadow-md: 0 12px 28px rgba(11, 57, 67, 0.11);
  --shadow-lg: 0 24px 50px rgba(11, 57, 67, 0.18);
  --shadow-xl: 0 36px 72px rgba(11, 57, 67, 0.22);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Unbounded', 'Helvetica Neue', sans-serif;
  line-height: 1.15;
  color: var(--teal-900);
  font-weight: 700;
  letter-spacing: -0.015em;
}

p { margin: 0; }

a {
  color: var(--teal-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--amber-700); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(252, 249, 241, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--slate-100);
  background: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--teal-900);
  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--teal-900);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-300);
  position: relative;
  box-shadow: 0 6px 14px rgba(11, 57, 67, 0.30);
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--amber-500);
}

.logo-mark svg { width: 26px; height: 26px; position: relative; z-index: 1; }

.logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber-700);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: var(--slate-700);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: var(--teal-900);
  background: var(--teal-50);
}

.main-nav a.nav-cta {
  background: var(--amber-500);
  color: var(--teal-900);
  padding: 11px 22px;
  border-radius: 100px;
  margin-left: 10px;
  box-shadow: 0 6px 14px rgba(232, 148, 19, 0.32);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-nav a.nav-cta svg { width: 15px; height: 15px; }

.main-nav a.nav-cta:hover {
  background: var(--amber-700);
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--slate-100);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  transition: all var(--transition);
}

.burger:hover { background: var(--teal-50); border-color: var(--teal-300); }

.burger span {
  width: 100%;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--amber-500);
  color: var(--teal-900);
  box-shadow: 0 8px 20px rgba(232, 148, 19, 0.35);
  font-weight: 700;
}

.btn-primary:hover {
  color: var(--white);
  background: var(--amber-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(168, 94, 12, 0.40);
}

.btn-dark {
  background: var(--teal-900);
  color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--teal-900);
  border: 2px solid var(--teal-900);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 104px;
  background: var(--bone);
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(31, 143, 168, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 148, 19, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-900);
  color: var(--amber-300);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 6px 14px rgba(11, 57, 67, 0.18);
}

.hero-tag svg { width: 14px; height: 14px; }

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin-bottom: 22px;
  color: var(--teal-900);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero h1 span.accent {
  color: var(--amber-700);
  position: relative;
  display: inline-block;
}

.hero h1 span.accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: var(--amber-300);
  opacity: 0.5;
  z-index: -1;
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--slate-500);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 2px solid var(--teal-900);
  max-width: 540px;
}

.hero-metric .num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--teal-900);
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-metric .lbl {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin-top: 8px;
  display: block;
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--teal-100);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-frame {
  position: absolute;
  inset: -14px -14px 18px 18px;
  border: 2px solid var(--amber-500);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -36px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--amber-500);
  max-width: 280px;
}

.hero-badge .ico {
  width: 42px;
  height: 42px;
  background: var(--teal-900);
  color: var(--amber-300);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge .ico svg { width: 22px; height: 22px; }

.hero-badge strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  color: var(--teal-900);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.hero-badge span {
  font-size: 0.78rem;
  color: var(--slate-500);
}

.hero-stamp {
  position: absolute;
  top: 32px;
  right: -24px;
  background: var(--amber-500);
  color: var(--teal-900);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(3deg);
  border: 2px solid var(--teal-900);
}

/* ===== STRIP USP ===== */
.strip {
  background: var(--teal-900);
  color: var(--slate-100);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-500), var(--amber-300), var(--amber-500));
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-item:last-child { border-right: none; }

.strip-icon {
  width: 46px;
  height: 46px;
  background: rgba(244, 191, 101, 0.14);
  border: 1px solid var(--amber-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-300);
  flex-shrink: 0;
}

.strip-icon svg { width: 22px; height: 22px; }

.strip-item strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.02rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}

.strip-item span {
  font-size: 0.84rem;
  color: var(--teal-300);
  line-height: 1.5;
}

/* ===== SECTIONS ===== */
.section {
  padding: 104px 0;
  position: relative;
}

.section.section-alt { background: var(--ivory); }
.section.section-bone { background: var(--bone); }
.section.section-dark { background: var(--teal-900); color: var(--slate-100); }

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: 18px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--amber-500);
}

.section-head h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 14px;
  color: var(--teal-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head h2 span.accent { color: var(--amber-700); }

.section.section-dark .section-head h2 { color: var(--white); }
.section.section-dark .section-eyebrow { color: var(--amber-300); }
.section.section-dark .section-eyebrow::before,
.section.section-dark .section-eyebrow::after { background: var(--amber-300); }

.section-head p {
  color: var(--slate-500);
  font-size: 1.04rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

.section.section-dark .section-head p { color: var(--slate-300); }

/* ===== KATEGORIE (categories grid) ===== */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--teal-900);
  display: flex;
  flex-direction: column;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-300);
  box-shadow: var(--shadow-md);
  color: var(--teal-900);
}

.cat-card:hover::before { transform: scaleX(1); }

.cat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--teal-900);
  color: var(--amber-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.cat-card:hover .cat-icon {
  background: var(--amber-500);
  color: var(--teal-900);
}

.cat-icon svg { width: 26px; height: 26px; }

.cat-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.08rem;
  color: var(--teal-900);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.cat-card p {
  color: var(--slate-500);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.cat-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--amber-700);
  font-weight: 600;
}

.cat-card .arrow svg { width: 14px; height: 14px; transition: transform var(--transition); }
.cat-card:hover .arrow svg { transform: translateX(3px); }

/* ===== WYPOŻYCZALNIA (rental) ===== */
.rental-block {
  background: var(--teal-900);
  border-radius: var(--radius-xl);
  padding: 64px 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.rental-block::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: var(--amber-500);
  border-radius: 50%;
  opacity: 0.16;
  filter: blur(20px);
}

.rental-block::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: var(--teal-500);
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(30px);
}

.rental-block > * { position: relative; z-index: 1; }

.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.rental-block h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rental-block h2 .accent { color: var(--amber-300); }

.rental-block .lead {
  color: var(--slate-200);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

.rental-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.rental-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.rental-list li:hover {
  background: rgba(244, 191, 101, 0.12);
  border-color: var(--amber-500);
  transform: translateX(4px);
}

.rental-list .icn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--amber-500);
  color: var(--teal-900);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-list .icn svg { width: 20px; height: 20px; }

.rental-list strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.rental-list span {
  font-size: 0.85rem;
  color: var(--teal-300);
}

/* ===== O FIRMIE (about) ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-lg);
  background: var(--teal-100);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 140px;
  height: 140px;
  background: var(--amber-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-year {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--teal-900);
  color: var(--amber-300);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--amber-500);
}

.about-year .num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
  color: var(--amber-300);
  letter-spacing: -0.03em;
}

.about-year .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-200);
  margin-top: 6px;
  display: block;
}

.about-text h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-text h2 .accent { color: var(--amber-700); }

.about-text p {
  color: var(--slate-500);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p strong { color: var(--teal-900); font-weight: 700; }

.about-points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.about-points li .check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--teal-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-points li .check svg { width: 14px; height: 14px; }

.about-points li strong { color: var(--teal-900); font-weight: 700; }

/* ===== ORARI / SEDE ===== */
.sede-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sede-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.sede-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.35rem;
  color: var(--teal-900);
  margin-bottom: 6px;
  font-weight: 700;
}

.sede-card .sede-sub {
  color: var(--slate-500);
  font-size: 0.92rem;
  margin-bottom: 26px;
}

.hours-table {
  list-style: none;
}

.hours-table li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--slate-100);
  font-size: 0.96rem;
}

.hours-table li:last-child { border-bottom: none; }

.hours-table .day {
  font-weight: 600;
  color: var(--teal-900);
}

.hours-table .time {
  color: var(--amber-700);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.92rem;
}

.hours-table li.is-closed .time { color: var(--slate-400); font-style: italic; font-family: 'Inter', sans-serif; font-weight: 500; }

.hours-table li.today {
  margin: 8px -14px;
  padding: 14px;
  background: var(--amber-500);
  color: var(--teal-900);
  border-radius: 10px;
  border-bottom-color: transparent;
}

.hours-table li.today .day,
.hours-table li.today .time { color: var(--teal-900); }

.sede-info {
  background: var(--teal-900);
  color: var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.sede-info::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 148, 19, 0.22), transparent 65%);
}

.sede-info > * { position: relative; z-index: 1; }

.sede-info h3 {
  color: var(--white);
  font-family: 'Unbounded', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.sede-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.sede-row:last-of-type { border-bottom: none; }

.sede-row .icon {
  width: 40px;
  height: 40px;
  background: rgba(244, 191, 101, 0.14);
  border: 1px solid var(--amber-500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-300);
  flex-shrink: 0;
}

.sede-row .icon svg { width: 20px; height: 20px; }

.sede-row .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 4px;
  font-weight: 600;
}

.sede-row .val {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.sede-row .val a { color: var(--amber-300); }
.sede-row .val a:hover { color: var(--white); }

.sede-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 22px;
  background: var(--amber-500);
  color: var(--teal-900);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
}

.sede-map-btn:hover {
  background: var(--white);
  color: var(--teal-900);
  transform: translateY(-2px);
}

.sede-map-btn svg { width: 15px; height: 15px; }

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open],
.faq-item:hover {
  border-color: var(--amber-300);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--teal-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  letter-spacing: -0.015em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--amber-500);
  color: var(--teal-900);
}

.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--slate-500);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ===== CONTATTI ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  color: var(--teal-900);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-card > p {
  color: var(--slate-500);
  margin-bottom: 32px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-rows {
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-rows li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--ivory);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.contact-rows li:hover {
  border-color: var(--amber-300);
  transform: translateX(3px);
}

.contact-rows .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--teal-900);
  color: var(--amber-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-rows .icon svg { width: 18px; height: 18px; }

.contact-rows .lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-rows .val {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: -0.015em;
}

.contact-rows .val a { color: var(--teal-900); }
.contact-rows .val a:hover { color: var(--amber-700); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--teal-900);
  color: var(--slate-300);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--amber-500);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 148, 19, 0.10), transparent 65%);
  pointer-events: none;
}

.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand .logo-mark {
  background: rgba(244, 191, 101, 0.12);
  color: var(--amber-300);
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: var(--amber-300); }

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--slate-300);
  max-width: 340px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: -0.015em;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--amber-500);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--slate-300);
  font-size: 0.92rem;
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--amber-300);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--slate-300);
}

.footer-contact-item strong {
  color: var(--amber-300);
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact-item a { color: var(--white); }
.footer-contact-item a:hover { color: var(--amber-300); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--slate-300);
}

.footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-legal a { color: var(--slate-300); }
.footer-legal a:hover { color: var(--amber-300); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-layout { gap: 44px; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .strip-item { border-right: none; padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rental-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--slate-100);
    gap: 4px;
  }
  .main-nav.active { display: flex; }
  .main-nav a { padding: 14px 16px; width: 100%; border-radius: var(--radius-sm); }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 10px; justify-content: center; }
  .burger { display: flex; align-items: center; }
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 80px; }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .about-accent { top: -14px; left: 14px; width: 100px; height: 100px; }
  .about-year { bottom: -18px; right: 14px; padding: 18px 22px; }

  .cats-grid { grid-template-columns: 1fr; }
  .sede-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; gap: 20px; }
  .rental-block { padding: 48px 32px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  .header-inner { height: 72px; }
  .main-nav { top: 72px; }

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.85rem; }

  .hero h1 { font-size: 2rem; }
  .hero-lead { font-size: 1rem; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-metrics { grid-template-columns: 1fr 1fr; gap: 18px; }

  .hero-badge { left: 10px; bottom: 14px; padding: 12px 16px; max-width: 240px; }
  .hero-badge .ico { width: 34px; height: 34px; }
  .hero-stamp { top: 14px; right: 10px; padding: 8px 14px; font-size: 0.72rem; }

  .sede-card, .sede-info { padding: 32px 26px; }
  .contact-card { padding: 36px 26px; }
  .rental-block { padding: 48px 24px; }
  .rental-block h2 { font-size: 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .logo-text { font-size: 1.05rem; }
  .logo-sub { font-size: 0.6rem; }
  .logo-mark { width: 44px; height: 44px; }

  .faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
  .faq-item .faq-body { padding: 0 22px 22px; font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 1.8rem; }
}

@media print {
  .site-header, .site-footer, .burger, .hero-ctas {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}
