/* ==========================================
   LANIPILATES STUDIO — DESIGN SYSTEM v3
   Fonts: Playfair Display & Inter
   
    --sage: #DCCBC4;
    --sage-dark: #8C5E55;
    --sage-soft: rgba(140, 94, 85, 0.14);
    --sage-soft: rgba(165, 114, 99, 0.14);
    --dark-moss: #312522;
    --dark-moss: #382A26;
   ========================================== */

/* ==========================================================
   1. DESIGN TOKENS (CSS CUSTOM PROPERTIES)
   ========================================================== */
:root {
  /* Elegant earthy palette */
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --sand: #FAFAFA;
  --sage: #DCCBC4;
  --sage-dark: #8C5E55;
  --sage-soft: rgba(140, 94, 85, 0.15);

  --dark-moss: #312522;
  --gold: #D4AF37;
  --gold-glow: rgba(212, 175, 55, 0.35);

  --ink: #2C2B29;
  --ink-light: #595652;
  --border: #DEDAD1;

  /* ── NEW: Glassmorphism tokens ── */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-blur: 18px;
  --glass-shadow: 0 8px 32px rgba(44, 43, 41, 0.08);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing & Sizes */
  --container-max: 1200px;
  --gutter: 32px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  /* Utilities */
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.25s ease;
  --shadow: 0 10px 40px -10px rgba(44, 43, 41, 0.08);
  --shadow-hover: 0 20px 50px -15px rgba(44, 43, 41, 0.15);

  /* ── NEW: Glow shadow for hover effects ── */
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.25), 0 0 60px rgba(212, 175, 55, 0.1);
  --glow-sage: 0 0 20px rgba(140, 94, 85, 0.24), 0 0 60px rgba(140, 94, 85, 0.1);
}

/* ==========================================================
   2. RESET
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  /* ── UPGRADED: More breathable line-height for body text ── */
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

/* ==========================================================
   4. LAYOUT
   ========================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.section {
  /* ── UPGRADED: More generous vertical padding for editorial feel ── */
  padding: 120px 0;
  position: relative;
}
.section--sand { background: var(--sand); }

/* ==========================================================
   5. TYPOGRAPHY — Luxurious Editorial Spacing
   ========================================================== */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  /* ── UPGRADED: Wider letter-spacing for premium feel ── */
  letter-spacing: 0.28em;
  color: var(--sage-dark);
  /* ── UPGRADED: More bottom margin for breathing room ── */
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  /* ── UPGRADED: Slightly more open heading line-height ── */
  line-height: 1.25;
  /* ── UPGRADED: More margin-bottom for visual separation ── */
  margin-bottom: 24px;
  /* ── NEW: Subtle negative tracking for editorial headings ── */
  letter-spacing: -0.01em;
}
.section__title em {
  font-style: italic;
  color: var(--sage-dark);
}
.section__subtitle {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 600px;
  /* ── UPGRADED: Generous paragraph line-height ── */
  line-height: 1.85;
}
.text-block p {
  font-size: 1.05rem;
  /* ── UPGRADED: More spacing between paragraphs ── */
  margin-bottom: 20px;
  color: var(--ink-light);
  /* ── UPGRADED: Generous line-height for readability ── */
  line-height: 1.85;
}
.section__header {
  text-align: center;
  /* ── UPGRADED: More spacing below section headers ── */
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================
   6. BUTTONS — Sharp, Minimalist
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--ink);
  color: var(--surface);
  border: 1px solid var(--ink);
}
.btn--primary:hover {
  background: transparent;
  color: var(--ink);
}

