/* Lima's Pilates — original design (static port) */

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

:root {
  --bg:        #faf8f3;
  --white:     #ffffff;
  --green:     #6b8e55;
  --dark:      #2d3e2d;
  --text:      #555;
  --muted:     #666;
  --faint:     #999;
  --border:    rgba(107,142,85,0.15);
  --shadow:    0 16px 48px rgba(45,62,45,0.12);
  --shadow-sm: 0 4px 20px rgba(45,62,45,0.10);
  --serif:     Georgia, serif;
  --sans:      system-ui, -apple-system, sans-serif;
  --radius:    8px;
}

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; }

h1, h2, h3 { font-family: var(--serif); color: var(--dark); }
h1 { font-size: clamp(40px, 7vw, 76px); font-weight: 200; line-height: 1.1; letter-spacing: -2px; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 200; line-height: 1.2; letter-spacing: -1px; }
h3 { font-size: 20px; font-weight: 700; }
p  { color: var(--text); line-height: 1.75; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
.section    { padding: 140px 0; }
.section--sandy   { background: var(--bg); }
.section--white   { background: var(--white); }
.section--gradient{ background: linear-gradient(135deg, #f0ece4 0%, #faf8f3 100%); }
.section--dark    { background: var(--dark); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,0.65); }

/* legacy aliases used in inner pages */
.section--cream { background: var(--bg); }

/* ---- Section label ---- */
.label {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(107,142,85,0.6);
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}
.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar__logo { display: flex; align-items: center; }
.navbar__logo img { height: 48px; width: auto; mix-blend-mode: multiply; }
.navbar__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar__links a { font-size: 14px; color: var(--dark); transition: color 0.2s; }
.navbar__links a:hover, .navbar__links a.active { color: var(--green); }
.btn-nav {
  padding: 10px 24px;
  background: var(--dark);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-nav:hover { background: #3d5240; }

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

/* 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: 24px;
  padding: 80px 48px 48px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--dark); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .btn-primary { font-family: var(--sans); font-size: 13px; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 18px 44px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s;
  box-shadow: 0 8px 32px rgba(45,62,45,0.2);
}
.btn-primary:hover { background: #3d5240; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 18px 44px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-green {
  display: inline-block;
  background: rgba(107,142,85,0.95);
  color: var(--white);
  padding: 20px 48px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(45,62,45,0.25);
  transition: background 0.25s;
}
.btn-green:hover { background: var(--green); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  padding: 18px 44px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-link, .link-more {
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.btn-link:hover, .link-more:hover { color: #4a6e3a; }

.link-arrow {
  display: inline-block;
  color: var(--dark);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1.5px solid var(--green);
  padding-bottom: 3px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--green); }

.btn-group { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/slika-1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,62,45,0.72) 0%, rgba(45,62,45,0.45) 100%);
}
.hero__content {
  position: relative; z-index: 10;
  max-width: 680px;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__label {
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107,142,85,0.6);
  margin-bottom: 32px;
}
.hero__label p {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin: 0;
}
.hero h1 { color: var(--white); margin-bottom: 32px; }
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 500px;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: linear-gradient(135deg, #ffffff 0%, rgba(107,142,85,0.03) 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  transition: all 0.35s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card__img { height: 260px; overflow: hidden; flex-shrink: 0; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card__img img { transform: scale(1.04); }
.service-card__body { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.service-card__tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.service-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card h3 span { font-size: 13px; color: var(--faint); font-weight: 400; }
.service-card p { font-size: 15px; color: var(--muted); line-height: 1.7; flex-grow: 1; margin-bottom: 20px; }
.service-card__price { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--dark); margin-bottom: 16px; }
.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ---- Split layout ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__img { order: 2; }
.split--reverse .split__text, .split--reverse .split__content { order: 1; }
.split__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__text, .split__content { max-width: 520px; }
.split__text h2, .split__content h2 { margin-bottom: 28px; }
.split__text p, .split__content p { font-size: 17px; margin-bottom: 20px; }

/* ---- Section header ---- */
.section-header { margin-bottom: 80px; }
.section-header--center { text-align: center; }
.section-header--center p { max-width: 580px; margin: 0 auto; }
.section-header .label { margin-bottom: 20px; }
.section-header h2 { font-weight: 700; color: var(--dark); margin-bottom: 0; }

/* ---- Schedule ---- */
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.schedule-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.schedule-card__label, .schedule-card__program {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.schedule-card h3 { font-size: 18px; margin-bottom: 20px; }
.schedule-times { display: flex; flex-direction: column; gap: 10px; }
.schedule-time {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--dark);
}
.schedule-time__day {
  background: var(--bg); padding: 3px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); min-width: 72px; text-align: center;
}

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured { background: var(--dark); border-color: var(--dark); }
.pricing-card--featured h3, .pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card--featured p { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-card__per, .pricing-card--featured .pricing-card__name { color: rgba(255,255,255,0.5); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.pricing-card__name { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-card p { font-size: 13px; margin-bottom: 24px; }
.pricing-card__price { font-family: var(--serif); font-size: 54px; font-weight: 200; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.pricing-card__per { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid var(--border); margin-bottom: 32px; }
.pricing-card--featured .pricing-card__features { border-top-color: rgba(255,255,255,0.12); }
.pricing-card__features li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.65); }
.pricing-card__features li::before { content: ''; display: inline-block; width: 16px; height: 1px; background: var(--green); flex-shrink: 0; }
.btn-outline-sm { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 14px 24px; background: transparent; color: var(--dark); border: 1.5px solid rgba(45,62,45,0.25); border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.2s; }
.btn-outline-sm:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }
.btn-white-sm { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 14px 24px; background: var(--white); color: var(--dark); border: 1.5px solid var(--white); border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.2s; }
.btn-white-sm:hover { background: transparent; color: var(--white); }

/* ---- Price table ---- */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.price-table th { text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding: 12px 20px; background: var(--bg); border-bottom: 2px solid var(--border); }
.price-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.price-table td:last-child { font-weight: 600; color: var(--dark); text-align: right; }
.price-table tr:hover td { background: rgba(250,248,243,0.6); }

/* ---- Page hero (inner pages) ---- */
.page-hero { padding: 140px 0 80px; background: var(--bg); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(34px, 5vw, 62px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; max-width: 560px; color: var(--text); }

/* ---- CTA banner ---- */
.cta-banner { background: var(--dark); padding: 120px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 540px; margin: 0 auto 48px; }
.cta-banner .btn-group { justify-content: center; }

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

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; }
.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: 22px 0; text-align: left; font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--dark); gap: 20px; cursor: pointer; background: none; border: none; transition: color 0.2s; }
.faq-btn:hover { color: var(--green); }
.faq-icon { width: 22px; height: 22px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--green); flex-shrink: 0; 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: 22px; font-size: 14px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item__label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.contact-item__value { font-size: 15px; font-weight: 500; color: var(--dark); }
.contact-item__sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 280px; margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(40%); }

/* ---- Form ---- */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select { padding: 12px 16px; border: 1px solid rgba(107,142,85,0.25); border-radius: 4px; font-family: inherit; font-size: 14px; color: var(--dark); background: var(--white); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.flash { padding: 14px 20px; border-radius: 4px; font-size: 13px; font-weight: 500; display: none; margin-top: 14px; }
.flash.success { background: rgba(107,142,85,0.1); color: #3d5240; border: 1px solid var(--green); display: block; }
.flash.error   { background: rgba(180,40,40,0.07); color: #a83030; border: 1px solid #c05050; display: block; }

/* ---- O-meni specific ---- */
.about-hero { padding-top: 100px; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.credential { font-size: 14px; padding: 10px 18px; background: rgba(107,142,85,0.06); border-radius: 4px; color: var(--dark); font-weight: 500; border: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { padding: 24px; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border); }
.value-card h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); }

/* ---- Booking form ---- */
.booking-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 64px; }
.booking-step { text-align: center; }
.booking-step__number { width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; font-weight: 300; margin: 0 auto 16px; }
.booking-step h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); cursor: pointer; padding: 4px 0; }
.radio-option input { accent-color: var(--green); }

