/* =====================================================================
   KREATIVNÍ KVĚTINÁŘSTVÍ — styles.css (desktop)
   ===================================================================== */

/* ── Variables ── */
:root {
  --green-deep:   #0D2016;
  --green-forest: #1A3D28;
  --green-mid:    #2E6B44;
  --green-bright: #3D8E5A;
  --green-sage:   #6BA87C;
  --green-mint:   #A8D4B3;
  --pink-bloom:   #D96E8A;
  --purple-wild:  #9B78BC;
  --cream:        #F4EFE5;
  --cream-warm:   #FAF7F0;
  --earth:        #7A5840;
  --text-dark:    #1A2E22;
  --text-mid:     #3A5246;
  --text-light:   #F4EFE5;
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h:        72px;
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s var(--ease-out);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-bloom {
  width: 90px;
  height: 90px;
  animation: loader-spin 3s linear infinite;
  transform-origin: 50px 50px;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }
.lp { transform-origin: 50px 50px; animation: petal-bloom 0.9s var(--ease-spring) both; }
.lp1 { animation-delay: 0.0s; }
.lp2 { animation-delay: 0.08s; }
.lp3 { animation-delay: 0.16s; }
.lp4 { animation-delay: 0.24s; }
.lp5 { animation-delay: 0.32s; }
.lp6 { animation-delay: 0.40s; }
@keyframes petal-bloom {
  from { opacity: 0; transform: scale(0.2) rotate(var(--r, 0deg)); }
  to   { opacity: 1; transform: scale(1)   rotate(var(--r, 0deg)); }
}


/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(13, 32, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.25), 0 1px 0 rgba(106,168,124,0.12);
}
.nav-container {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo-pill {
  display: flex;
  align-items: center;
  background: rgba(244, 239, 229, 0.13);
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: 12px;
  padding: 5px 10px;
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}
#navbar.scrolled .nav-logo-pill {
  background: rgba(244, 239, 229, 0.1);
}
.nav-logo-pill img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-links-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 229, 0.85);
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: color 0.25s, background 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1.5px;
  background: var(--green-sage);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--cream); background: rgba(255,255,255,0.06); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:focus-visible {
  outline: 2.5px solid var(--green-sage);
  outline-offset: 3px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(46,107,68,0.4), 0 1px 4px rgba(0,0,0,0.2);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s var(--ease-spring);
}
.nav-cta:hover {
  background: var(--green-bright);
  box-shadow: 0 4px 20px rgba(61,142,90,0.5), 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
.nav-cta:focus-visible {
  outline: 2.5px solid var(--green-mint);
  outline-offset: 3px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-hamburger:focus-visible { outline: 2.5px solid var(--green-sage); outline-offset: 3px; }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  clip-path: circle(0% at 95% 5%);
  transition: clip-path 0.5s var(--ease-out);
}
.mobile-menu.open .mobile-menu-bg { clip-path: circle(150% at 50% 50%); }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--cream);
  padding: 12px;
  border-radius: 8px;
  z-index: 1;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}
.mobile-close:hover { background: rgba(255,255,255,0.08); transform: rotate(90deg); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  padding: 8px 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-spring), color 0.2s;
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.3s; }
.mobile-link:hover { color: var(--green-sage); }
.mobile-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--green-mid);
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 12px;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.35s, transform 0.4s 0.35s var(--ease-spring), background 0.2s;
}
.mobile-menu.open .mobile-cta { opacity: 1; transform: translateY(0); }
.mobile-cta:hover { background: var(--green-bright); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('../img/generic/bg-roses2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(13,32,22,0.45) 0%, rgba(13,32,22,0.0) 70%),
    linear-gradient(to bottom, rgba(13,32,22,0.85) 0%, rgba(13,32,22,0.45) 45%, rgba(13,32,22,0.80) 100%);
  z-index: 1;
}
.grain-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.grain-layer svg { width: 100%; height: 100%; }
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: calc(var(--nav-h) + 24px) 24px 80px;
}
.hero-eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  color: var(--green-sage);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.hero-anim.visible { opacity: 1; transform: translateY(0); }
.hero-medallion {
  width: 320px;
  height: 320px;
  background: var(--cream-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.4),
    0 2px 12px rgba(0,0,0,0.25),
    0 0 0 6px rgba(106,168,124,0.2),
    0 0 0 12px rgba(106,168,124,0.08);
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-spring);
  transition-delay: var(--d, 0s);
}
.hero-medallion.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-logo-img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(244, 239, 229, 0.88);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.hero-tagline.visible { opacity: 1; transform: translateY(0); }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.hero-ctas.visible { opacity: 1; transform: translateY(0); }
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 4;
  line-height: 0;
}
.hero-wave svg { width: 100%; }