.btn--outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--surface);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* ==========================================================
   7. NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background var(--transition-fast),
              padding var(--transition-fast),
              box-shadow var(--transition-fast);
}
/* ── UPGRADED: Glassmorphism on scrolled nav ── */
.nav.scrolled {
  background: rgba(244, 241, 237, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage-dark);
  margin-top: 2px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color var(--transition-fast),
              background var(--transition-fast);
}
.nav__link:hover {
  color: var(--sage-dark);
  background: var(--sage-soft);
}
/* ── UPGRADED: Smoother expanding underline on nav hover ── */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 1.5px;
  background: var(--sage-dark);
  transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav__link:hover::after {
  left: 16px;
  right: 16px;
}
.nav__btn {
  margin-left: 16px;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

/* ==========================================================
   8. HERO — Parallax Background Section
   ========================================================== */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__content {
  max-width: 500px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.95rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--ink);
  text-transform: none;
  width: auto;
  pointer-events: none;
}
.hero__title span {
  display: block;
}
.hero__title span + span {
  margin-top: 6px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
}
.hero__eyebrow {
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}
.hero__since {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--ink-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 28px;
  opacity: 0.72;
}
.hero__since::before {
  content: '';
  width: 30px;
  height: 1px;
  background: rgba(140, 94, 85, 0.48);
}
.hero__desc {
  font-size: 1.18rem;
  color: var(--ink-light);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.85;
}
.hero__actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ==========================================================
   9. IMAGES & HERO VISUAL
   ========================================================== */
.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); /* elegant soft shadow */
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(44, 43, 41, 0.04));
  pointer-events: none;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-image__label {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: min(76%, 340px);
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(44, 43, 41, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  transition: top var(--transition), right var(--transition), bottom var(--transition), left var(--transition),
              padding var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition),
              border-radius var(--transition), max-width var(--transition);
}
.hero-image__line {
  display: block;
  width: 38px;
  height: 1px;
  background: rgba(140, 94, 85, 0.72);
}
.hero-image:hover img {
  transform: scale(1.03);
}

.img-wrapper {
  position: relative;
  border-radius: 160px 160px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.img-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: inherit;
  pointer-events: none;
}
.img-wrapper--hero {
  aspect-ratio: 4/5;
  background-color: var(--sand);
}
.img-wrapper--hero img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  filter: brightness(0.96) saturate(0.94) contrast(1.02);
  /* ── NEW: Subtle zoom on hover for depth ── */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.img-wrapper--hero:hover img {
  transform: scale(1.04);
}
.img-wrapper--tall {
  aspect-ratio: 3/4;
}
.img-wrapper--tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ── NEW: Hover zoom for tall images ── */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.img-wrapper--tall:hover img {
  transform: scale(1.04);
}

/* ==========================================================
   11. STUDIO (Split Grid)
   ========================================================== */
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section__grid--reverse .section__content { order: 2; }
.section__grid--reverse .section__visual { order: 1; }

/* ==========================================================
   10A. STUDIO GALLERY 
   ========================================================== */
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}
.studio-gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.studio-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.studio-gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.studio-gallery__item:hover img {
  transform: scale(1.04);
}
.studio-gallery__item--1 {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
}
.studio-gallery__item--2 {
  aspect-ratio: 4/5;
}
.studio-gallery__item--3 {
  aspect-ratio: 4/5;
  margin-top: 40px; /* Offset the right image */
}

/* ==========================================================
   11. O NAS (About — Dynamic Overlapping Cards)
   ========================================================== */
.o-nas-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}
.o-nas-grid:last-child { margin-bottom: 0; }
.o-nas-grid--reverse {
  grid-template-columns: 1.1fr 1fr;
}
.o-nas-grid--reverse .o-nas-content {
  order: -1;
  transform: translateX(40px);
}
.o-nas-grid--reverse .o-nas-visual { order: 2; }

.o-nas-visual {
  position: relative;
  z-index: 1;
}
.o-nas-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
.o-nas-img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.o-nas-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: none;
  /* ── NEW: Inner image zoom on hover ── */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.o-nas-img:hover img {
  transform: scale(1.04);
}
.o-nas-img--focus-right img {
  object-position: 62% center;
}
.o-nas-img--focus-left img {
  object-position: 58% center;
}

