/* Pal & Gal — Wedding Photography */
:root{
  --bg:#0a0f1a;
  --ink:#f0f4ff;
  --muted:#a8b2d1;
  --brand:#8b5cf6;
  --brand-light:#a78bfa;
  --brand-dark:#7c3aed;
  --accent:#10b981;
  --accent-light:#34d399;
  --accent-dark:#059669;
  --panel:#0f1419;
  --line:#1e293b;
  --success:#10b981;
  --warning:#f59e0b;
  --error:#ef4444;
  --gradient-primary:linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  --gradient-secondary:linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --gradient-hero:linear-gradient(135deg, #8b5cf6 0%, #10b981 50%, #a78bfa 100%);
  --shadow-sm:0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md:0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl:0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* Critical CSS - Above the fold */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;padding-top:70px;background:linear-gradient(180deg,var(--bg), #0f1419);color:var(--ink);font:16px/1.6 ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
.container{width:min(1100px,92%);margin:0 auto}
.skip-link{position:absolute;left:-9999px;top:auto}
.skip-link:focus{left:1rem;top:1rem;background:var(--panel);padding:.5rem .75rem;border-radius:.5rem}

/* Header */
.site-header{position:fixed;top:0;left:0;right:0;width:100%;z-index:10002;background:rgba(10,14,30,.7);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line);will-change: transform;transform: translateZ(0);backface-visibility: hidden}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand img{filter:drop-shadow(0 1px 0 rgba(0,0,0,.2))}
.nav ul{display:flex;gap:1rem;list-style:none;margin:0;padding:0}
.nav a{padding:.5rem .75rem;border-radius:.5rem;color:var(--muted)}
.nav a:hover,.nav a:focus{color:var(--ink);background:rgba(255,255,255,.06)}
.nav .btn-primary{color:white !important}
.nav .btn-primary:hover{color:white !important}
.btn{
  display:inline-block;
  padding:.8rem 1.5rem;
  border:1px solid var(--line);
  border-radius:.8rem;
  font-weight:600;
  text-align:center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before{
  left: 100%;
}
.btn-primary{
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary{
  background: var(--gradient-secondary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover{
  background: var(--panel);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.nav-toggle{display:none;background:none;border:0;color:var(--ink)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Mobile Navigation */
@media (max-width: 800px){
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:.75rem;
    border-radius:8px;
    transition:background-color 0.3s ease;
    z-index:10001;
    position:relative;
  }
  .nav-toggle svg{
    transition:transform 0.3s ease;
  }
  .nav-toggle svg path{
    transition:all 0.3s ease;
  }
  .nav-toggle:hover{
    background:rgba(255,255,255,0.1);
  }
  .nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(10,14,30,.98);
    backdrop-filter:blur(20px);
    transform:translateX(-100%);
    transition:transform .4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index:10000;
    padding:0;
    overflow-y:auto;
    width:100vw;
    height:100vh;
  }
  .nav.open{
    transform:translateX(0);
  }
  
  /* Body scroll lock when menu is open */
  body.menu-open{
    overflow:hidden;
    position:fixed;
    width:100%;
  }
  .nav ul{
    flex-direction:column;
    padding:80px 1.5rem 2rem;
    gap:0.5rem;
    margin:0;
    min-height:100vh;
    list-style:none;
  }
  .nav li{
    width:100%;
  }
  .nav a{
    display:block;
    padding:1rem 1.5rem;
    border-radius:12px;
    font-size:1.1rem;
    font-weight:500;
    transition:all 0.3s ease;
    text-align:center;
    color:#ffffff;
    text-decoration:none;
    background:rgba(255,255,255,0.05);
    margin-bottom:0.5rem;
  }
  .nav a:hover,
  .nav a:focus{
    background:var(--gradient-primary);
    color:white;
    transform:translateX(4px);
  }
  .nav .btn{
    margin-top:1rem;
    width:100%;
    justify-content:center;
  }
  .nav .btn-primary{
    color:white !important;
    background: linear-gradient(135deg, #00ff88, #00cc6a, #00a854) !important;
    border: 2px solid #ffffff !important;
    box-shadow: 
      0 0 20px rgba(0, 255, 136, 0.6),
      0 0 40px rgba(0, 255, 136, 0.4),
      0 8px 32px rgba(0, 0, 0, 0.2) !important;
    animation: pulseGlow 2s ease-in-out infinite !important;
    position: relative;
    overflow: hidden;
  }
  
  .nav .btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
  }
  
  .nav .btn-primary:hover{
    color:white !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 
      0 0 30px rgba(0, 255, 136, 0.8),
      0 0 60px rgba(0, 255, 136, 0.6),
      0 12px 40px rgba(0, 0, 0, 0.3) !important;
    animation: none !important;
  }
  
  .nav .btn-primary:hover::before {
    opacity: 1;
    animation: shimmer 0.8s ease-in-out;
  }
  .nav-close{
    position:fixed;
    top:1rem;
    right:1rem;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.3);
    color:#ffffff;
    cursor:pointer;
    padding:.75rem;
    border-radius:8px;
    transition:background-color 0.3s ease;
    z-index:10001;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .nav-close:hover{
    background:rgba(255,255,255,0.1);
  }
  .nav-close svg{
    width:24px;
    height:24px;
  }
}

/* Hide close button on desktop */
@media (min-width: 801px){
  .nav-close{
    display:none;
  }
}

/* Hero */
.hero{
  padding:72px 0 32px;
  background: 
    radial-gradient(1200px 600px at 80% -10%, rgba(139, 92, 246, 0.15), transparent 60%),
    radial-gradient(800px 400px at 20% 100%, rgba(16, 185, 129, 0.1), transparent 50%);
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 0.03;
  animation: gradientShift 20s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { transform: translateX(0) translateY(0); }
  33% { transform: translateX(30px) translateY(-20px); }
  66% { transform: translateX(-20px) translateY(30px); }
}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:3rem;
  align-items:center;
  position: relative;
  z-index: 1;
}
.hero h1{
  font-size:clamp(2.5rem,5vw,4rem);
  line-height:1.3;
  margin:.25rem 0 .75rem;
  padding-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}
.hero p{
  color:var(--muted);
  max-width:52ch;
  font-size: 1.1rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-ctas{
  display:flex;
  gap:1rem;
  margin-top:2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-media{
  height:480px;
  animation: fadeInRight 1s ease-out 0.6s both;
}
.hero-carousel{
  height:100%;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.hero-carousel::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.hero-carousel:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
}
.hero-carousel:hover::before{
  opacity: 0.1;
}
.hero-carousel-track{
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-carousel-slide{
  width: 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-carousel-slide.hero-loading{
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.hero-carousel-slide.hero-loading .loading-spinner{
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Mobile hero carousel optimizations */
@media (max-width: 768px) {
  .hero-carousel{
    min-height: 300px; /* Ensure minimum height on mobile */
    overflow: hidden; /* Prevent overflow issues */
  }
  
  /* Remove purple overlay on mobile */
  .hero-carousel::before{
    display: none;
  }
  
  .hero-carousel-track{
    width: 100%;
    min-width: 100%;
  }
  
  .hero-carousel-slide{
    background-attachment: scroll; /* Better performance on mobile */
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
  }
  
  .hero-carousel-slide img{
    object-fit: cover;
    object-position: center 25%;
  }
  
  .hero-carousel-slide.hero-loading .loading-spinner{
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  /* Ensure overlay is removed on small mobile devices too */
  .hero-carousel::before{
    display: none;
  }
  
  .hero-carousel-slide img{
    object-fit: cover;
    object-position: center 25%;
  }
  
  .hero-carousel-slide.hero-loading .loading-spinner{
    width: 25px;
    height: 25px;
  }
}
.hero-carousel-dots{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-carousel-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-carousel-dot.active{
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}
.hero-carousel-dot:hover{
  background: rgba(255, 255, 255, 0.8);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Mobile Hero */
@media (max-width: 900px){
  .hero{
    padding:60px 0 24px;
  }
  .hero-inner{
    grid-template-columns:1fr;
    gap:3rem; /* Increased gap between carousel and text */
    text-align:center;
  }
  .hero-media{
    order:-1;
    height:300px;
    margin:0 auto;
    max-width:400px;
    margin-bottom: 1rem; /* Added extra margin below carousel */
  }
  .hero-carousel-dots{
    bottom: 15px;
  }
  .hero-carousel-dot{
    width: 6px;
    height: 6px;
  }
  .hero-ctas{
    flex-direction:column;
    align-items:stretch;
    gap:1rem;
    max-width:300px;
    margin:0 auto;
  }
  .hero h1{
    font-size:clamp(2rem,8vw,3rem);
    margin-bottom:1rem;
    line-height: 1.3; /* Increased line height for better descender spacing */
    padding-bottom: 0.5rem; /* Added padding to prevent cutoff */
  }
  .hero p{
    font-size:1rem;
    margin-bottom:1.5rem;
  }
}

@media (max-width: 480px){
  .hero{
    padding:50px 0 20px;
  }
  .hero-inner{
    gap:2.5rem; /* Increased gap for smaller screens */
  }
  .hero-media{
    height:250px;
    margin-bottom: 1.5rem; /* Added extra margin below carousel */
  }
  .hero h1{
    font-size:clamp(1.8rem,10vw,2.5rem);
    line-height: 1.4; /* Increased line height for better descender spacing */
    padding-bottom: 0.75rem; /* Added more padding to prevent cutoff */
  }
  .hero-ctas{
    max-width:100%;
  }
  .btn{
    padding:1rem 1.5rem;
    font-size:1rem;
  }
}

/* Sections */
.section{padding:72px 0;border-top:1px solid var(--line);content-visibility: auto;contain-intrinsic-size: auto 500px}
.section.alt{background:linear-gradient(180deg,transparent, rgba(255,255,255,.02) 10%, transparent)}
.section-head{margin:0 0 24px}
.section-head h2{font-size:clamp(1.4rem,2.8vw,2rem);margin:0}
.section-head p{color:var(--muted);margin:.5rem 0 0}

/* Portfolio Filters - Clean Dropdown Design */
.portfolio-filters{
  margin-bottom: 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.filter-controls{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.filter-dropdown-group{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-label{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.filter-icon{
  font-size: 1.1rem;
}

.custom-dropdown{
  position: relative;
  width: 100%;
}

.dropdown-toggle{
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.dropdown-toggle:hover{
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.dropdown-toggle:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.dropdown-arrow{
  transition: transform 0.3s ease;
  color: var(--muted);
}

.custom-dropdown.open .dropdown-arrow{
  transform: rotate(180deg);
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border: 2px solid var(--line);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 200px;
  overflow-y: auto;
}

.custom-dropdown.open .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item{
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.dropdown-item:last-child{
  border-bottom: none;
}

.dropdown-item:hover{
  background: var(--panel);
  color: var(--brand);
}

.dropdown-item.active{
  background: var(--gradient-primary);
  color: white;
}

.filter-actions{
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.clear-filters-btn{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 16px;
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clear-filters-btn:hover{
  background: var(--panel);
  border-color: var(--brand);
  color: var(--brand);
}

.active-filters{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  margin-top: 1rem;
}

.active-filters-label{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.active-filter-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-tag{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 12px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.filter-tag-remove{
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.filter-tag-remove:hover{
  opacity: 1;
}

/* Portfolio grid */
.grid{display:grid;gap:20px}
.portfolio-grid{grid-template-columns:repeat(3,1fr)}
/* Mobile Portfolio */
@media (max-width: 900px){
  .portfolio-filters{
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .filter-controls{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .filter-actions{
    justify-content: center;
  }
  
  .active-filters{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .portfolio-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .tile .ph{
    height: 180px;
  }
  
  .session-tile .session-image {
    height: 180px;
  }
}

@media (max-width: 600px){
  .portfolio-filters{
    padding: 1rem;
  }
  
  .filter-controls{
    gap: 0.75rem;
  }
  
  .dropdown-toggle{
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .dropdown-item{
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .clear-filters-btn{
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .portfolio-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 580px){
  .portfolio-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
  .tile .ph{
    height:200px;
  }
  
  .session-tile .session-image {
    height: 200px;
  }
  .tile figcaption{
    font-size:0.85rem;
    margin-top:0.5rem;
  }
  .gallery-btn{
    width:40px;
    height:40px;
  }
  .gallery-btn svg{
    width:20px;
    height:20px;
  }
}
.tile{
  margin:0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.tile:hover{
  transform: translate3d(0, -4px, 0);
}
.tile .ph{
  border:1px solid var(--line);
  border-radius:16px;
  height:220px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Session tile specific styles */
.session-tile .session-image {
  border: 1px solid var(--line);
  border-radius: 16px;
  height: 220px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.session-tile .session-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 16px;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.session-tile:hover .session-image img {
  transform: scale(1.05);
}

.session-tile figcaption h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0.5rem 0 0.25rem 0;
}

.session-tile figcaption p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Image placeholder and loading states */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.image-placeholder.loaded {
  background: transparent;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-placeholder.loaded img {
  opacity: 1;
}

/* Loading spinner */
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-top: 3px solid var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.image-placeholder.loaded .loading-spinner {
  display: none;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error state */
.image-placeholder.error {
  background: linear-gradient(135deg, #374151, #4b5563);
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.image-placeholder.error .loading-spinner {
  display: none;
}

/* Lightbox loading state */
.lightbox-caption .loading-spinner {
  margin: 0 auto 1rem auto;
}

.lightbox-caption p {
  margin: 0.5rem 0;
  text-align: center;
}

/* Lightbox mobile optimizations */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 1rem;
  }
  
  
  .lightbox-prev,
  .lightbox-next {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}
.tile:hover .ph{
  box-shadow: var(--shadow-lg);
}
.tile figcaption{
  font-size:.9rem;
  color:var(--muted);
  margin-top:.75rem;
  font-weight:500;
}
.tile-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}
.tile:hover .tile-overlay{
  opacity: 1;
}
.gallery-btn{
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-btn:hover{
  transform: scale(1.1);
}
.gallery-btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.gallery-btn:disabled:hover{
  transform: none;
  background: var(--muted);
  color: var(--text);
}
.placeholder-image{
  border-radius: 12px;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.ph.tall{height:320px}

/* Google Reviews Section */
.google-rating{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.google-rating .stars{
  font-size: 1.5rem;
  color: #fbbf24;
}
.google-rating .rating-text{
  font-weight: 600;
  color: var(--text);
}
.google-link{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.google-link:hover{
  color: var(--brand-dark);
}
.google-link svg{
  transition: transform 0.3s ease;
}
.google-link:hover svg{
  transform: translate(2px, -2px);
}

/* Hide only the Elfsight attribution link, keep widget functional */
a[href*="elfsight.com/google-reviews-widget"],
a[href*="elfsight.com"][target="_blank"][rel="noreferrer"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  pointer-events: none !important;
}

/* Make Elfsight widget rating text white for dark background */
.es-rating-value,
.es-header-rating-reviews-count {
  color: #ffffff !important;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card:hover::before{
  opacity: 1;
}

.review-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.reviewer-details h4{
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.review-stars{
  color: #fbbf24;
  font-size: 0.875rem;
}

.review-date{
  font-size: 0.875rem;
  color: var(--muted);
}

.review-content{
  margin-bottom: 1rem;
}

.review-content p{
  margin: 0;
  line-height: 1.6;
  color: var(--text);
  font-size: 0.95rem;
}

.review-source{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.review-source svg{
  color: #4285f4;
}

@media (max-width: 768px){
  .reviews-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .review-card{
    padding: 1.25rem;
  }
  
  .google-rating{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .review-header{
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .reviewer-info{
    width: 100%;
  }
}

/* Lightbox */
.lightbox{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
.lightbox.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-content{
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-image-container{
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.lightbox-image{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  display: block;
}
.lightbox-caption{
  color: var(--ink);
  margin-top: 1rem;
  font-size: 1.1rem;
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--muted);
  border-top: 4px solid var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.lightbox-social{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
}
.social-btn{
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.social-btn:hover{
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.social-btn svg{
  width: 20px;
  height: 20px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position: absolute;
  background: rgba(0,0,0,0.7);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}
.lightbox-close{
  top: 20px;
  right: 20px;
  z-index: 1002;
  pointer-events: auto !important;
}
.lightbox-prev{
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
}
.lightbox-next{
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
  background: var(--gradient-primary);
  transform: scale(1.1);
}
.lightbox-prev:hover,
.lightbox-next:hover{
  transform: translateY(-50%) scale(1.1);
}
/* Mobile Lightbox */
@media (max-width: 768px){
  .lightbox{
    padding:20px;
  }
  .lightbox-content{
    max-width:100%;
    max-height:100%;
  }
  .lightbox-image-container{
    max-width: 95vw;
    max-height: 70vh;
    padding: 15px;
  }
  .lightbox-image{
    border-radius: 8px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .lightbox-prev,
  .lightbox-next{
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .lightbox-close{
    top:10px;
    right:10px;
    width:40px;
    height:40px;
    background:rgba(0,0,0,0.8);
    pointer-events: auto !important;
  }
  .lightbox-caption{
    font-size:1rem;
    margin-top:0.75rem;
    padding:0 1rem;
  }
}

@media (max-width: 480px){
  .lightbox{
    padding:10px;
  }
  .lightbox-image-container{
    max-width: 98vw;
    max-height: 60vh;
    padding: 10px;
  }
  .lightbox-image{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .lightbox-close{
    top:5px;
    right:5px;
    width:36px;
    height:36px;
    pointer-events: auto !important;
  }
  .lightbox-caption{
    font-size:0.9rem;
    margin-top:0.5rem;
  }
}

/* Notification Toast */
.notification-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.notification-toast.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
}

.notification-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ff88, #00a854);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.notification-message {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notification-message strong {
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

.notification-message span {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

.notification-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background: #f3f4f6;
  color: #6b7280;
}

/* Mobile Notification */
@media (max-width: 768px) {
  .notification-toast {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .notification-content {
    padding: 12px;
    gap: 10px;
  }
  
  .notification-icon {
    width: 32px;
    height: 32px;
  }
  
  .notification-message strong {
    font-size: 13px;
  }
  
  .notification-message span {
    font-size: 12px;
  }
}

/* Services cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media (max-width: 900px){
  .cards{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .card{
    padding:20px;
  }
}
@media (max-width: 580px){
  .cards{
    grid-template-columns:1fr;
    gap:12px;
  }
  .card{
    padding:18px;
  }
  .card h3{
    font-size:1.1rem;
  }
  .card p{
    font-size:0.9rem;
  }
  .card .price{
    font-size:1.1rem;
  }
}
.card{background:var(--panel);border:1px solid var(--line);border-radius:12px;padding:18px}
.card h3{margin:.25rem 0 .5rem}
.card .price{color:var(--brand);font-weight:600}

/* Enhanced Services Section - Compact Design */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card{
  background: var(--panel);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: fit-content;
}

.service-card:hover{
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.15);
}

.service-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before{
  opacity: 1;
}

.service-icon{
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.service-card h3{
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.service-price{
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand);
  text-align: center;
  margin-bottom: 1rem;
}

.service-description p{
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
}

.service-details{
  margin: 1rem 0;
}

.service-details h4{
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.service-details ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-details li{
  padding: 0.25rem 0;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.service-details li:last-child{
  border-bottom: none;
}

.service-highlights{
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.highlight{
  background: var(--gradient-primary);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Desktop - 3 columns for main services, 2 for add-ons */
@media (min-width: 1200px){
  .services-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card:nth-child(n+4){
    grid-column: span 1;
  }
  
  .service-card:nth-child(n+4) .service-details{
    display: none;
  }
  
  .service-card:nth-child(n+4) .service-description p{
    margin-bottom: 0.5rem;
  }
}

/* Tablet - 2 columns */
@media (max-width: 1199px) and (min-width: 769px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive Services */
@media (max-width: 768px){
  .services-grid{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card{
    padding: 1.25rem;
  }
  
  .service-icon{
    font-size: 2rem;
  }
  
  .service-card h3{
    font-size: 1.1rem;
  }
  
  .service-price{
    font-size: 1.2rem;
  }
  
  .service-details{
    margin: 0.75rem 0;
  }
  
  .service-details h4{
    font-size: 0.9rem;
  }
  
  .service-details li{
    font-size: 0.8rem;
  }
}

/* About Section - Redesigned */
.about-hero-image{
  margin: 2rem 0 3rem;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-image img{
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.about-hero-image img:hover{
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Engagement Tile in Photo Grid */
.photo-card.engagement-tile {
  position: relative;
  cursor: pointer;
}

/* Delaney Tile in Photo Grid */
.photo-card.delaney-tile {
  position: relative;
  cursor: pointer;
  min-height: 200px;
  height: 200px;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
}

/* Charley Tile in Photo Grid */
.photo-card.charley-tile {
  position: relative;
  cursor: pointer;
  min-height: 200px;
  height: 200px;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
}

.photo-card.charley-tile .session-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3f4f6;
}

.photo-card.charley-tile .session-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-card.charley-tile:hover .session-image img {
  transform: scale(1.05);
}

.photo-card.charley-tile .tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-card.charley-tile:hover .tile-overlay {
  opacity: 1;
}

.photo-card.charley-tile .gallery-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1f2937;
}

.photo-card.charley-tile .gallery-btn:hover {
  background: white;
  transform: scale(1.1);
}

.photo-card.charley-tile .gallery-btn svg {
  width: 24px;
  height: 24px;
}

.photo-card.delaney-tile .session-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f3f4f6;
}

.photo-card.delaney-tile .session-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-card.delaney-tile:hover .session-image img {
  transform: scale(1.05);
}

.photo-card.delaney-tile .tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-card.delaney-tile:hover .tile-overlay {
  opacity: 1;
}

.photo-card.delaney-tile .gallery-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1f2937;
}

.photo-card.delaney-tile .gallery-btn:hover {
  background: white;
  transform: scale(1.1);
}

.photo-card.delaney-tile .gallery-btn svg {
  width: 24px;
  height: 24px;
}

.photo-card.engagement-tile .session-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.photo-card.engagement-tile .session-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-card.engagement-tile:hover .session-image img {
  transform: scale(1.05);
}

.photo-card.engagement-tile .tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-card.engagement-tile:hover .tile-overlay {
  opacity: 1;
}

.photo-card.engagement-tile .gallery-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1f2937;
}

.photo-card.engagement-tile .gallery-btn:hover {
  background: white;
  transform: scale(1.1);
}

.photo-card.engagement-tile .gallery-btn svg {
  width: 24px;
  height: 24px;
}

/* Confetti Hearts Animation */
.heart-animation{
  position: absolute;
  font-size: 1.5rem;
  color: #ef4444;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0) scale(0.3) rotate(0deg);
  animation: heartConfetti 3s ease-out forwards;
}

.heart-animation:nth-child(odd) {
  animation: heartConfettiLeft 3s ease-out forwards;
}

.heart-animation:nth-child(even) {
  animation: heartConfettiRight 3s ease-out forwards;
}

@keyframes heartConfetti {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.3) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(-10px) scale(0.8) rotate(45deg);
  }
  30% {
    opacity: 1;
    transform: translateY(-30px) scale(1.1) rotate(90deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-60px) scale(1) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(0.5) rotate(360deg);
  }
}

@keyframes heartConfettiLeft {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.3) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(-10px) translateX(-20px) scale(0.8) rotate(45deg);
  }
  30% {
    opacity: 1;
    transform: translateY(-30px) translateX(-40px) scale(1.1) rotate(90deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-60px) translateX(-60px) scale(1) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) translateX(-80px) scale(0.5) rotate(360deg);
  }
}

@keyframes heartConfettiRight {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.3) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(-10px) translateX(20px) scale(0.8) rotate(-45deg);
  }
  30% {
    opacity: 1;
    transform: translateY(-30px) translateX(40px) scale(1.1) rotate(-90deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-60px) translateX(60px) scale(1) rotate(-180deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) translateX(80px) scale(0.5) rotate(-360deg);
  }
}

.about-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* Left Column: Story + Mission */
.about-left{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Right Column: Values + Photos */
.about-right{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-text h3{
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 700;
}

.story-text p{
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.mission-statement{
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.mission-statement h4{
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 600;
}

.mission-statement p{
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}

.value-card:hover{
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.value-icon{
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h4{
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.value-card p{
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.about-photos{
  position: relative;
}

.photo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}

.photo-card{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.photo-card:hover{
  transform: scale(1.02);
}

.main-photo{
  grid-row: span 2;
}

.photo-card .ph{
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--gradient-primary);
}

.main-photo .ph{
  min-height: 400px;
}

.photo-caption{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-cta{
  text-align: center;
  background: var(--panel);
  border: 2px solid var(--brand);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.about-cta h3{
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 700;
}

.about-cta p{
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Tablet Responsive About */
@media (max-width: 1024px) and (min-width: 769px){
  .about-content{
    gap: 3rem;
  }
  
  .values-grid{
    gap: 0.75rem;
  }
  
  .value-card{
    padding: 1rem;
    min-height: 120px;
  }
  
  .value-card h4{
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .value-card p{
    font-size: 0.75rem;
    line-height: 1.3;
  }
  
  .value-icon{
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

/* Mobile Responsive About */
@media (max-width: 768px){
  .about-hero-image{
    margin: 1.5rem 0 2rem;
  }
  
  .about-hero-image img{
    max-width: 100%;
    border-radius: 12px;
  }
  
  .heart-animation{
    font-size: 1.2rem;
  }
  
  .photo-card.engagement-tile .tile-overlay {
    display: none !important;
  }
  
  .photo-card.delaney-tile .tile-overlay {
    display: none !important;
  }
  
  .photo-card.charley-tile .tile-overlay {
    display: none !important;
  }
  
  /* Make engagement tile clickable on mobile */
  .photo-card.engagement-tile {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
  }
  
  .photo-card.engagement-tile:active {
    transform: scale(0.98);
  }
  
  /* Make Delaney tile clickable on mobile */
  .photo-card.delaney-tile {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
  }
  
  .photo-card.delaney-tile:active {
    transform: scale(0.98);
  }
  
  /* Make Charley tile clickable on mobile */
  .photo-card.charley-tile {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
  }
  
  .photo-card.charley-tile:active {
    transform: scale(0.98);
  }
  
  .about-content{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-left,
  .about-right{
    gap: 1.5rem;
  }
  
  .values-grid{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .value-card{
    min-height: auto;
    padding: 1.25rem;
  }
  
  .value-card h4{
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .value-card p{
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .value-icon{
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .photo-grid{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .main-photo{
    grid-row: span 1;
    min-height: 200px;
  }
  
  .photo-card.engagement-tile {
    min-height: 200px;
  }
  
  .photo-card.engagement-tile .session-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .story-text h3{
    font-size: 1.5rem;
  }
  
  .about-cta{
    padding: 2rem;
  }
  
  .about-cta h3{
    font-size: 1.5rem;
  }
}

/* Testimonials Carousel */
.testimonials-carousel{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonials-track{
  display: flex;
  transition: transform 0.5s ease;
}
.quote{
  margin:0;
  padding:32px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
  color:var(--ink);
  min-width: 100%;
  text-align: center;
  position: relative;
}
.quote::before{
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: var(--brand);
  opacity: 0.3;
  font-family: serif;
}
.quote-content{
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.quote cite{
  display:block;
  margin-top:1rem;
  color:var(--muted);
  font-style:normal;
  font-weight: 600;
}
.quote-rating{
  color: var(--brand);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.carousel-controls{
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn{
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-btn:hover{
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}
.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active{
  background: var(--brand);
  transform: scale(1.2);
}

/* Mobile Testimonials */
@media (max-width: 768px){
  .testimonials-carousel{
    margin:0 -1rem;
    padding:0 1rem;
  }
  .quote{
    padding:24px 20px;
    margin:0 8px;
  }
  .quote::before{
    font-size:3rem;
    top:12px;
    left:16px;
  }
  .quote-content{
    font-size:1rem;
    line-height:1.5;
  }
  .quote cite{
    font-size:0.9rem;
  }
  .quote-rating{
    font-size:1rem;
  }
  .carousel-controls{
    margin-top:1.5rem;
    gap:0.75rem;
  }
  .carousel-btn{
    width:44px;
    height:44px;
  }
  .carousel-dots{
    margin-top:0.75rem;
  }
}

@media (max-width: 480px){
  .quote{
    padding:20px 16px;
    margin:0 4px;
  }
  .quote::before{
    font-size:2.5rem;
    top:8px;
    left:12px;
  }
  .quote-content{
    font-size:0.95rem;
  }
  .quote cite{
    font-size:0.85rem;
  }
  .carousel-btn{
    width:40px;
    height:40px;
  }
  .carousel-btn svg{
    width:18px;
    height:18px;
  }
}

/* Blog Section */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2rem;
}
/* Mobile Blog */
@media (max-width: 900px){
  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
  }
  .blog-card{
    border-radius:12px;
  }
  .blog-content{
    padding:20px;
  }
  .blog-content h3{
    font-size:1.1rem;
  }
  .blog-content p{
    font-size:0.9rem;
  }
}
@media (max-width: 580px){
  .blog-grid{
    grid-template-columns: 1fr;
    gap:16px;
  }
  .blog-image{
    height:180px;
  }
  .blog-content{
    padding:18px;
  }
  .blog-content h3{
    font-size:1rem;
    line-height:1.2;
  }
  .blog-content p{
    font-size:0.85rem;
    margin-bottom:12px;
  }
  .blog-meta{
    font-size:0.8rem;
    flex-direction:column;
    gap:4px;
  }
}
.blog-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-image{
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
  text-align: center;
}

.blog-placeholder-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.blog-placeholder-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--brand-light);
}
.blog-content{
  padding: 24px;
}
.blog-content h3{
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.3;
}
.blog-content p{
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
.blog-meta{
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Contact Section - New Layout */
.contact-content{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form{
  background: var(--panel);
  border: 2px solid var(--brand);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
  position: relative;
}

.contact-form::before{
  content: 'Ready to get started?';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form h3{
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.form-note{
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}

/* Mobile Contact */
@media (max-width: 900px){
  .contact-content{
    gap: 2rem;
  }
  
  .contact-form{
    padding: 1.5rem;
  }
  
  .pricing-calculator{
    position: static;
    top: auto;
    padding: 1.5rem;
  }
}

@media (max-width: 580px){
  .contact-content{
    gap: 1.5rem;
  }
  
  .contact-form{
    padding: 1.25rem;
  }
  
  .pricing-calculator{
    padding: 1.25rem;
  }
  
  .pricing-calculator h3{
    font-size: 1.2rem;
  }
}
.pricing-calculator{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.calculator-header{
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--line);
}

.pricing-calculator h3{
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 700;
}

.calculator-subtitle{
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}

.calculator-form{
  display: grid;
  gap: 32px;
}

/* Package Selection */
.package-selection h4,
.location-section h4,
.guest-section h4,
.add-ons-section h4{
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
}

.package-options{
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

/* Desktop - 3 packages side by side */
@media (min-width: 1024px){
  .package-options{
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.package-option{
  position: relative;
  cursor: pointer;
}

.package-option input[type="radio"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card{
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Desktop package card optimization */
@media (min-width: 1024px){
  .package-card{
    padding: 20px;
  }
  
  .package-details{
    flex-grow: 1;
  }
  
  .package-details ul{
    font-size: 0.85rem;
  }
  
  .package-details li{
    padding: 0.2rem 0;
  }
}

.package-option input[type="radio"]:checked + .package-card{
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.package-card.featured{
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
}

/* Ensure checked state overrides featured state */
.package-option input[type="radio"]:checked + .package-card.featured{
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.15));
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

/* Unchecked packages should not have featured styling */
.package-option input[type="radio"]:not(:checked) + .package-card.featured{
  border-color: var(--line);
  background: var(--bg);
  box-shadow: none;
}

.popular-badge{
  position: absolute;
  top: -8px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-card h5{
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.package-price{
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
}

.package-details p{
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.package-details ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-details li{
  padding: 2px 0;
  color: var(--ink);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

/* Location Input with Auto-fill */
.location-input-wrapper{
  position: relative;
}

.location-suggestions{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.location-suggestion{
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
}

.location-suggestion:hover{
  background: var(--panel);
}

.location-suggestion:last-child{
  border-bottom: none;
}

/* Guest Section */
.guest-section select{
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  width: 100%;
}

/* Add-ons Grid */
.add-ons-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.addon-option{
  cursor: pointer;
}

.addon-option input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-card{
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.addon-option input[type="checkbox"]:checked + .addon-card{
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
}

.addon-card h5{
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.addon-price{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.addon-card p{
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: center;
}

/* Form Inputs */
.calculator-form label{
  display: grid;
  gap: 8px;
}

.calculator-form input[type="text"]{
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  width: 100%;
}

.calculator-form input:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.15);
}

.location-hint{
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Price Breakdown */
.calculator-result{
  background: linear-gradient(135deg, var(--gradient-primary), rgba(139, 92, 246, 0.8));
  color: white;
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
}

.calculator-result h4{
  margin: 0 0 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.price-breakdown{
  display: grid;
  gap: 12px;
}

.price-line{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.price-line.total{
  border-top: 2px solid rgba(255,255,255,0.3);
  padding-top: 16px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.2rem;
}

.price-value{
  font-size: 1.8rem;
  font-weight: 800;
}

.price-note{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.price-note p{
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
  opacity: 0.9;
  text-align: center;
}

/* Adaptive Calculator Features - Guest count recommendations disabled */
/* .package-card.recommended{
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  position: relative;
}

.package-card.recommended::after{
  content: 'Recommended for your guest count';
  position: absolute;
  top: -8px;
  left: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
} */

.addon-card.included{
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border-color: var(--brand);
  position: relative;
}

.addon-card.included::after{
  content: 'Included in your package';
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.addon-card.included h5{
  opacity: 0.7;
}

.addon-card.included .addon-price{
  color: var(--muted);
  text-decoration: line-through;
}

.addon-card.included .addon-price::after{
  content: ' (Included)';
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

/* Clean Calculator Styling */
.calculator-form{
  background: var(--bg);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.package-selection,
.location-section,
.guest-section,
.add-ons-section{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Desktop calculator layout improvements */
@media (min-width: 1024px){
  .calculator-form{
    padding: 2.5rem;
  }
  
  .package-selection,
  .location-section,
  .guest-section,
  .add-ons-section{
    padding: 2rem;
  }
  
  .add-ons-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .addon-card{
    padding: 18px;
  }
  
  /* Location and guest sections side by side */
  .location-section,
  .guest-section{
    display: inline-block;
    width: calc(50% - 10px);
    vertical-align: top;
    margin-bottom: 0;
  }
  
  .location-section{
    margin-right: 20px;
  }
  
  /* Create a wrapper for location and guest sections */
  .location-guest-wrapper{
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
  }
  
  .location-guest-wrapper .location-section,
  .location-guest-wrapper .guest-section{
    flex: 1;
    display: block;
    width: auto;
    margin-right: 0;
  }
}

.package-selection h4,
.location-section h4,
.guest-section h4,
.add-ons-section h4{
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-selection h4::before{ content: '📦'; }
.location-section h4::before{ content: '📍'; }
.guest-section h4::before{ content: '👥'; }
.add-ons-section h4::before{ content: '✨'; }

/* Tablet Responsive */
@media (max-width: 1023px) and (min-width: 769px){
  .location-guest-wrapper{
    display: block;
    gap: 0;
  }
  
  .location-guest-wrapper .location-section,
  .location-guest-wrapper .guest-section{
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px){
  .package-options{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .add-ons-grid{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .package-card{
    padding: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .addon-card{
    padding: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .calculator-form{
    padding: 1.5rem;
    margin: 0 -0.5rem; /* Extend to edges on mobile */
    border-radius: 16px;
  }
  
  .package-selection,
  .location-section,
  .guest-section,
  .add-ons-section{
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  /* Stack location and guest sections on mobile */
  .location-guest-wrapper{
    display: block;
    gap: 0;
    margin-bottom: 1.25rem;
  }
  
  .location-guest-wrapper .location-section,
  .location-guest-wrapper .guest-section{
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Enhanced mobile package cards */
  .package-card h5{
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .package-price{
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .package-details p{
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  
  .package-details ul{
    font-size: 0.8rem;
  }
  
  .package-details li{
    padding: 0.3rem 0;
    line-height: 1.3;
  }
  
  /* Enhanced mobile addon cards */
  .addon-card h5{
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .addon-price{
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .addon-card p{
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  /* Enhanced mobile form inputs */
  .calculator-form input[type="text"],
  .calculator-form select{
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }
  
  .calculator-form label span{
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  /* Enhanced mobile price breakdown */
  .calculator-result{
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 12px;
  }
  
  .calculator-result h4{
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .price-line{
    padding: 0.75rem 0;
    font-size: 0.95rem;
  }
  
  .price-line.total{
    font-size: 1.1rem;
    padding-top: 1rem;
  }
  
  .price-value{
    font-size: 1.5rem;
  }
  
  .price-note{
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .price-note p{
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* Enhanced mobile section headers */
  .package-selection h4,
  .location-section h4,
  .guest-section h4,
  .add-ons-section h4{
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Better mobile spacing */
  .calculator-header{
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .pricing-calculator h3{
    font-size: 1.3rem;
  }
  
  .calculator-subtitle{
    font-size: 0.9rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px){
  .calculator-form{
    padding: 1.25rem;
    margin: 0 -0.75rem; /* Extend even more on very small screens */
  }
  
  .package-selection,
  .location-section,
  .guest-section,
  .add-ons-section{
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .package-card{
    padding: 1.25rem;
  }
  
  .addon-card{
    padding: 1rem;
  }
  
  .calculator-form input[type="text"],
  .calculator-form select{
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .calculator-result{
    padding: 1.25rem;
  }
  
  .price-value{
    font-size: 1.3rem;
  }
  
  .pricing-calculator h3{
    font-size: 1.2rem;
  }
  
  .calculator-subtitle{
    font-size: 0.85rem;
  }
}

/* Contact Form */
.contact-form{display:grid;gap:16px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media (max-width: 700px){
  .form-row{grid-template-columns:1fr;gap:12px}
  .contact-form{gap:12px}
}

/* Mobile Form Enhancements */
@media (max-width: 580px){
  .contact-form{
    gap:14px;
  }
  .form-row{
    gap:14px;
  }
  input,textarea{
    padding:12px 14px;
    font-size:16px; /* Prevents zoom on iOS */
    border-radius:8px;
  }
  input:focus,textarea:focus{
    border-color:var(--brand);
    box-shadow:0 0 0 2px rgba(139, 92, 246, 0.15);
  }
  .form-actions{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }
  .btn{
    padding:14px 20px;
    font-size:1rem;
    min-height:48px; /* Touch-friendly */
  }
  .form-status{
    text-align:center;
    font-size:0.9rem;
  }
}
label{display:grid;gap:6px}
input,textarea{background:#0a0f22;color:var(--ink);border:1px solid var(--line);border-radius:10px;padding:10px 12px;outline:none}
input:focus,textarea:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(124,156,255,.15)}
.full{grid-column:1 / -1}
.form-actions{display:flex;align-items:center;gap:12px}
.form-status{min-height:1.2em;color:var(--muted)}

/* Contact Info Section */
.contact-info{
  margin-top:2rem;
  padding-top:2rem;
  border-top:1px solid var(--line);
  display:flex;
  gap:2rem;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}
.contact-info-item{
  display:flex;
  align-items:center;
  gap:0.75rem;
  color:var(--muted);
  transition:color 0.2s ease;
}
.contact-info-item svg{
  flex-shrink:0;
  color:var(--brand);
}
.contact-info-item a{
  color:var(--ink);
  text-decoration:none;
  font-weight:500;
  transition:color 0.2s ease;
}
.contact-info-item a:hover{
  color:var(--brand);
  text-decoration:underline;
}
@media (max-width: 768px){
  .contact-info{
    flex-direction:column;
    gap:1.5rem;
    align-items:flex-start;
  }
  .contact-info-item{
    width:100%;
  }
}

/* Footer */
.site-footer{border-top:1px solid var(--line);padding:28px 0;background:rgba(10,14,30,.6)}
.footer-inner{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between}
.footer-nav{display:flex;gap:10px}
.copy{color:var(--muted)}

/* Reveal on scroll - GPU accelerated */
.reveal{
  opacity:0;
  transform:translate3d(0, 10px, 0);
  transition:opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
  content-visibility: auto;
}
.reveal.visible{
  opacity:1;
  transform:translate3d(0, 0, 0);
  will-change: auto;
}

/* Mobile Touch Enhancements */
@media (max-width: 768px){
  .btn{
    min-height:44px; /* iOS touch target minimum */
    min-width:44px;
  }
  .gallery-btn{
    min-height:44px;
    min-width:44px;
  }
  .carousel-btn{
    min-height:44px;
    min-width:44px;
  }
  .tile{
    cursor:pointer;
    -webkit-tap-highlight-color:rgba(139, 92, 246, 0.2);
  }
  .blog-card{
    cursor:pointer;
    -webkit-tap-highlight-color:rgba(139, 92, 246, 0.2);
  }
  .nav a{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  
  /* Prevent scroll when menu is open */
  body.menu-open{
    overflow:hidden !important;
    position:fixed !important;
    width:100% !important;
    height:100% !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
  }
  
  /* Smooth transitions for mobile */
  .nav{
    -webkit-overflow-scrolling:touch;
  }
}

/* Mobile Scroll Behavior */
@media (max-width: 768px){
  .section{
    padding:60px 0;
  }
  .section-head{
    margin-bottom:20px;
  }
  .section-head h2{
    font-size:clamp(1.5rem,6vw,2rem);
  }
  .section-head p{
    font-size:0.95rem;
  }
}

/* Mobile Footer */
@media (max-width: 580px){
  .site-footer{
    padding:24px 0;
  }
  .footer-inner{
    flex-direction:column;
    gap:16px;
    text-align:center;
  }
  .footer-nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
  }
  .footer-nav a{
    padding:8px 12px;
    border-radius:6px;
    background:rgba(255,255,255,0.05);
    font-size:0.9rem;
  }
  .copy{
    font-size:0.85rem;
  }
}

/* Breadcrumb Navigation */
.breadcrumb{
  background:var(--panel);
  border-bottom:1px solid var(--line);
  padding:12px 0;
  font-size:0.9rem;
}
.breadcrumb-list{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}
.breadcrumb-item{
  display:flex;
  align-items:center;
}
.breadcrumb-item:not(:last-child)::after{
  content:'›';
  margin-left:8px;
  color:var(--muted);
}
.breadcrumb-item a{
  color:var(--brand);
  text-decoration:none;
  transition:color 0.3s ease;
}
.breadcrumb-item a:hover{
  color:var(--brand-light);
}
.breadcrumb-item[aria-current="page"]{
  color:var(--muted);
}

/* Helpers */
.center{text-align:center;margin-top:14px}

/* Mobile-specific utilities */
@media (max-width: 768px){
  .mobile-hidden{display:none !important}
  .mobile-only{display:block !important}
}
@media (min-width: 769px){
  .mobile-only{display:none !important}
}

/* Form Loading Button States */
.btn-loading {
  background: linear-gradient(135deg, #00ff88, #00cc6a, #00a854) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.6),
    0 0 40px rgba(0, 255, 136, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.2) !important;
  animation: pulseGlow 2s ease-in-out infinite !important;
  position: relative;
  overflow: hidden;
  cursor: not-allowed !important;
  transform: none !important;
}

.btn-loading::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
  animation: shimmer 0.8s ease-in-out infinite;
}

.loading-dots {
  display: inline-block;
  animation: loadingDots 1.5s ease-in-out infinite;
}

@keyframes loadingDots {
  0%, 20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80%, 100% {
    opacity: 0;
  }
}

/* Stories Page Styles */
.stories-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.05));
  text-align: center;
}

.stories-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stories-hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.stories-filters {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.filter-icon {
  font-size: 1.1rem;
}

.filter-select {
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.filter-select:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.filter-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.filter-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

/* Tag Filter Styles */
.tag-filter-group {
  grid-column: span 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Desktop layout - tag filter inline with others */
@media (min-width: 1024px) {
  .filter-controls {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  
  .tag-filter-group {
    grid-column: span 1;
  }
  
  .filter-actions {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Tablet layout */
@media (max-width: 1023px) and (min-width: 769px) {
  .filter-controls {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .tag-filter-group {
    grid-column: 1 / -1;
  }
  
  .filter-actions {
    margin-top: 1rem;
  }
}

.tag-filter-container {
  position: relative;
  width: 100%;
}

.tag-search-input {
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 48px; /* Match other dropdown fields */
  box-sizing: border-box;
}

.tag-search-input:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.tag-search-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.tag-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border: 2px solid var(--line);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.tag-dropdown.show {
  display: block;
}

.tag-option {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tag-option:hover {
  background: var(--panel);
}

.tag-option:last-child {
  border-bottom: none;
}

.tag-option.selected {
  background: var(--gradient-primary);
  color: white;
}

.tag-option.selected:hover {
  background: var(--gradient-primary);
}

.tag-count {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(139, 92, 246, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
}

.tag-option.selected .tag-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  min-height: 1.5rem;
}

.selected-tags:empty {
  display: none;
}

.selected-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 12px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.selected-tag-remove {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  font-size: 1.2rem;
  line-height: 1;
}

.selected-tag-remove:hover {
  opacity: 1;
}

.active-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  margin-top: 1rem;
}

.active-filters-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.active-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 12px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.filter-tag-remove {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  font-size: 1.2rem;
  line-height: 1;
}

.filter-tag-remove:hover {
  opacity: 1;
}

.stories-section {
  padding: 4rem 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.story-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}

.story-card:hover .story-link {
  color: var(--brand-light);
  transform: translateX(4px);
}

.story-card.featured {
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.1));
}

.story-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.story-content {
  padding: 1.5rem;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.story-category {
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
}

.story-date,
.story-read-time {
  color: var(--muted);
  font-size: 0.85rem;
}

.story-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.story-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.story-tag {
  background: rgba(139, 92, 246, 0.1);
  color: var(--brand);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.story-link:hover {
  color: var(--brand-light);
  transform: translateX(4px);
}

.load-more-container {
  text-align: center;
  margin-top: 2rem;
}

.no-stories {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}

.no-stories h3 {
  margin: 0 0 1rem;
  color: var(--ink);
}

/* Individual Story Page Styles */
.story-article {
  padding: 4rem 0;
}

.story-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.story-header .story-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.story-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.story-featured-image {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.story-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--ink);
}

.story-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--ink);
}

.story-content p {
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.story-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.story-content li {
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.story-content strong {
  color: var(--brand);
  font-weight: 600;
}

.story-gallery {
  display: block !important;
  column-count: 2 !important;
  column-gap: 1.5rem !important;
  margin: 2rem 0 !important;
  break-inside: avoid;
  grid-template-columns: none !important;
  grid-auto-rows: none !important;
}

.story-gallery img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: auto !important;
  display: block !important;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  page-break-inside: avoid;
  object-fit: contain !important;
  object-position: center;
  max-width: 100% !important;
}

.story-gallery img:hover {
  transform: scale(1.02);
}

.story-content .story-tags {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .stories-hero {
    padding: 60px 0 40px;
  }
  
  .stories-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .stories-hero-content p {
    font-size: 1rem;
  }
  
  .stories-filters {
    padding: 1.5rem 0;
  }
  
  .filter-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .filter-actions {
    justify-content: center;
  }
  
  .active-filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .story-content {
    padding: 1.25rem;
  }
  
  .story-meta {
    gap: 0.75rem;
  }
  
  .story-title {
    font-size: 1.1rem;
  }
  
  .story-article {
    padding: 2rem 0;
  }
  
  .story-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .story-header h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .story-subtitle {
    font-size: 1rem;
  }
  
  .story-content h2 {
    font-size: 1.5rem;
  }
  
  .story-content h3 {
    font-size: 1.2rem;
  }
  
  .story-gallery {
    display: block !important;
    column-count: 1 !important;
    column-gap: 0.75rem !important;
    grid-template-columns: none !important;
  }
  
  .story-gallery img {
    height: auto !important;
    max-height: none !important;
    margin-bottom: 0.75rem;
  }
  
  /* Mobile tag filter */
  .filter-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tag-filter-group {
    grid-column: 1 / -1;
  }
  
  .tag-dropdown {
    max-height: 150px;
  }
  
  .selected-tags {
    margin-top: 0.75rem;
  }
  
  .selected-tag {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  
  .filter-actions {
    margin-top: 1rem;
  }
}

/* Floating Camera Button - Enhanced CTA */
.floating-chat-btn{
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00ff88, #00cc6a, #00a854);
  color: white;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.6),
    0 0 40px rgba(0, 255, 136, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulseGlow 2s ease-in-out infinite;
  overflow: hidden;
}

.floating-chat-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.floating-chat-btn:hover::before {
  opacity: 1;
  animation: shimmer 0.8s ease-in-out;
}

.floating-chat-btn:hover{
  transform: translateY(-4px) scale(1.1);
  box-shadow: 
    0 0 30px rgba(0, 255, 136, 0.8),
    0 0 60px rgba(0, 255, 136, 0.6),
    0 12px 40px rgba(0, 0, 0, 0.3);
  animation: none;
}

.floating-chat-btn:active{
  transform: translateY(-2px) scale(1.05);
  transition: all 0.1s ease;
}

.camera-emoji{
  font-size: 28px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  z-index: 2;
  position: relative;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(0, 255, 136, 0.6),
      0 0 40px rgba(0, 255, 136, 0.4),
      0 8px 32px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 
      0 0 30px rgba(0, 255, 136, 0.8),
      0 0 60px rgba(0, 255, 136, 0.6),
      0 12px 40px rgba(0, 0, 0, 0.3);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .floating-chat-btn{
    bottom: 15px !important;
    right: 15px !important;
    width: 60px;
    height: 60px;
  }
  
  .camera-emoji{
    font-size: 24px;
  }
  
  /* Hide tile overlay on mobile to avoid distraction */
  .tile-overlay{
    display: none !important;
  }
}

@media (max-width: 480px) {
  .floating-chat-btn{
    bottom: 10px !important;
    right: 10px !important;
    width: 55px;
    height: 55px;
  }
  
  .camera-emoji{
    font-size: 22px;
  }
  
  /* Ensure tile overlay is hidden on small mobile devices too */
  .tile-overlay{
    display: none !important;
  }
}


