/* === Inspirováno sladkadepilacefrydek.cz + AASI vibe: bílé pozadí, zlatá #D4AF37, sans-serif, photo hero, animace === */

:root {
  --gold: #D4AF37;
  --gold-dark: #B8902B;
  --gold-soft: #F5EAC4;
  --black: #1A1A1A;
  --gray-900: #2C2C2C;
  --gray-700: #525252;
  --gray-500: #767676;
  --gray-300: #D1D1D1;
  --gray-100: #F4F4F4;
  --white: #FFFFFF;
  --cream: #E8D9C0;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; margin-top: 2rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; margin-top: 1.5rem; }
p { margin-bottom: 1.25rem; color: var(--gray-700); }
ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
ul li { margin-bottom: 0.5rem; color: var(--gray-700); }
ul li::marker { color: var(--gold); }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--black); }
img { max-width: 100%; height: auto; display: block; }
figure { margin: 2rem 0; }
figure img { border-radius: 4px; width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-intro p { font-size: 1.1rem; }

/* === SCROLL FADE-IN === */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* === HEADER — transparent na hero, white po scrollu === */
.site-header {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 0 2.5rem;
  transition: all 0.3s var(--ease);
}
.site-header .brand-name { color: var(--white); transition: color 0.3s var(--ease); }
.site-header .brand-sub { color: rgba(255,255,255,0.75); transition: color 0.3s var(--ease); }
.site-header .nav-link { color: rgba(255,255,255,0.92); transition: color 0.3s var(--ease); }
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.85rem 0;
}
.site-header.scrolled .brand-name { color: var(--black); }
.site-header.scrolled .brand-sub { color: var(--gray-500); }
.site-header.scrolled .nav-link { color: var(--gray-900); }
/* Posun obsahu pod fixed header (jen pro stránky bez hero) */
body.has-fixed-header { padding-top: 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; flex-direction: column; line-height: 1.1; transition: transform 0.3s var(--ease); }
.brand:hover { transform: translateY(-2px); }
.brand-name { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--black); letter-spacing: -0.01em; }
.brand-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-500); margin-top: 4px; font-weight: 500; }
.main-nav { display: flex; gap: 2.25rem; align-items: center; }
.nav-link { color: var(--gray-900); font-weight: 500; font-size: 0.875rem; padding: 0.5rem 0; position: relative; transition: color 0.2s var(--ease); text-transform: uppercase; letter-spacing: 0.05em; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--gold); transition: left 0.3s var(--ease), right 0.3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { left: 0; right: 0; }
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-contact {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s var(--ease) !important;
  position: relative;
  overflow: hidden;
}
.nav-contact::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-dark);
  transition: left 0.4s var(--ease);
  z-index: 0;
}
.nav-contact:hover::before { left: 0; }
.nav-contact > * { position: relative; z-index: 1; }
.nav-contact::after { display: none; }
.nav-contact:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.4); }
.menu-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--black); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid var(--gold);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white) !important; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(212,175,55,0.3); }
.btn:hover::before { width: 300px; height: 300px; }
.btn:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--white) !important; border-color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--black) !important; border-color: var(--white); }
.btn-outline { background: transparent; color: var(--black) !important; border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white) !important; }

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}
/* Žádný gradient — čistý cut mezi sliderem a následující sekcí */
.slides {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 0s 1.2s;
  transform: scale(1);
  animation: kenBurns 12s ease-in-out infinite;
  animation-play-state: paused;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s var(--ease);
  animation-play-state: running;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.slide.active .slide-content {
  animation: slideUp 1s var(--ease) 0.3s both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,175,55,0.5);
}
.slide-logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.slide-content h1 { color: var(--white); margin-bottom: 1rem; }
.slide-content p { color: rgba(255,255,255,0.92); font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; font-weight: 300; }
.slide-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Portrait slide (Alena welcome) — AASI-style multi-color animated gradient === */
.slide-portrait {
  background: #0A0606;
  overflow: hidden;
  animation: none !important;
}
/* Vrstva 1: hlavní multi-color horizontal animated gradient (AASI design — proměna barev) */
.slide-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    #1A0E1F 0%,
    #2D1428 18%,
    #4A1F2E 38%,
    #6B3018 58%,
    #8C5020 75%,
    #C8842A 92%,
    #2A1812 100%
  );
  background-size: 200% 100%;
  animation: aasiGradient 18s ease-in-out infinite;
  z-index: 0;
}
/* Žádný fade overlay — slide-portrait gradient zachován v plné kráse */