/* ── UPGRADED: O Nas content cards get glassmorphism ── */
.o-nas-content {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 64px 56px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  position: relative;
  z-index: 2;
  transform: translateX(-40px);
  transition: transform 0.5s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
/* ── NEW: Subtle hover ── */
@media (min-width: 993px) {
  .o-nas-content:hover {
    transform: translateX(-40px) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border-color: var(--sage);
  }
}
@media (max-width: 992px) {
  .o-nas-content:hover {
    transform: translateY(-45px) !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border-color: var(--sage);
  }
}

/* ==========================================================
   12. CHECKLIST
   ========================================================== */
.check-list {
  margin-top: 32px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%238C5E55' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: cover;
}

/* ==========================================================
   12A. STUDIO CALLOUTS
   ========================================================== */
.core-focus {
  max-width: 920px;
  margin: 64px auto 0;
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: var(--glass-shadow);
}
.core-focus__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.core-focus p {
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.85;
}
.core-focus p + p {
  margin-top: 16px;
}

/* ==========================================================
   13. OFERTA (Services — Staggered Grid)
   ========================================================== */
.eyebrow--gold {
  color: var(--gold);
}

.oferta-staggered-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .oferta-staggered-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 64px;
    column-gap: 32px;
  }
  .oferta-card-v2--offset-2, .oferta-card-v2--offset-4 {
    transform: translateY(80px);
  }
}

/* ── UPGRADED: Oferta cards minimal editorial styling ── */
.oferta-card-v2 {
  background: var(--surface);
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s ease;
  will-change: transform;
}

/* ── UPGRADED: Premium hover ── */
@media (hover: hover) {
  .oferta-card-v2:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: var(--sage);
    z-index: 10;
  }
}

/* Elegant Editorial Numbers */
.oferta-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
  opacity: 0.8;
  /* ── NEW: Subtle transition for hover colour shift ── */
  transition: opacity 0.3s ease, color 0.3s ease;
}
.oferta-card-v2:hover .oferta-number {
  opacity: 1;
}

.oferta-card-v2__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.oferta-card-v2__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-light);
  /* ── UPGRADED: Line-height for readability ── */
  line-height: 1.85;
}

/* ==========================================================
   14. PRICING — Glassmorphism Cards + Hover Glow
   ========================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* ── UPGRADED: Clean, flat Pricing cards ── */
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s ease;
}
/* ── UPGRADED: Elegant lift on hover ── */
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: var(--sage);
}
.pricing-card__header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.pricing-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.pricing-card__header p {
  font-size: 0.85rem;
  color: var(--sage-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-card__list {
  list-style: none;
}
.pricing-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-card__list li:last-child { border-bottom: none; }
.pricing-card__list span {
  font-size: 0.95rem;
  color: var(--ink-light);
}
.pricing-card__list strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

/* Regulamin Accordion */
.pricing-rules {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
/* ── UPGRADED: Regulamin also gets glass effect ── */
.regulamin-accordion {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  transition: border-color 0.3s ease;
}
.regulamin-accordion:hover {
  border-color: rgba(212, 175, 55, 0.2);
}
.regulamin-accordion summary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
  outline: none;
  list-style-type: '＋ ';
  transition: color var(--transition-fast);
}
.regulamin-accordion summary:hover {
  color: var(--sage-dark);
}
.regulamin-accordion[open] summary {
  list-style-type: 'ー ';
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.regulamin-content ol {
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
}
.regulamin-content li {
  margin-bottom: 12px;
  padding-left: 8px;
}

/* ==========================================================
   15. GRAFIK (Fitssey Booking)
   ========================================================== */
.booking-anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.booking-switch {
  max-width: 1040px;
  margin: 0 auto;
}

.booking-switch__controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
}

.booking-switch__tab {
  position: relative;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-light);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  min-height: auto;
  padding: 8px 4px 14px;
  text-transform: none;
  border-bottom: 1px solid rgba(44, 43, 41, 0.12);
  transition: color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}

.booking-switch__tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: transparent;
  transform: scaleX(0.35);
  opacity: 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
}

.booking-switch__tab.is-active {
  color: var(--ink);
  border-bottom-color: rgba(44, 43, 41, 0.16);
}

