/* =============================================
   LIMA'S PILATES — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --cream:      #faf8f3;
  --cream-dark: #f0ece4;
  --green:      #2d3e2d;
  --olive:      #6b8e55;
  --olive-light:#8aac6e;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --muted:      #777;
  --border:     rgba(107,142,85,0.18);
  --shadow:     0 8px 40px rgba(45,62,45,0.10);
  --shadow-lg:  0 20px 60px rgba(45,62,45,0.15);
  --radius:     4px;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 300; line-height: 1.15; letter-spacing: -0.5px; }
h1 { font-size: clamp(40px, 7vw, 80px); letter-spacing: -2px; }
h2 { font-size: clamp(28px, 4vw, 48px); letter-spacing: -1px; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 400; }
p  { color: var(--muted); line-height: 1.8; }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--olive);
  margin-bottom: 20px;
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section    { padding: 120px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--green); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.7); }
.section--dark .label { color: var(--olive-light); border-color: var(--olive-light); }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(45,62,45,0.08); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
}

.navbar__logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.02em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.navbar__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--olive); }
.navbar__links a.active { color: var(--olive); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--green);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--olive) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 80px 48px 48px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--green);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--olive); }
.mobile-nav .btn-primary { font-size: 14px; margin-top: 12px; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: transparent;
  color: var(--green);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  background: transparent;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-olive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  background: var(--olive);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--olive);
  transition: all var(--transition);
}
.btn-olive:hover { background: transparent; color: var(--olive); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  background: var(--white);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  transition: all var(--transition);
}
.btn-white:hover { background: transparent; color: var(--white); }

.btn-link {
  color: var(--olive);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.btn-link:hover { color: var(--green); border-color: var(--green); }

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,20,10,0.72) 0%, rgba(45,62,45,0.45) 60%, rgba(0,0,0,0.2) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero__inner { max-width: 680px; }

.hero h1 {
  font-weight: 200;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.75;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Marquee strip --- */
.marquee-strip {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 36px;
}
.marquee-track span.dot {
  color: var(--olive-light);
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Section headers --- */
.section-header { margin-bottom: 72px; }
.section-header--center { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; font-size: 17px; }
.section-header--center p { margin: 0 auto; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--olive);
}
.service-card__img {
  height: 280px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition), transform var(--transition);
}
.service-card:hover .service-card__img img {
  filter: grayscale(60%);
  transform: scale(1.04);
}
.service-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
}
.service-card h3 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  flex-grow: 1;
  margin-bottom: 24px;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.service-card__price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--green);
}

/* --- Split section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__img { order: 2; }
.split--reverse .split__content { order: 1; }

.split__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}
.split__img:hover img { filter: grayscale(40%); }

.split__content h2 { margin-bottom: 24px; color: var(--green); }
.split__content p { font-size: 17px; margin-bottom: 20px; }
.split__content .btn-primary { margin-top: 16px; }

/* --- Stats bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.stat {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
}
.stat__number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Why us grid --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px;
  transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }

.why-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 400;
}
.why-card p { font-size: 15px; color: rgba(255,255,255,0.65); }

/* --- Schedule --- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.schedule-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
}
.schedule-card__program {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.schedule-card h3 {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 16px;
}
.schedule-times { display: flex; flex-direction: column; gap: 8px; }
.schedule-time {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.schedule-time__day {
  display: inline-block;
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 70px;
  text-align: center;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}
.testimonial-card__stars {
  color: var(--olive);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-card__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--olive);
}
.pricing-card--featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.pricing-card--featured p { color: rgba(255,255,255,0.7); }
.pricing-card--featured h3 { color: var(--white); }
.pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card--featured .pricing-card__per { color: rgba(255,255,255,0.6); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-card__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-card__name { color: var(--olive-light); }

.pricing-card h3 { font-size: 22px; color: var(--green); margin-bottom: 8px; }
.pricing-card p { font-size: 14px; margin-bottom: 28px; }

.pricing-card__price {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__per {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.pricing-card--featured .pricing-card__features { border-top-color: rgba(255,255,255,0.15); }

.pricing-card__features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.75); }

.pricing-card__features li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.pricing-card--featured .pricing-card__features li::before { color: var(--olive-light); }

/* Price table (for cenik page) */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
}
.price-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 20px;
  background: var(--cream);
  border-bottom: 2px solid var(--border);
}
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.price-table td:last-child {
  font-weight: 600;
  color: var(--green);
  text-align: right;
}
.price-table tr:hover td { background: var(--cream); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  gap: 20px;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--olive); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--olive);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-item__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--olive);
}
.contact-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
}
.contact-item__sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107,142,85,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* --- Map --- */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(40%); }