/* === Photo slidy: vyšší jas a saturace, světlejší overlay === */
.slide:not(.slide-portrait) {
  filter: saturate(1.25) brightness(1.12) contrast(1.05);
}
.slide:not(.slide-portrait) .slide-overlay {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.55) 100%) !important;
}
.slide:not(.slide-portrait) .slide-content {
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.8);
}
.slide:not(.slide-portrait) .slide-content h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.9);
}
@keyframes aasiGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
/* Vrstva 2: jemný subtle highlight (bez asymetrických blobů) */
.slide-portrait .slide-portrait-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.18) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.slide-portrait .slide-overlay { display: none; }
.slide-content-portrait { z-index: 3 !important; }
.slide-portrait .slide-overlay { background: none; }

/* Watermark "ALENA" text v pozadí */
.watermark-text {
  position: absolute;
  bottom: -3vh;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(7rem, 13vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(212,175,55,0.35);
  text-stroke: 1.5px rgba(212,175,55,0.35);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  animation: watermarkSlide 20s ease-in-out infinite;
  user-select: none;
  line-height: 1;
}
@media (max-width: 1000px) {
  .watermark-text { display: none; }
}
@keyframes watermarkSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-15px); }
}

.slide-content-portrait {
  flex-direction: row !important;
  text-align: left !important;
  align-items: center !important;
  gap: 5rem;
  max-width: 1200px !important;
  z-index: 2;
  padding: 0 2rem;
}

/* Photo s blob mask */
.slide-portrait-photo {
  flex: 0 0 460px;
  position: relative;
  animation: photoFloat 7s ease-in-out infinite;
}
@keyframes photoFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(0.4deg); }
}
.slide-portrait-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  filter: brightness(1.05) contrast(1.05);
}

/* Badge 15 let */
.badge-15 {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 130px; height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(212,175,55,0.4), 0 0 0 6px rgba(212,175,55,0.15);
  text-align: center;
  color: var(--black);
  animation: badgePop 1s var(--ease-bounce) 0.8s both, badgeFloat 5s ease-in-out infinite 1.5s;
  transform-origin: center;
}
@keyframes badgePop {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-top: 4px;
}

/* Text strana */
.slide-portrait-text { flex: 1; text-align: left; }
.slide-portrait-text .slide-eyebrow {
  margin: 0 0 1.5rem 0;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
}
.slide-portrait-text h1 {
  text-align: left;
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 0.25rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.signature-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--gold);
  margin: 0 0 2rem 0 !important;
  font-weight: 400;
  line-height: 1.2;
}
.signature-line em { font-style: normal; font-weight: 700; color: var(--white); position: relative; padding: 0 4px; }
.signature-line em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.4;
}
.lead-text {
  font-size: 1.1rem !important;
  line-height: 1.7;
  color: rgba(255,255,255,0.85) !important;
  max-width: 540px;
  margin-bottom: 1rem !important;
}
.signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 2rem 0 !important;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.signature::after {
  content: '';
  display: block;
  width: 70%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 4px;
}
.slide-portrait-text .slide-cta { justify-content: flex-start; margin-top: 0.5rem; }

@media (max-width: 1000px) {
  .slide-content-portrait { flex-direction: column !important; text-align: center !important; gap: 3rem; padding-top: 4rem; }
  .slide-portrait-photo { flex: 0 0 auto; max-width: 280px; }
  .badge-15 { width: 100px; height: 100px; bottom: 0; right: -5px; }
  .badge-num { font-size: 2.2rem; }
  .badge-label { font-size: 0.55rem; }
  .slide-portrait-text { text-align: center; }
  .slide-portrait-text .slide-eyebrow,
  .slide-portrait-text h1,
  .signature-line,
  .signature { text-align: center; }
  .signature { display: block; }
  .signature::after { margin-left: auto; margin-right: auto; }
  .slide-portrait-text p { margin-left: auto; margin-right: auto; }
  .slide-portrait-text .slide-cta { justify-content: center; }
  .watermark-text { font-size: 24vw; bottom: -5vh; }
}

