/* =====================================================
   KWIATY U BASI — Styles
   ===================================================== */

/* Custom Properties */
:root {
  --color-primary: #8b9a89;
  --color-primary-dark: #6e7d6c;
  --color-primary-light: #b8c9b6;
  --color-accent: #2c3531;
  --color-accent-light: #3d4e48;
  --color-blush: #f5e6e8;
  --color-gold: #c9a96e;
  --color-bg: #faf9f7;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ==================================================
   Custom Scrollbar
================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-text-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* =====================================================
   BASE
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  cursor: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-accent);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--color-primary-dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.text-center {
  text-align: center;
}

.bg-light {
  background-color: var(--color-white);
}

.bg-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.text-light {
  color: var(--color-white);
}

.text-light-soft {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* Section Tags */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  background: rgba(139, 154, 137, 0.08);
}

.section-tag.tag-light {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.text-center-tag {
  display: block;
  text-align: center;
}

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  opacity: 0.6;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 50px;
  height: 50px;
  opacity: 1;
  border-color: var(--color-gold);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.3s ease;
}

.btn:hover::after {
  left: 0;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(139, 154, 137, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 154, 137, 0.5);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.btn-petal {
  background: var(--color-gold);
  color: var(--color-accent);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.btn-petal:hover {
  background: #b8943d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

/* =====================================================
   HEADER & NAV
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  z-index: 1001;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--color-primary-light);
  font-style: italic;
}

.header.scrolled .logo {
  color: var(--color-accent);
  text-shadow: none;
}

.header.scrolled .logo span {
  color: var(--color-primary-dark);
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.header.scrolled .nav-link {
  color: var(--color-accent);
  text-shadow: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  transition: var(--transition);
  background-color: var(--color-white);
}

.header.scrolled .bar {
  background-color: var(--color-accent);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background-image: url('assets/images/hero_banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg,
      rgba(26, 32, 29, 0.55) 0%,
      rgba(26, 32, 29, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 5.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--color-primary-light);
  font-style: italic;
  display: block;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--color-white);
  padding: 3rem 0;
  border-bottom: 1px solid #f0eeeb;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}

.stat-number {
  font-family: var(--font-elegant);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-suffix {
  font-family: var(--font-elegant);
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  font-weight: 300;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* =====================================================
   GRIDS
   ===================================================== */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text .section-title {
  display: block;
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-primary-light);
  z-index: -1;
  border-radius: 4px;
}

.about-img {
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-white);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  border: 1px solid #f0eeeb;
}

.about-img-badge span {
  font-size: 2rem;
}

.about-img-badge strong {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.about-img-badge em {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-style: normal;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.opening-hours {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hours-icon {
  font-size: 1.5rem;
}

.hours-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.hours-item span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* =====================================================
   SEASONAL SECTION
   ===================================================== */
.seasonal {
  overflow: hidden;
}

.seasonal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Seasonal text — reset inline-block i napraw hierarchię */
.seasonal-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.seasonal-text .section-title {
  display: block;
  /* zamiast inline-block — pełna szerokość */
  color: var(--color-white);
  font-size: 2.2rem;
  /* spójny rozmiar względem layoutu */
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.seasonal-text .section-title::after {
  background-color: var(--color-gold);
  width: 40px;
}

/* Podtytuł "Kwiat miesiąca:" wewnątrz h2 */
.seasonal-title-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}

/* Nazwa kwiatu — wyeksponowana */
.seasonal-text .section-title em {
  display: block;
  font-style: italic;
  font-size: 3rem;
  /* wyraźnie większa — to główny akcent */
  font-family: var(--font-elegant);
  color: var(--color-gold);
  line-height: 1.15;
  margin-top: 0.2rem;
  transition: opacity 0.4s ease;
}

.seasonal-text p {
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.flower-showcase {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flower-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: rotateSlow linear infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  animation-duration: 20s;
  border-style: dashed;
  border-color: rgba(201, 169, 110, 0.2);
}

.ring-2 {
  width: 80%;
  height: 80%;
  animation-duration: 15s;
  animation-direction: reverse;
}

.ring-3 {
  width: 60%;
  height: 60%;
  animation-duration: 10s;
  border-color: rgba(139, 154, 137, 0.3);
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.flower-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.6s ease;
}

.flower-img:hover {
  transform: scale(1.05);
}

/* =====================================================
   ADVANTAGES SECTION
   ===================================================== */
.advantage-card {
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.advantage-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blush), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(139, 154, 137, 0.15);
  transition: var(--transition);
}

.advantage-card:hover .advantage-icon-wrap {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-color: transparent;
}

.advantage-icon {
  font-size: 2rem;
}

.advantage-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.advantage-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* =====================================================
   OFFER SECTION
   ===================================================== */
.offer-card {
  background-color: var(--color-bg);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 154, 137, 0.15);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.offer-card:hover .offer-icon-wrap {
  background: linear-gradient(135deg, var(--color-blush), var(--color-primary-light));
}

.offer-icon {
  font-size: 2.5rem;
}

.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.offer-card p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
  transition: var(--transition);
  /* reset button styles */
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: left;
}

.offer-link:hover {
  color: var(--color-accent);
  gap: 0.6rem;
}

.offer-card:hover .offer-link {
  color: var(--color-accent);
}

/* =====================================================
   QUOTE BANNER
   ===================================================== */
.quote-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--color-accent);
}

.quote-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/bouquet_roses.png');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  filter: grayscale(100%);
}