/* ── Buttons ── */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(46,107,68,0.45), 0 1px 4px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 6px 28px rgba(61,142,90,0.55), 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(46,107,68,0.3); }
.btn-primary:focus-visible { outline: 2.5px solid var(--green-mint); outline-offset: 3px; }
.btn-outline {
  background: rgba(244,239,229,0.08);
  color: var(--cream);
  border: 1.5px solid rgba(244,239,229,0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(244,239,229,0.16);
  border-color: rgba(244,239,229,0.6);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 2.5px solid var(--green-mint); outline-offset: 3px; }

/* ── Parallax Sections ── */
.parallax-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 2;
}
.flowers-section {
  background-image: url('../img/generic/bg-lilies.jpg');
}
.crafts-section {
  background-image: url('../img/crocheting/bg-crocheting.jpg');
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,32,22,0.78) 0%, rgba(26,61,40,0.65) 50%, rgba(13,32,22,0.75) 100%);
}
.crafts-overlay {
  background: linear-gradient(135deg, rgba(13,32,22,0.72) 0%, rgba(46,107,68,0.5) 60%, rgba(13,32,22,0.78) 100%);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 40px;
}
.parallax-content .section-script {
  color: var(--green-mint);
  opacity: 0.85;
}
.parallax-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 8px 0 24px;
}
.parallax-text {
  font-size: 1.1rem;
  color: rgba(244,239,229,0.82);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
.leaf-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.7;
  pointer-events: none;
}
.lc-tl { top: 24px; left: 24px; }
.lc-br { bottom: 24px; right: 24px; transform: scaleX(-1) scaleY(-1); }
.wave-divider-dark { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 3; }
.wave-divider-dark svg { width: 100%; }
.wave-divider-cream { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 3; }
.wave-divider-cream svg { width: 100%; }

/* ── Section Script / Header ── */
.section-script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--green-bright);
  margin-bottom: 8px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 4px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-top: 12px;
}