.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-weight: 300;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.1); }
.slider-arrow-prev { left: 2rem; }
.slider-arrow-next { right: 2rem; }
.slider-dots {
  position: absolute;
  bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.75rem;
  z-index: 5;
}
.dot {
  width: 36px; height: 3px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
  padding: 0;
  border-radius: 2px;
}
.dot.active { background: var(--gold); width: 60px; }
.dot:hover { background: rgba(255,255,255,0.7); }

/* === Žádné rozostření — sekce přechází ostře === */
.big-cards {
  position: relative;
  background: var(--cream) !important;
  padding-top: 6rem !important;
}

/* === BIG CARDS (photo cards) — clean solid cream === */
.big-cards { padding: 6rem 0; background: var(--cream); position: relative; }
.big-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .big-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
  .big-cards-grid { grid-template-columns: 1fr; }
}
.photo-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  color: var(--white) !important;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
}
.photo-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.2); }
.photo-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.photo-card:hover .photo-card-img { transform: scale(1.12); }
.photo-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.8) 100%);
  transition: background 0.4s var(--ease);
}
.photo-card:hover .photo-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.92) 100%);
}
.photo-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  z-index: 2;
  text-align: left;
  transform: translateY(0);
  transition: transform 0.5s var(--ease);
}
.photo-card:hover .photo-card-body { transform: translateY(-8px); }
.photo-card-logo {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: transform 0.4s var(--ease);
}
.photo-card:hover .photo-card-logo { transform: scale(1.05); }
.photo-card h2 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.5rem; }
.photo-card p { color: rgba(255,255,255,0.9); font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.5; }
.photo-card-arrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.photo-card:hover .photo-card-arrow { color: var(--white); border-color: var(--white); padding-left: 8px; }

/* === WORK GALLERY (Z mé práce) === */
.work-gallery {
  padding: 6rem 0;
  background: var(--cream);
}
.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.work-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease, ease), box-shadow 0.3s var(--ease, ease);
}
.work-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease, ease);
}
.work-photo:hover img {
  transform: scale(1.06);
}
.work-photo figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.0) 100%);
  color: var(--white);
  padding: 1.25rem 1rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s var(--ease, ease);
}
.work-photo:hover figcaption {
  opacity: 1;
}
@media (max-width: 1100px) {
  .work-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .work-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .work-gallery-grid { grid-template-columns: 1fr; }
  .work-photo figcaption { opacity: 1; }
}

/* === KAŠTAN DECORATION (Alenin osobní detail — interaktivní vrtící se kaštan) === */
.kastan-decor {
  position: fixed;
  top: 96px;
  right: 28px;
  width: 110px;
  height: 110px;
  z-index: 60;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.4s var(--ease-bounce, ease);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
}
.kastan-decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  display: block;
  animation: kastanSpin 18s linear infinite;
}
.kastan-decor:hover {
  transform: scale(1.15) rotate(-8deg);
}
.kastan-decor:hover img {
  animation-duration: 4s;
}
.kastan-decor:active img {
  animation-duration: 1s;
}
@keyframes kastanSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.kastan-heart {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 3rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--ease, ease), transform 0.35s var(--ease-bounce, ease);
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.kastan-decor:hover .kastan-heart {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: heartBeat 0.8s ease-in-out infinite 0.35s;
}
@keyframes heartBeat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

@media (max-width: 700px) {
  .kastan-decor { width: 70px; height: 70px; top: 78px; right: 12px; }
  .kastan-decor img { border-width: 3px; }
  .kastan-tooltip { font-size: 0.85rem; padding: 0.5rem 0.75rem; }
}