.pull-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pull-quote p {
  font-family: var(--font-elegant);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.pull-quote cite {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-style: normal;
  font-weight: 500;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 550px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-large {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 53, 49, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonial-card {
  background-color: var(--color-bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 154, 137, 0.2);
}

.stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1.2rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

/* Kontener informacji — flex kolumna dla spójnego układu */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Nadpisuje inline-block z ogólnej reguły — pełna szerokość kolumny */
.contact-info .section-title {
  display: block;
  color: var(--color-white);
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

/* Złota linia dekoracyjna pod tytułem */
.contact-info .section-title::after {
  background-color: var(--color-gold);
  width: 40px;
}

.contact-list {
  margin-top: 2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.3rem;
  margin-right: 1.2rem;
  font-style: normal;
  margin-top: 0.1rem;
}

.contact-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-list span,
.contact-list a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.contact-list a:hover {
  color: var(--color-gold);
}

/* Map */
.map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  display: block;
  border-radius: 8px;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-container:hover iframe {
  filter: none;
}

.map-directions-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-directions-btn:hover {
  background: rgba(201, 169, 110, 0.2);
  color: var(--color-gold);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background-color: #141a17;
  color: #888;
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}

.footer-logo span {
  color: var(--color-primary);
  font-style: italic;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.7rem;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--color-primary-light);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.7rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.appear {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.appear {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .gallery-large {
    grid-row: auto;
    grid-column: 1 / 3;
    height: 350px;
  }

  .gallery-item:not(.gallery-large) {
    height: 250px;
  }
}

@media (max-width: 992px) {

  .grid-2-col,
  .grid-3-col,
  .grid-4-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery-large {
    grid-column: auto;
    height: 350px;
  }

  .gallery-item:not(.gallery-large) {
    height: 250px;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .seasonal-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seasonal-text {
    align-items: center;
  }

  .flower-showcase {
    width: 300px;
    height: 300px;
    margin-top: 2rem;
  }

  .flower-img {
    width: 200px;
    height: 200px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-inner ul,
  .footer-contact {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    padding-bottom: 4.5rem;
  }

  .pull-quote p {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-list {
    position: fixed;
    left: -100%;
    top: 0;
    padding-top: 80px;
    gap: 0;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
  }

  .nav-list.active {
    left: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
  }

  .nav-link,
  .header.scrolled .nav-link {
    color: var(--color-accent);
    font-size: 1.1rem;
    text-shadow: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .pull-quote p {
    font-size: 1.6rem;
  }

  .about-img-badge {
    right: 0.5rem;
    bottom: -1rem;
  }

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .opening-hours {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

  .floating-phone-label {
    display: none;
  }
}

/* =====================================================
   PETAL ANIMATION
   ===================================================== */
.petals-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.petal {
  position: absolute;
  top: -40px;
  width: 12px;
  height: 12px;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
}

@keyframes petalFall {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(110vh) rotate(720deg) translateX(80px);
  }
}

/* =====================================================
   HOW TO ORDER SECTION
   ===================================================== */
.how-to {
  background: var(--color-bg);
}

.how-to-header {
  margin-bottom: 4rem;
}

.how-to-header .section-title {
  display: inline-block;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.step-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-slow);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.step-number {
  font-family: var(--font-elegant);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(139, 154, 137, 0.12);
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  letter-spacing: -2px;
}

.step-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-accent);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 1.8rem;
  padding: 0 0.5rem;
  position: relative;
}

.step-connector::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, var(--color-primary-light), var(--color-gold));
  position: relative;
}

.step-connector::after {
  content: '›';
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-left: -8px;
}

.how-to-cta {
  padding-top: 1rem;
}

.how-to-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.how-to-note::before {
  content: '✨ ';
}

/* =====================================================
   UPDATED GALLERY GRID (6 images)
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-tall {
  grid-row: 1 / 3;
  /* Pierwsze zdjęcie — wysokie (2 rzędy) */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 53, 49, 0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* =====================================================
   FLOATING PHONE BUTTON
   ===================================================== */
.floating-phone {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--color-primary);
  color: white;
  padding: 0.9rem 1.4rem;
  border-radius: 100px;
  box-shadow: 0 8px 30px rgba(139, 154, 137, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-phone::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid var(--color-primary);
  opacity: 0;
  animation: phonePulse 2s ease-out infinite;
}

@keyframes phonePulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

.floating-phone:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 154, 137, 0.6);
  color: white;
}

.floating-phone-icon {
  font-size: 1.1rem;
}

.floating-phone-label {
  font-size: 0.85rem;
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Responsive updates */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 250px);
  }

  .gallery-tall {
    grid-row: auto;
    grid-column: 1 / 3;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-tall {
    grid-column: auto;
    height: 300px;
  }

  .gallery-item {
    height: 220px;
  }

  .floating-phone-label {
    display: none;
  }

  .floating-phone {
    padding: 0.9rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
}

/* =====================================================
   MODAL SYSTEM
   ===================================================== */

/* Overlay — ciemne tło za modalem */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 26, 23, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Panel modalny */
.modal-panel {
  background: var(--color-white);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  border-radius: 20px;
  overflow-y: auto;
  padding: 2.5rem 3rem 3rem;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-light) transparent;
}

.modal-overlay.is-open .modal-panel {
  transform: translateY(0);
}

/* Przycisk zamknięcia */
.modal-close {
  position: sticky;
  top: 1.5rem;
  margin-left: auto;
  margin-bottom: -40px;
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid #eee;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition);
  font-family: var(--font-body);
}

.modal-close:hover {
  background: var(--color-accent);
  color: white;
  border-color: transparent;
  transform: rotate(90deg);
}

/* Nagłówek modalu */
.modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0eeeb;
}

.modal-icon {
  font-size: 3rem;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--color-blush), #fff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(139, 154, 137, 0.12);
}