/* ---- Sticky CTA (mobile) ---- */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; }
.sticky-cta a { display: block; width: 100%; background: var(--dark); color: var(--white); text-align: center; padding: 18px 24px; font-size: 15px; font-weight: 500; letter-spacing: 0.04em; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); 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; }

/* ---- Footer ---- */
.footer { background: var(--white); border-top: 1px solid #e5e7eb; }
.footer .container { padding-top: 64px; padding-bottom: 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__brand h3 { font-family: var(--sans); font-size: 17px; font-weight: 300; color: var(--dark); margin-bottom: 12px; }
.footer__brand p { font-size: 14px; color: var(--muted); }
.footer h4 { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--green); }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer__contact a:hover { color: var(--green); }
.footer__social { display: flex; gap: 16px; margin-top: 16px; }
.footer__social a { font-size: 14px; color: #9ca3af; transition: color 0.2s; }
.footer__social a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid #e5e7eb; padding: 24px 0; text-align: center; font-size: 14px; color: #9ca3af; }
.footer__legal { margin-top: 6px; font-size: 12px; color: #b0b7c0; }
.footer__legal a { color: #b0b7c0; text-decoration: none; }
.footer__legal a:hover { color: #6b7280; }

/* ---- Rezervacija ---- */
.type-tabs { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.type-tab { padding: 10px 24px; border: 1.5px solid var(--border); border-radius: 2px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); cursor: pointer; background: var(--white); transition: all 0.2s; font-family: inherit; }
.type-tab.active, .type-tab:hover { border-color: var(--dark); color: var(--dark); background: rgba(45,62,45,0.04); }
.type-tab.active { background: var(--dark); color: var(--white); }
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.service-option { display: none; }
.service-option.visible { display: grid; }
.option-card { border: 1.5px solid var(--border); border-radius: 4px; padding: 16px 20px; cursor: pointer; transition: all 0.2s; display: flex; flex-direction: column; gap: 4px; }
.option-card input[type=radio] { display: none; }
.option-card:has(input:checked), .option-card.selected { border-color: var(--dark); background: rgba(45,62,45,0.03); }
.option-card__name { font-size: 14px; font-weight: 600; color: var(--dark); }
.option-card__detail { font-size: 12px; color: var(--muted); }
.option-card__price { font-size: 16px; font-weight: 700; color: var(--green); margin-top: 4px; }
.sms-notice { background: rgba(107,142,85,0.08); border: 1px solid rgba(107,142,85,0.25); border-radius: 4px; padding: 14px 18px; font-size: 14px; color: #3d5e30; display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; }

/* ---- Shop / Product cards ---- */
.shop-categories { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.shop-cat-btn {
  padding: 10px 24px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: var(--white);
  cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.shop-cat-btn:hover { border-color: var(--dark); color: var(--dark); }
.shop-cat-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__img {
  height: 360px; overflow: hidden;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__img-placeholder {
  font-size: 48px; opacity: 0.25;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: var(--white);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.product-badge--dark { background: var(--dark); }
.product-card__body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product-card__cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 6px;
}
.product-card h3 { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.product-card__desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-card__price { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--dark); }
.product-card__price small { font-size: 13px; color: var(--muted); font-family: var(--sans); font-weight: 400; display: block; }
.btn-buy {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-buy:hover { background: var(--green); }

.shop-section-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
/* ── Shop tabs ───────────────────────────────────────── */
.shop-tabs-bar {
  position: sticky; top: 64px; z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.shop-tabs-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.shop-tabs {
  display: flex; gap: 0;
}
.shop-vat-note {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.05em;
}
.shop-tab {
  background: none; border: none; cursor: pointer;
  padding: 20px 32px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.shop-tab:hover { color: var(--dark); }
.shop-tab.active { color: var(--dark); border-bottom-color: var(--dark); }

/* ── Premium product rows ─────────────────────────────── */
.product-list { display: flex; flex-direction: column; }

.product-row {
  display: grid;
  grid-template-columns: 55% 45%;
  height: 520px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.product-row:last-child { border-bottom: 1px solid var(--border); }

.product-row:nth-child(even) { grid-template-columns: 45% 55%; }
.product-row:nth-child(even) .product-row__img { order: 2; }
.product-row:nth-child(even) .product-row__info { order: 1; }

.product-row__img {
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.product-row__img > img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 20px;
  display: block;
  transition: transform 0.8s ease;
}
.product-row:hover .product-row__img > img { transform: scale(1.02); }

.product-row__thumbs {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex; gap: 8px;
}
.product-row__thumbs img {
  width: 52px; height: 40px;
  object-fit: cover;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  opacity: 0.6;
}
.product-row__thumbs img.active,
.product-row__thumbs img:hover { opacity: 1; border-color: #fff; }

.product-row__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
  background: var(--white);
}
.section--cream .product-row__info { background: var(--cream); }

.product-row__cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.product-row__name {
  font-family: var(--serif);
  font-size: 34px; font-weight: 300;
  color: var(--dark); line-height: 1.2;
  margin-bottom: 20px;
}
.product-row__badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--green); color: #fff;
  padding: 4px 10px; border-radius: 100px;
  vertical-align: middle; margin-left: 12px;
}
.product-row__desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; margin-bottom: 44px;
  max-width: 400px;
}
.product-row__footer {
  display: flex; align-items: center; gap: 32px;
}
.product-row__price {
  font-family: var(--serif);
  font-size: 30px; font-weight: 300;
  color: var(--dark);
}
.product-row__note {
  font-family: var(--sans);
  font-size: 13px; color: var(--muted);
  font-weight: 400; display: block; margin-top: 2px;
}
.btn-row-buy {
  display: inline-flex; align-items: center;
  background: var(--dark); color: #fff;
  padding: 14px 32px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-row-buy:hover { opacity: 0.75; }

.voucher-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voucher-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  gap: 12px; position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.voucher-card:hover { transform: translateY(-4px); }
.voucher-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(107,142,85,0.12);
}
.voucher-card__label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.voucher-card__amount { font-family: var(--serif); font-size: 56px; font-weight: 200; color: var(--white); line-height: 1; }
.voucher-card__desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-top: 4px; }
.btn-buy-white {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s; margin-top: 8px; width: fit-content;
}
.btn-buy-white:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .voucher-grid { grid-template-columns: 1fr 1fr; }
  .product-row { grid-template-columns: 1fr 1fr !important; height: 440px; }
  .product-row__info { padding: 48px 48px; }
  .product-row__name { font-size: 28px; }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .voucher-grid { grid-template-columns: 1fr; }
  .product-row {
    grid-template-columns: 1fr !important;
    min-height: unset;
  }
  .product-row__img { height: 340px; order: 1 !important; }
  .product-mosaic__col--right { margin-top: 260px; }
  .product-tile__img { height: 280px; }
  .product-tile__name { font-size: 22px; }
  .product-row__info { order: 2 !important; padding: 40px 32px; }
  .product-row__name { font-size: 26px; }
  .product-row__desc { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-row__info { padding: 32px 24px; }
  .product-mosaic { flex-direction: column; }
  .product-mosaic__col--right { margin-top: 0; }
  .product-tile__img { height: 240px; }
  .product-row__name { font-size: 22px; }
  .product-row__price { font-size: 24px; }
}


/* ====== PRODUCT MOSAIC ====== */
.product-mosaic {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 16px 0 100px;
}
.product-mosaic__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.product-mosaic__col--right { margin-top: 380px; }

.product-tile__img {
  width: 100%; height: 380px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.product-tile__img > img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  display: block;
  transition: transform 0.7s ease;
}
.product-tile:hover .product-tile__img > img { transform: scale(1.04); }

.product-tile__thumbs {
  position: absolute;
  bottom: 12px; left: 12px;
  display: flex; gap: 6px;
}
.product-tile__thumbs img {
  width: 44px; height: 34px;
  object-fit: cover; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.4);
  opacity: 0.6; transition: all 0.2s;
}
.product-tile__thumbs img.active,
.product-tile__thumbs img:hover { opacity: 1; border-color: #fff; }

.product-tile__info { padding: 20px 0 0; }
.product-tile__cat {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
}
.product-tile__name {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 300;
  margin: 0 0 10px; line-height: 1.2;
}
.product-tile__badge {
  display: inline-block; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--green); color: #fff;
  padding: 3px 8px; border-radius: 2px;
  margin-left: 10px; vertical-align: middle;
}
.product-tile__desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-bottom: 20px;
}
.product-tile__footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.product-tile__price {
  font-size: 22px;
  font-family: var(--font-serif);
}
.product-tile__note {
  display: block; font-size: 11px;
  color: var(--muted); margin-top: 2px;
  letter-spacing: 0.05em;
}
.btn-tile-buy {
  display: inline-block;
  padding: 10px 22px;
  background: var(--dark); color: #fff;
  text-decoration: none;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-tile-buy:hover { background: var(--green); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .container { padding: 0 48px; }
  .hero__content { padding: 0 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 440px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .navbar__links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: block; }
  .hero__content { padding: 0 24px; }
  .hero__bg { background-attachment: scroll; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__img { order: 0; }
  .split--reverse .split__text, .split--reverse .split__content { order: 0; }
  .split__img { aspect-ratio: 3/2; }
  .services-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 0 60px; }
  .booking-steps { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { padding: 80px 0; }
  .btn-group { flex-direction: column; align-items: center; }
  .service-options { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .photo-strip { height: 200px; }
}

/* ---- Auth nav states ---- */
.nav-login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark, #2d3e2d) !important;
  opacity: .75;
  transition: opacity .2s;
}
.nav-login-link:hover { opacity: 1; }
.navbar.scrolled .nav-login-link { color: var(--dark, #2d3e2d) !important; }

.nav-logged-in {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  background: var(--dark, #2d3e2d) !important;
  border-color: transparent !important;
  padding-left: 8px !important;
}
.nav-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.nav-user-label {
  font-size: 13.5px;
  font-weight: 600;
}

/* ── Hero two-path ──────────────────────────────────────── */
.hero-paths {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 520px;
}
.hero-path {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.13);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 22px 24px 20px;
  text-decoration: none;
  transition: all .22s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hero-path:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-path--online {
  border-color: #6b8e55;
  background: rgba(107,142,85,0.30);
}
.hero-path--online:hover {
  background: rgba(107,142,85,0.45);
  border-color: #8aac6e;
}
.hero-path__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
}
.hero-path__desc {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  font-family: Georgia, serif;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero-path__cta {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-block;
  width: fit-content;
}
.hero-path--online .hero-path__cta {
  background: rgba(107,142,85,0.5);
}
@media (max-width: 540px) {
  .hero-paths { flex-direction: column; max-width: 100%; }
  .hero-path { min-width: 0; }
}

/* ── Locked preview cards ───────────────────────────────── */
.locked-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.locked-card {
  background: #fff;
  border: 1px solid #e8e4dd;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.locked-card__thumb {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.locked-card__content {
  filter: blur(4px);
  opacity: .55;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}
.locked-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.locked-card__lock {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.locked-card__body {
  padding: 14px 16px;
}
.locked-card__type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: 4px;
}
.locked-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.locked-card__meta {
  font-size: 12px;
  color: var(--muted, #6b7280);
  margin-top: 3px;
  filter: blur(3px);
  user-select: none;
}
@media (max-width: 640px) {
  .locked-grid { grid-template-columns: 1fr 1fr; }
  .locked-grid .locked-card:last-child { display: none; }
}