/* === POPTÁVKOVÝ FORMULÁŘ === */
.poptavka-section { padding: 4rem 0 6rem; background: var(--cream); }
.poptavka-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.poptavka-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }
.poptavka-form label.full { grid-column: 1 / -1; }
.poptavka-form input, .poptavka-form textarea { padding: 0.75rem 1rem; border: 1px solid var(--gray-300); border-radius: 4px; font-size: 1rem; font-family: inherit; background: var(--white); color: var(--black); transition: border-color 0.2s; }
.poptavka-form input:focus, .poptavka-form textarea:focus { outline: none; border-color: var(--gold); }
.poptavka-form textarea { resize: vertical; min-height: 110px; }
.poptavka-form button[type="submit"] { grid-column: 1 / -1; justify-self: center; margin-top: 0.5rem; min-width: 240px; }
.poptavka-fallback { text-align: center; margin-top: 1.5rem; color: var(--gray-700); font-size: 0.95rem; }
@media (max-width: 700px) { .poptavka-form { grid-template-columns: 1fr; padding: 1.5rem; } }

/* === BENEFITS STRIP (3 benefit cards místo content-intro) === */
.benefits-strip {
  padding: 4rem 0;
  background: var(--cream);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: 8px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }
.benefit-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.benefit-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-700);
}

/* === FOOTER MINI LINKS (Ceník, Kontakt — nenápadné rychlé odkazy) === */
.footer-mini-links { padding: 3rem 0; background: var(--cream); border-top: 1px solid var(--gray-300); }
.mini-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.mini-link {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  text-decoration: none;
  color: var(--black) !important;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.mini-link:hover { transform: translateX(4px); border-left-color: var(--gold-dark); }
.mini-link strong { font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--black); }
.mini-link span { font-size: 0.9rem; color: var(--gray-700); }

/* === ALT ROWS (alternující left-right layout pro service showcase) === */
.alt-rows { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2rem; }
.alt-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  color: var(--black) !important;
  min-height: 420px;
}
.alt-row:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.alt-row.reverse { grid-template-columns: 1fr 1.2fr; }
.alt-row.reverse .alt-img { order: 2; }
.alt-row.reverse .alt-body { order: 1; }
.alt-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
}
.alt-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}
.alt-img-placeholder img {
  width: auto !important;
  height: 80px !important;
  max-width: 60% !important;
  opacity: 0.7;
}
.alt-body {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alt-body h3 {
  font-size: 2rem;
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--black);
}
.alt-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0 0 1.25rem;
}
.alt-cta {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .alt-row, .alt-row.reverse { grid-template-columns: 1fr; min-height: auto; }
  .alt-row.reverse .alt-img { order: 1; }
  .alt-row.reverse .alt-body { order: 2; }
  .alt-img { min-height: 240px; }
  .alt-body { padding: 1.75rem; }
}

/* === EXTRA SECTIONS (multi-section landing pro chodime-spolu) === */
.extra-section { padding: 6rem 0; background: var(--cream); position: relative; overflow: hidden; }
.extra-section-alt { background: var(--white); }

.extra-section .section-title { text-align: center; margin-bottom: 0.75rem; }
.section-title-big { font-size: clamp(2rem, 4vw, 3rem); }
.extra-section .section-subtitle { text-align: center; color: var(--gray-700); margin-bottom: 2.5rem; font-size: 1.1rem; }

.eyebrow-tag {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* Eshop sekce — featured s gold accent */
.extra-section-eshop {
  background: linear-gradient(135deg, #F5EAC4 0%, #FAF6F0 100%);
}
.eshop-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  pointer-events: none;
}
.eshop-deco-1 { width: 320px; height: 320px; top: -160px; right: -80px; }
.eshop-deco-2 { width: 220px; height: 220px; bottom: -100px; left: -60px; background: rgba(212,175,55,0.08); }

.btn-large { font-size: 1rem; padding: 0.95rem 2rem; }

.testimonial {
  background: var(--white);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray-900);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  line-height: 1.7;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 1rem;
  font-size: 5rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.4;
  line-height: 1;
}

/* === PRODUCT GRID (e-shop produkty) === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--black) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--gray-100);
}
.product-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}
.product-placeholder img {
  width: auto !important;
  height: 50px !important;
  max-width: 60% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  opacity: 0.6;
}
.product-card-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--black);
  min-height: 2.6em;
}
.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 0 0.5rem;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  margin: 0;
  flex: 1;
}

/* === EVENT LIST (události) === */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.event-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  color: var(--black) !important;
  align-items: center;
}
.event-row:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.event-date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  border-right: 1px solid var(--gray-300);
  padding-right: 1.5rem;
  text-align: center;
}
.event-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.event-body p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}
@media (max-width: 700px) {
  .event-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .event-date { border-right: none; border-bottom: 1px solid var(--gray-300); padding: 0 0 0.75rem; text-align: left; }
}