.modal-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-primary-light);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
  background: rgba(139, 154, 137, 0.06);
}

.modal-header h2 {
  font-size: 2rem;
  color: var(--color-accent);
  margin: 0;
}

/* Treść modalu */
.modal-lead {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 680px;
}

/* Dwie kolumny z listami */
.modal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.modal-cols h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-list li {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  padding-left: 0;
}

/* Siatka cen */
.modal-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: 12px;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  background: var(--color-white);
  border: 1px solid #eee;
  gap: 0.4rem;
  transition: var(--transition);
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.price-card.price-featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}

.price-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.price-featured .price-label {
  color: rgba(255, 255, 255, 0.6);
}

.price-value {
  font-family: var(--font-elegant);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.price-featured .price-value {
  color: var(--color-gold);
}

.price-desc {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.price-featured .price-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* Stopka modalu */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f0eeeb;
  margin-top: 1.5rem;
}

.btn-modal-secondary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.btn-modal-secondary:hover {
  color: var(--color-accent);
}

/* Blokada scrollowania body gdy modal otwarty */
body.modal-open {
  overflow: hidden;
}

/* Responsywność modali */
@media (max-width: 768px) {
  .modal-panel {
    padding: 2rem 1.5rem 2.5rem;
    max-height: 85vh;
    width: 92%;
    margin: auto;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal-pricing {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .price-card.price-featured {
    transform: none;
    order: -1;
  }

  .modal-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
}

/* --- MOBILE HORIZONTAL OUT OF BOUNDS SWIPE FIX --- */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
}

section,
footer,
.hero {
  max-width: 100%;
  overflow-x: hidden !important;
}