/* ── Craft Cards ── */
.cards-section {
  position: relative;
  background: var(--cream);
  padding: 100px 0 110px;
  z-index: 3;
}
.blob-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(61,142,90,0.07) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 30% 50% 50% 70%;
  animation: blob-morph 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 30% 50% 50% 70%; }
  25%  { border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%; }
  50%  { border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%; }
  75%  { border-radius: 70% 30% 60% 40% / 40% 70% 30% 60%; }
}
.craft-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.craft-card {
  background: var(--cream-warm);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(46,107,68,0.10);
  box-shadow: 0 2px 12px rgba(13,32,22,0.06), 0 8px 32px rgba(13,32,22,0.08);
  transition: box-shadow 0.35s, transform 0.35s var(--ease-out);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.craft-card:hover {
  box-shadow: 0 8px 40px rgba(13,32,22,0.14), 0 24px 64px rgba(13,32,22,0.10);
}
.craft-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.craft-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.craft-card:hover .craft-card-img-wrap img { transform: scale(1.07); }
.craft-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,32,22,0.45) 0%, transparent 60%);
}
.craft-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.craft-icon { font-size: 1.6rem; line-height: 1; }
.craft-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.craft-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Gallery ── */
.gallery-section {
  position: relative;
  background: var(--green-deep);
  padding: 100px 0 110px;
  z-index: 3;
  overflow: hidden;
  min-height: 600px;
}
.gallery-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(46,107,68,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(155,120,188,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.gallery-section .section-header h2 { color: var(--cream); }
.gallery-section .section-sub { color: rgba(244,239,229,0.6); }
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
  border-radius: 14px;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,32,22,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.masonry-item:focus-visible {
  outline: 3px solid var(--green-sage);
  outline-offset: 3px;
  border-radius: 14px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 12, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transition: transform 0.3s var(--ease-spring);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: rgba(244,239,229,0.8);
  padding: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-spring);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  transform: scale(1.1);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.1); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-next:hover { transform: translateY(-50%) scale(1.1); }
.lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(244,239,229,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lb-close:focus-visible, .lb-prev:focus-visible, .lb-next:focus-visible {
  outline: 2.5px solid var(--green-sage);
  outline-offset: 3px;
}

/* ── Contact ── */
.contact-section {
  position: relative;
  background: var(--green-forest);
  padding: 100px 0 110px;
  z-index: 3;
  overflow: hidden;
}
.contact-section .section-header h2 { color: var(--cream); }
.contact-section .section-script { color: var(--green-mint); }
.contact-botanical {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.5;
  pointer-events: none;
}
.contact-botanical svg { width: 100%; height: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.contact-map iframe {
  flex: 1;
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(20%) brightness(0.85);
  border-radius: 14px;
}
.contact-hours h3, .contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
  color: rgba(244,239,229,0.82);
  border-bottom: 1px solid rgba(106,168,124,0.12);
}
.hours-table td:first-child { padding-right: 32px; }
.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--green-mint);
}
.hours-table .closed td { color: rgba(244,239,229,0.38); }
.hours-table .closed td:last-child { color: rgba(244,239,229,0.38); }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: rgba(244,239,229,0.85);
}
.contact-item a {
  color: var(--green-mint);
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--cream); }
.contact-item a:focus-visible { outline: 2.5px solid var(--green-sage); outline-offset: 3px; border-radius: 4px; }
.contact-icon {
  color: var(--green-sage);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: rgba(61,142,90,0.15);
  border: 1px solid rgba(61,142,90,0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--green-mint);
  font-weight: 500;
}
.open-dot {
  width: 8px;
  height: 8px;
  background: var(--green-sage);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(106,168,124,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(106,168,124,0); }
}

/* ── Footer ── */
.site-footer {
  background: var(--green-deep);
  padding: 64px 0 0;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(106,168,124,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo-wrap {
  background: rgba(244,239,229,0.08);
  border-radius: 16px;
  padding: 16px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
}
.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(244,239,229,0.55);
  line-height: 1.6;
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; }
.footer-nav h4, .footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 20px;
}
.footer-nav a, .footer-contact a {
  font-size: 0.95rem;
  color: rgba(244,239,229,0.65);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--cream); }
.footer-nav a:focus-visible, .footer-contact a:focus-visible {
  outline: 2.5px solid var(--green-sage);
  outline-offset: 3px;
  border-radius: 4px;
}
.footer-contact p {
  font-size: 0.95rem;
  color: rgba(244,239,229,0.65);
  padding: 4px 0;
}
.footer-hours { color: rgba(244,239,229,0.45) !important; font-size: 0.85rem !important; margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(106,168,124,0.1);
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(244,239,229,0.35);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Focus Styles (global override) ── */
:focus-visible {
  outline: 2.5px solid var(--green-sage);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-bright); }

/* ── Sticky Mobile CTA Bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--green-deep);
  border-top: 1px solid rgba(106,168,124,0.2);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 28px rgba(0,0,0,0.35);
}
.mobile-cta-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--green-mid);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(46,107,68,0.5), 0 1px 4px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.15s;
}
.mobile-cta-bar-btn:active {
  background: var(--green-bright);
  transform: scale(0.98);
}
.mobile-cta-bar-btn:focus-visible {
  outline: 2.5px solid var(--green-mint);
  outline-offset: 3px;
}