/* === ABOUT STRIP === */
.about-strip {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}
.about-strip-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.about-photo { margin: 0; position: relative; }
.about-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  transition: transform 0.5s var(--ease);
}
.about-photo:hover img { transform: scale(1.02); }
.about-text .lead { font-size: 1.2rem; color: var(--gray-900); font-weight: 500; margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-300); flex-wrap: wrap; }
.about-stats > div { display: flex; flex-direction: column; transition: transform 0.3s var(--ease); }
.about-stats > div:hover { transform: translateY(-4px); }
.big-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: inline-block;
}
.small-cap { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-700); font-weight: 600; }

/* === INFO STRIP — smooth přechod z about-strip do tmavé === */
.info-strip {
  background: linear-gradient(180deg, var(--cream) 0%, #2A1812 30%, #1A1A1A 100%);
  color: var(--gray-100);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.info-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -25%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  animation: drift 20s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60%, 10%); }
}
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; position: relative; z-index: 1; }
.info-grid > div { display: flex; flex-direction: column; gap: 0.5rem; transition: transform 0.3s var(--ease); }
.info-grid > div:hover { transform: translateY(-3px); }
.info-grid strong { color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; font-weight: 700; }
.info-grid a, .info-grid div > div { color: var(--gray-100); font-size: 1.05rem; }
.info-grid a:hover { color: var(--gold); }

/* === SECTION PHOTO HERO === */
.section-photo-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.section-photo-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.section-photo-hero {
  filter: saturate(1.1) brightness(1.05);
}
.section-photo-hero .hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 1.5rem; }
.section-photo-hero .section-logo-large {
  height: 100px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: brightness(0) invert(1);
}
.section-photo-hero h1 { color: var(--white); margin-bottom: 1rem; }
.section-photo-hero .lead {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}

/* === PAGE HERO (klasický) === */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}
.page-hero h1 { color: var(--black); margin-bottom: 1rem; }
.page-hero .lead { font-size: 1.2rem; max-width: 700px; margin: 0 auto; color: var(--gray-700); font-weight: 400; }
.section-logo {
  display: block;
  margin: 0 auto 1.5rem;
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* === CONTENT === */
.content { padding: 5rem 0; background: var(--white); }
.content-intro { padding: 4rem 0; background: var(--gray-100); }
.content p { font-size: 1.05rem; color: var(--gray-700); }
.content p:first-of-type::first-letter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 0.9;
  margin: 0.25rem 0.75rem 0 0;
}
.hero-figure img { aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; transition: transform 0.5s var(--ease); }
.hero-figure:hover img { transform: scale(1.02); }
.image-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 2.5rem 0; }
.image-gallery figure { margin: 0; overflow: hidden; border-radius: 4px; }
.image-gallery img { aspect-ratio: 1/1; object-fit: cover; transition: transform 0.5s var(--ease); }
.image-gallery figure:hover img { transform: scale(1.08); }