.booking-switch__tab.is-active::after {
  background: var(--sage-dark);
  transform: scaleX(1);
  opacity: 1;
}

.booking-switch__tab:not(.is-active):hover {
  color: var(--ink);
}

.booking-switch__tab:focus-visible {
  outline: none;
  color: var(--ink);
}

.booking-switch__tab:focus-visible::after {
  background: var(--gold);
  transform: scaleX(1);
  opacity: 1;
}

.booking-switch__panel {
  margin-top: 28px;
}

.booking-frame {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.fitssey-embed {
  max-width: 960px;
  margin: 0 auto;
}
.booking-container {
  text-align: center;
}
.fitssey-embed iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius);
  background: var(--surface);
  display: block;
}
.booking-container iframe {
  width: 100%;
  border: none;
  background: transparent;
  display: block;
}
.fitssey-placeholder {
  text-align: center;
  padding: 80px 40px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.fitssey-placeholder__icon {
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.fitssey-placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.fitssey-placeholder p {
  color: var(--ink-light);
  margin-bottom: 28px;
}

/* ==========================================================
   15A. OWNER QUOTES + SIGNATURE QUOTE
   ========================================================== */
.owner-quote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 43, 41, 0.08);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
}

.quote-band {
  padding: 80px 0 120px;
}
.quote-band__quote {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  z-index: 10;
}
.quote-band__quote::before {
  content: '“';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  color: var(--ink); /* Switched from sage to sharp ink for contrast */
  opacity: 0.1;
  z-index: 0;
}
.quote-band__quote p {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.4;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quote-band__quote cite {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 32px;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

/* ==========================================================
   15A. TIMELINE & HISTORIA GALLERY
   ========================================================== */
.historia-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.historia-gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}
.historia-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Protect against cut-off heads in historical portraits */
  object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  /* 1940s B&W photo styling */
  filter: grayscale(100%) contrast(1.1) brightness(0.95);
}
.historia-gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.historia-gallery__item:hover img {
  transform: scale(1.04);
}
.historia-gallery__item--1 {
  grid-row: span 2;
  aspect-ratio: 3/4;
}
.historia-gallery__item--2 {
  aspect-ratio: 4/3;
  margin-top: 32px;
}
.historia-gallery__item--3 {
  aspect-ratio: 4/3;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
  border-left: 2px solid var(--sage-soft);
  padding-left: 2.5rem;
  position: relative;
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: calc(-2.5rem - 6px); /* 2.5rem padding + 6px radius */
  width: 12px;
  height: 12px;
  background: var(--surface);
  border: 2px solid var(--sage-dark);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}
.timeline-item:hover::before {
  background: var(--sage-dark);
  box-shadow: 0 0 10px var(--sage-soft);
}
.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}
.timeline-content strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ==========================================================
   16. FOOTER
   ========================================================== */
.footer {
  background: var(--ink);
  color: var(--surface);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}
.footer__logo-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--surface);
  letter-spacing: 0.02em;
}
.footer__logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage);
  margin-top: 3px;
}
.footer__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 300px;
  line-height: 1.7;
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--sage);
}
.footer__contact-list {
  list-style: none;
}
.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.footer__contact-list svg {
  color: var(--sage);
  flex-shrink: 0;
}
.footer__contact-list a,
.footer__contact-list address {
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__contact-list a:hover {
  color: var(--surface) !important;
}
.bank-details {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}
.bank-details strong {
  display: block;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.95rem;
  color: var(--surface);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__legal a:hover {
  color: var(--sage);
}
.footer__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
/* ── UPGRADED: Social icons with glow hover ── */
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--surface);
  transition: background 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s ease;
}
.footer__socials a:hover {
  background: var(--sage-dark);
  transform: translateY(-3px) scale(1.08);
  box-shadow: var(--glow-sage);
}
.footer__cta-btn {
  width: 100%;
  text-align: center;
}
.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__sync-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.56);
  white-space: nowrap;
}