/* --- Booking / Rezervacija --- */
.booking-wrap {
  background: var(--cream);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid var(--border);
}
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.booking-step {
  text-align: center;
}
.booking-step__number {
  width: 48px;
  height: 48px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--olive);
  margin: 0 auto 16px;
}
.booking-step h3 { font-size: 16px; margin-bottom: 6px; }
.booking-step p { font-size: 14px; }

/* Calendly embed placeholder */
.calendly-notice {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
}
.calendly-notice h3 { font-size: 22px; color: var(--green); margin-bottom: 12px; }
.calendly-notice p { font-size: 15px; margin-bottom: 28px; }

/* Questionnaire */
.questionnaire {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  margin-top: 32px;
}
.questionnaire h3 { font-size: 20px; color: var(--green); margin-bottom: 8px; }
.questionnaire > p { font-size: 14px; margin-bottom: 28px; }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.radio-option input { accent-color: var(--olive); width: 16px; height: 16px; }

/* --- About page --- */
.about-hero {
  padding-top: 140px;
  padding-bottom: 80px;
}
.about-hero .split { gap: 100px; }
.credentials { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--green);
}
.credential::before {
  content: '';
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b8e55'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.value-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
}
.value-card__icon { font-size: 24px; margin-bottom: 14px; }
.value-card h3 { font-size: 18px; color: var(--green); margin-bottom: 8px; }
.value-card p { font-size: 14px; }

/* --- Page hero (inner pages) --- */
.page-hero {
  padding: 140px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); color: var(--green); margin-bottom: 16px; }
.page-hero p { font-size: 19px; max-width: 580px; }

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 380px;
}
.photo-strip__item {
  overflow: hidden;
}
.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition), transform 0.5s;
}
.photo-strip__item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* --- CTA banner --- */
.cta-banner {
  background: var(--green);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/slika-2.png') center/cover;
  opacity: 0.08;
  filter: grayscale(100%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer__social a:hover { border-color: var(--olive-light); color: var(--olive-light); }

.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* --- Mobile sticky CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--green);
  padding: 14px 24px;
}
.sticky-cta a {
  display: block;
  text-align: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Scroll animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Notification / Flash --- */
.flash {
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: none;
  margin-top: 16px;
}
.flash.success { background: rgba(107,142,85,0.12); color: var(--olive); border: 1px solid var(--olive); display: block; }
.flash.error   { background: rgba(180,40,40,0.08); color: #b43030; border: 1px solid #b43030; display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .navbar__inner { padding: 0 32px; }
  .hero__content { padding: 0 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 480px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar__inner { padding: 0 20px; }
  .hero__content { padding: 0 20px; }
  .section { padding: 80px 0; }

  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: block; }

  .hero h1 { font-size: clamp(32px, 8vw, 52px); }
  .hero__cta .btn-outline { display: none; }
  .hero__bg { background-attachment: scroll; }

  .services-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__img { order: 0; }
  .split--reverse .split__content { order: 0; }
  .split__img { aspect-ratio: 3/2; }

  .why-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .booking-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 300px; }
  .booking-wrap { padding: 28px 20px; }

  .page-hero { padding: 110px 0 60px; }
  .page-hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .cta-banner { padding: 72px 0; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .photo-strip { display: grid; grid-template-columns: 1fr 1fr; height: 240px; }
  .hero__scroll { display: none; }
}