/* === SUB CARDS === */
.sub-cards { padding: 6rem 0; background: var(--gray-100); }
.sub-cards h2 { text-align: center; margin-bottom: 3rem; }
.sub-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.sub-card {
  background: var(--white);
  border: none;
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--black) !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-radius: 4px;
}
.sub-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(0,0,0,0.12); }
.sub-card img-wrap { display: block; overflow: hidden; }
.sub-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease); }
.sub-card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  border-bottom: 4px solid var(--accent, var(--gold));
}
.sub-card-placeholder img { width: auto !important; height: 60px !important; max-width: 70%; aspect-ratio: auto !important; object-fit: contain !important; opacity: 0.7; }
.sub-card:hover img { transform: scale(1.08); }
.sub-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.sub-card h3 { margin-top: 0; font-size: 1.15rem; transition: color 0.3s var(--ease); }
.sub-card:hover h3 { color: var(--gold-dark); }
.sub-card p { flex: 1; font-size: 0.92rem; }
.learn-more {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.learn-more::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.sub-card:hover .learn-more::after { transform: scaleX(1); }

/* === CTA === */
.page-cta {
  background: var(--black);
  color: var(--gray-100);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.page-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-cta > * { position: relative; z-index: 1; }
.page-cta h2 { color: var(--white); margin-bottom: 1rem; }
.page-cta p { color: rgba(244,244,244,0.8); font-size: 1.05rem; margin-bottom: 2rem; }
.page-cta a { color: var(--gold); }
.page-cta .btn { background: var(--gold); color: var(--white) !important; }
.page-cta .btn:hover { background: var(--gold-dark); }

/* === KONTAKT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info dl { margin-bottom: 2rem; }
.contact-info dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-dark); font-weight: 700; margin-top: 1.5rem; }
.contact-info dd { font-size: 1.1rem; color: var(--black); margin-top: 0.4rem; line-height: 1.6; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.map-embed { border-radius: 4px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.1); transition: box-shadow 0.4s var(--ease); }
.map-embed:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.map-embed iframe { width: 100%; aspect-ratio: 4/3; border: 0; display: block; }

/* === FOOTER === */
.site-footer { background: var(--black); color: rgba(244,244,244,0.7); padding: 5rem 0 1.5rem; }
.site-footer h4 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-grid p { color: rgba(244,244,244,0.7); font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-grid a {
  color: rgba(244,244,244,0.7);
  display: block;
  padding: 0.3rem 0;
  font-size: 0.875rem;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer-grid a:hover { color: var(--gold); padding-left: 6px; }

/* === FB social row === */
.footer-social {
  border-top: 1px solid rgba(244,244,244,0.1);
  padding: 1.75rem 0;
  margin-bottom: 1rem;
  text-align: center;
}
.footer-social h4 {
  color: rgba(244,244,244,0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.fb-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  background: rgba(244,244,244,0.04);
  border: 1px solid rgba(244,244,244,0.1);
  border-radius: 999px;
  color: rgba(244,244,244,0.85) !important;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.fb-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff !important;
  transform: translateY(-1px);
  padding-left: 1.1rem !important;
}
.fb-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(244,244,244,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(244,244,244,0.4);
  letter-spacing: 0.05em;
}

/* === ALL PROJECTS CAROUSEL === */
.all-projects {
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, var(--cream) 0%, #FFFFFF 50%, #F4F4F4 100%);
  position: relative;
}
.projects-carousel-wrap { position: relative; }
.projects-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 5vw 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-carousel::-webkit-scrollbar { display: none; }
.project-card {
  flex: 0 0 320px;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  scroll-snap-align: start;
  color: var(--white) !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.18); }
.project-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.project-card:hover .project-card-img { transform: scale(1.1); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  transition: background 0.4s var(--ease);
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 10%, rgba(0,0,0,0.95) 100%);
}
.project-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
  text-align: left;
  transition: transform 0.4s var(--ease);
}
.project-card:hover .project-card-body { transform: translateY(-6px); }
.project-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
}
.project-card h3 {
  color: var(--white) !important;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.project-card p { color: rgba(255,255,255,0.85); font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.75rem; }
.project-card-arrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.project-card:hover .project-card-arrow { color: var(--white); border-color: var(--white); padding-left: 6px; }

.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--black);
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: all 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-weight: 300;
  line-height: 1;
}
.carousel-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.carousel-arrow-prev { left: 1rem; }
.carousel-arrow-next { right: 1rem; }

/* === MOBILE === */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  }
  .main-nav .nav-link { width: 100%; padding: 0.75rem 0; }
  body.menu-open .main-nav { display: flex; }
  .hero-slider { height: 80vh; min-height: 500px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .slider-arrow-prev { left: 1rem; }
  .slider-arrow-next { right: 1rem; }
  .about-strip-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; text-align: center; }
  .about-stats { gap: 1.5rem; }
  .big-num { font-size: 2.25rem; }
  .slider-dots { bottom: 1.5rem; }
  .dot { width: 24px; }
  .dot.active { width: 40px; }
}