.footer__sync-note::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

/* ==========================================================
   17. SCROLL REVEAL ANIMATIONS — Refined with Stagger Support
   ========================================================== */

/* ── Base hidden state for all [data-reveal] elements ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Revealed state — each element fades in and floats up ── */
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── NEW: Staggered delay classes for cascading reveals ──
   Added via JS to children within the same section for a
   wave-like entrance effect */
[data-reveal].reveal-delay-1 { transition-delay: 0.1s; }
[data-reveal].reveal-delay-2 { transition-delay: 0.2s; }
[data-reveal].reveal-delay-3 { transition-delay: 0.3s; }
[data-reveal].reveal-delay-4 { transition-delay: 0.4s; }
[data-reveal].reveal-delay-5 { transition-delay: 0.5s; }

/* ── Preserve offset transforms when revealed (for staggered grid) ── */
@media (min-width: 1024px) {
  .oferta-card-v2--offset-2[data-reveal].revealed,
  .oferta-card-v2--offset-4[data-reveal].revealed {
    transform: translateY(80px);
  }
}

/* ==========================================================
   18. RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
  :root { --gutter: 28px; }
  .section { padding: 88px 0; }
  .hero__grid, .section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__title {
    width: 100%;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-image__label {
    top: 24px;
    left: 24px;
  }
  .section__grid .section__content { order: 1; }
  .section__grid .section__visual { order: 2; }
  .section__grid--reverse .section__content { order: 1; }
  .section__grid--reverse .section__visual { order: 2; }

  .o-nas-grid, .o-nas-grid--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .o-nas-content {
    transform: translateY(-40px) !important;
    margin: 0 20px;
    padding: 40px 32px;
  }
  .o-nas-grid--reverse .o-nas-content { order: 2; }
  .o-nas-grid--reverse .o-nas-visual { order: 1; }

  .img-wrapper--hero { max-width: 560px; margin: 0 auto; }
  .core-focus { padding: 36px 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .oferta__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }
  .hero__since {
    margin-bottom: 24px;
  }
  .hero__desc {
    font-size: 1.08rem;
    margin-bottom: 32px;
  }
  .hero__title {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }
  .hero-image__label {
    top: 18px;
    left: 18px;
    max-width: min(82%, 280px);
    padding: 16px 18px 14px;
    gap: 12px;
  }

  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition);
    gap: 4px;
  }
  .nav__menu.active { right: 0; }
  .nav__link {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav__link::after { display: none; }
  .nav__btn {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }
  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    position: relative;
  }

  /* Mobile Oferta spacing */
  .oferta-staggered-grid {
    gap: 48px;
  }
  .oferta-card-v2 {
    padding: 48px 32px;
  }
  /* Decorative separator between cards on mobile */
  .oferta-card-v2 + .oferta-card-v2::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 12px;
    background-image: radial-gradient(circle, var(--gold) 20%, transparent 20%);
    background-size: 12px 12px;
    opacity: 0.5;
  }
  .core-focus {
    margin-top: 48px;
    padding: 32px 24px;
  }
  .owner-quote {
    font-size: 1.05rem;
  }
  .booking-anchor {
    top: -84px;
  }
  .booking-switch__controls {
    gap: 14px;
  }
  .booking-switch__tab {
    padding: 6px 2px 12px;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
  }
  .quote-band {
    padding: 60px 0 80px;
  }
  .quote-band__quote {
    padding: 0 24px;
    transform: translateY(0); /* Removed overlap on mobile */
  }
  .quote-band__quote::before {
    font-size: 6rem;
    top: -50px;
  }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .booking-switch__controls {
    gap: 10px;
  }
  .hero-image__label {
    top: 16px;
    left: 16px;
    max-width: min(86%, 250px);
    padding: 14px 16px;
  }
  .pricing-card { padding: 24px 20px; }
  .nav__logo { height: 44px; }
}

/* ==========================================================
   19. REDUCED MOTION — Accessibility
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero::before {
    background-attachment: scroll;
  }
}
