/* Generated by Generous */
:root {
  --color-primary: #065f46;
  --color-secondary: #10b981;
  --color-accent: #f59e0b;
  --color-background: #fdfdf9;
  --color-surface: #f8f9f5;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --font-heading: 'Merriweather', system-ui, sans-serif;
  --font-body: 'Source Sans Pro', system-ui, sans-serif;
  --radius: 4px;
  --spacing-section: 5rem;
  --button-style: gradient;
}

*, *::before, *::after { box-sizing: border-box; }

/* Button Style System */
.site-btn, .hero-cta, .cta-button, .header-cta, .footer-btn, .block-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: all 0.25s ease; font-family: var(--font-body);
}
.site-btn, .hero-cta, .cta-button, .header-cta, .footer-btn.primary, .block-link {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: white;
  border: none; border-radius: var(--radius);
}
.site-btn:hover, .hero-cta:hover, .cta-button:hover, .header-cta:hover, .footer-btn.primary:hover, .block-link:hover {
  transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
body { margin: 0; font-family: var(--font-body); color: var(--color-text); background: var(--color-background); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* Mobile gallery normalization — AI-generated block sections often use asymmetric grids
   (mix of col-span-2 / col-span-1 with mixed aspect ratios) that look great at desktop
   but break visually at <= 640px: rows have uneven card heights and one card spans the
   full row while siblings sit in halves. We force any grid inside a block section to a
   single column with a uniform aspect ratio on mobile so cards stack predictably. */
@media (max-width: 640px) {
	[data-section-type="block"] .grid.grid-cols-2,
	[data-section-type="block"] .grid.grid-cols-3,
	[data-section-type="block"] .grid.grid-cols-4 {
		grid-template-columns: 1fr !important;
	}
	[data-section-type="block"] [class*="col-span-"] {
		grid-column: span 1 / span 1 !important;
	}
	/* Normalize tall/wide cards to a consistent portrait-ish aspect so stacked gallery
	   tiles look intentional. Targets explicit bracket-notation aspect ratios the AI
	   commonly emits. Skip square — single-column squares are fine. */
	[data-section-type="block"] .grid > [class*="aspect-[3/2]"],
	[data-section-type="block"] .grid > [class*="aspect-[16/9]"],
	[data-section-type="block"] .grid > [class*="aspect-[2/1]"] {
		aspect-ratio: 4 / 3 !important;
	}
}

/* Header */
.site-header {
	width: 100%;
	background: var(--color-background);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	z-index: 100;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}
.site-header.sticky { position: sticky; top: 0; }
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); border-bottom-color: transparent; }
.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	transition: padding 0.2s ease;
}
.site-header.scrolled .header-inner { padding-top: 0.4rem; padding-bottom: 0.4rem; }
.header-logo { display: inline-flex; align-items: center; }
.header-logo img {
	height: var(--logo-h, 40px);
	width: auto;
	max-width: 240px;
	object-fit: contain;
	transition: height 0.2s ease;
}
.site-header.scrolled .header-logo img { height: calc(var(--logo-h, 40px) * 0.6); min-height: 24px; }
.site-header.scrolled .header-title { font-size: 1.05rem; }

/* Tighter mobile header — logo and chrome shrink on small screens, then shrink
   further on scroll for maximum content area. */
@media (max-width: 768px) {
	.header-inner { padding: 0.55rem 1rem; gap: 0.75rem; }
	.header-logo img { height: min(var(--logo-h, 40px), 36px); max-width: 160px; }
	.site-header.scrolled .header-inner { padding: 0.3rem 1rem; }
	.site-header.scrolled .header-logo img { height: 24px; }
	.site-header.scrolled .header-title { font-size: 0.95rem; }
}
.header-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--color-text); text-decoration: none; letter-spacing: -0.01em; white-space: nowrap; }
.header-nav { display: flex; gap: 1.5rem; align-items: center; }
.nav-link { color: var(--color-text); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--color-primary); }
.header-cta { display: inline-block; padding: 0.6rem 1.25rem; background: var(--color-primary); color: white; border-radius: var(--radius); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

/* Footer */
.site-footer { background: var(--color-surface); border-top: 1px solid rgba(0,0,0,0.08); padding: 3rem 0 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-column h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin: 0 0 0.75rem; }
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column li { margin-bottom: 0.4rem; }
.footer-column a { color: var(--color-text-muted); text-decoration: none; font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); }
.footer-copyright { margin: 0; color: var(--color-text-muted); font-size: 0.85rem; }
.footer-socials { display: flex; gap: 1rem; }
.social-link { color: var(--color-text-muted); text-decoration: none; font-size: 0.85rem; }

/* Sections */
.site-section { position: relative; width: 100%; }
.site-section-inner { margin: 0 auto; padding: 0 1.5rem; }

/* Hero */
.hero-classic { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; }
.hero-classic.has-bg { color: white; }
.hero-classic.has-bg .hero-overlay { display: block; position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-heading { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; margin: 0 0 1rem; }
.hero-subheading { font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.6; margin: 0 0 2rem; opacity: 0.85; }
.hero-cta { display: inline-block; padding: 0.85rem 2rem; background: var(--color-primary); color: white; border-radius: var(--radius); text-decoration: none; font-weight: 600; font-size: 1.05rem; transition: transform 0.2s; }
.hero-cta:hover { transform: translateY(-2px); }
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; min-height: 60vh; }
.hero-split .hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-split .hero-image img { width: 100%; border-radius: var(--radius); object-fit: cover; }
.hero-centered { text-align: center; min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-cta.secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }

/* Hero — Gradient */
.hero-gradient { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: white; position: relative; overflow: hidden; }
.hero-gradient::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%); }
.hero-gradient .hero-inner { position: relative; z-index: 1; max-width: 700px; padding: 0 1.5rem; }
.hero-gradient .hero-heading { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08; margin: 0 0 1.25rem; letter-spacing: -0.03em; }
.hero-gradient .hero-subheading { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.6; margin: 0 0 2.5rem; opacity: 0.9; }
.hero-gradient .hero-cta.primary { background: white; color: var(--color-primary); }
.hero-gradient .hero-cta.secondary { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }

/* Hero — Bold */
.hero-bold { min-height: 80vh; display: flex; align-items: center; background: var(--color-text); color: white; }
.hero-bold-inner { display: flex; align-items: center; gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; width: 100%; }
.hero-bold .hero-text { flex: 1; }
.hero-bold .hero-heading { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; margin: 0 0 1.25rem; }
.hero-bold .hero-subheading { font-size: 1.15rem; line-height: 1.7; opacity: 0.7; margin: 0 0 2rem; max-width: 500px; }
.hero-bold .hero-image { flex: 1; max-width: 45%; }
.hero-bold .hero-image img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4/3; }

/* Hero — Minimal */
.hero-minimal { min-height: 50vh; display: flex; flex-direction: column; justify-content: center; padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.hero-minimal .hero-heading { font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; margin: 0 0 1.25rem; letter-spacing: -0.04em; max-width: 700px; }
.hero-minimal .hero-subheading { font-size: 1.15rem; line-height: 1.7; color: var(--color-text-muted); margin: 0 0 2rem; max-width: 500px; }

/* Hero — Stacked */
.hero-stacked { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3rem; padding: 4rem 2rem 0; max-width: 1200px; margin: 0 auto; }
.hero-stacked .hero-content { max-width: 650px; }
.hero-stacked .hero-image { width: 100%; max-width: 900px; }
.hero-stacked .hero-image img { width: 100%; border-radius: var(--radius) var(--radius) 0 0; box-shadow: 0 -4px 30px rgba(0,0,0,0.1); }

/* Features */
.features-grid-section { text-align: center; }
.features-header { margin-bottom: 3rem; }
.features-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 0.75rem; }
.features-subheading { font-size: 1.1rem; color: var(--color-text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { padding: 2rem; background: var(--color-surface); border-radius: var(--radius); text-align: left; transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; margin: 0 0 0.5rem; }
.feature-description { color: var(--color-text-muted); line-height: 1.6; font-size: 0.95rem; margin: 0; }

/* CTA */
.cta-banner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3rem; background: var(--color-primary); border-radius: var(--radius); color: white; }
.cta-heading { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin: 0 0 0.5rem; }
.cta-subheading { margin: 0; opacity: 0.9; font-size: 1.05rem; }
.cta-button { display: inline-block; padding: 0.85rem 2rem; background: white; color: var(--color-primary); border-radius: var(--radius); text-decoration: none; font-weight: 700; white-space: nowrap; }

/* Testimonials */
.testimonials-section { text-align: center; }
.testimonials-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 2.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonials-grid.single { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
.testimonial-card { background: var(--color-surface); border-radius: var(--radius); padding: 2rem; text-align: left; }
.testimonial-quote { font-size: 1.1rem; line-height: 1.7; margin: 0 0 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-name { font-weight: 600; margin: 0; font-size: 0.95rem; }
.author-role { color: var(--color-text-muted); margin: 0.15rem 0 0; font-size: 0.85rem; }

/* Pricing */
.pricing-section { text-align: center; }
.pricing-header { margin-bottom: 3rem; }
.pricing-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 0.75rem; }
.pricing-subheading { color: var(--color-text-muted); font-size: 1.1rem; margin: 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: start; }
.pricing-card { background: var(--color-surface); border-radius: var(--radius); padding: 2.5rem 2rem; border: 2px solid transparent; }
.pricing-card.featured { border-color: var(--color-primary); transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.plan-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin: 0 0 1rem; }
.plan-price { margin-bottom: 1.5rem; }
.price { font-size: 2.5rem; font-weight: 800; color: var(--color-primary); }
.period { color: var(--color-text-muted); }
.plan-features { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }
.plan-features li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.95rem; }
.plan-features li::before { content: '✓ '; color: var(--color-primary); font-weight: 700; }
.plan-cta { display: inline-block; padding: 0.75rem 2rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; border: 2px solid var(--color-primary); color: var(--color-primary); }
.plan-cta.primary { background: var(--color-primary); color: white; }

/* FAQ */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 2.5rem; text-align: center; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
details.faq-item summary { padding: 1.25rem 0; cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 0 1.25rem; }
.faq-answer p { margin: 0; color: var(--color-text-muted); line-height: 1.7; }

/* Stats */
.stats-section { text-align: center; }
.stats-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 2.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; }
.stats-grid.inline { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-value { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: var(--color-primary); line-height: 1; }
.stat-label { color: var(--color-text-muted); font-size: 0.95rem; }

/* Team */
.team-section { text-align: center; }
.team-header { margin-bottom: 3rem; }
.team-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 0.75rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.member-photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; }
.member-photo-placeholder { width: 160px; height: 160px; border-radius: 50%; background: var(--color-surface); margin: 0 auto 1rem; }
.member-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin: 0 0 0.25rem; }
.member-role { color: var(--color-primary); font-size: 0.9rem; margin: 0 0 0.5rem; }
.member-bio { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Contact */
.contact-section { display: grid; gap: 3rem; }
.contact-section.split-layout { grid-template-columns: 1fr 1fr; }
.contact-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 0.75rem; }
.contact-subheading { color: var(--color-text-muted); font-size: 1.1rem; margin: 0 0 1.5rem; }
.contact-detail { margin: 0 0 0.75rem; font-size: 0.95rem; }
.contact-detail a { color: var(--color-primary); text-decoration: none; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.field-label { font-size: 0.85rem; font-weight: 500; color: var(--color-text); letter-spacing: 0.01em; }
.form-group input, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(0,0,0,0.12); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; }
.form-submit { padding: 0.85rem 2rem; background: var(--color-primary); color: white; border: none; border-radius: var(--radius); font-weight: 600; cursor: pointer; align-self: flex-start; }

/* Gallery */
.gallery-section { text-align: center; }
.gallery-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 2.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption { padding: 0.75rem; font-size: 0.85rem; color: var(--color-text-muted); background: var(--color-surface); }

/* Logobar */
.logobar-section { text-align: center; }
.logobar-heading { color: var(--color-text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 2rem; }
.logobar-grid { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logo-item { opacity: 0.5; transition: opacity 0.2s; }
.logo-item:hover { opacity: 1; }
.logo-item img { height: 40px; width: auto; filter: grayscale(100%); transition: filter 0.2s; }
.logo-item:hover img { filter: grayscale(0%); }

/* Timeline */
.timeline-section { text-align: center; }
.timeline-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 3rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: rgba(var(--color-primary), 0.3); }
.timeline-item { position: relative; padding-bottom: 2.5rem; text-align: left; }
.timeline-marker { position: absolute; left: -2rem; top: 0.25rem; }
.marker-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--color-primary); }
.timeline-date { display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--color-primary); text-transform: uppercase; margin-bottom: 0.25rem; }
.timeline-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin: 0 0 0.5rem; }
.timeline-desc { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Text */
.text-section { max-width: 800px; margin: 0 auto; }
.text-section.with-image { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 100%; }
.text-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 1.5rem; }
.text-body { line-height: 1.8; font-size: 1.05rem; }
.text-body p { margin: 0 0 1rem; }
.text-image img { width: 100%; border-radius: var(--radius); object-fit: cover; }

/* Video */
.video-section { text-align: center; }
.video-section.inline-variant { max-width: 800px; margin: 0 auto; }
.video-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 0.75rem; }
.video-subheading { color: var(--color-text-muted); font-size: 1.1rem; margin: 0 0 2rem; }
.video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Block section — readability + layout safety nets */
.gw-section { position: relative; width: 100%; overflow: hidden; }
.gw-section-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%); z-index: 1; pointer-events: none; }
.gw-section-content { position: relative; z-index: 2; }
.gw-section h1 { line-height: 1.05; overflow-wrap: break-word; }
.gw-section h2 { line-height: 1.1; overflow-wrap: break-word; }
.gw-section h3, .gw-section p, .gw-section li, .gw-section blockquote { overflow-wrap: break-word; }
.gw-section section { overflow-x: hidden; max-width: 100%; }
/* Only apply auto height to images that DO NOT opt into explicit sizing (h-full, h-screen, h-arbitrary). Forcing height:auto on images that want to fill their parent breaks full-bleed backgrounds. */
.gw-section img:not([class*="h-full"]):not([class*="h-screen"]):not([class*="h-["]) { max-width: 100%; height: auto; }
.gw-section img[class*="h-full"], .gw-section img[class*="h-screen"] { max-width: 100%; }
/* Photo-background hero: positioning context + readability overlay + text-shadow.
   We do NOT force position/z-index on children; the generator controls that. */
.gw-section section.gw-has-photo-bg { position: relative; }
.gw-section section.gw-has-photo-bg::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.6) 100%);
	z-index: 1; pointer-events: none;
}
.gw-section section.gw-has-photo-bg h1,
.gw-section section.gw-has-photo-bg h2,
.gw-section section.gw-has-photo-bg h3,
.gw-section section.gw-has-photo-bg p,
.gw-section section.gw-has-photo-bg span { text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
/* Safety net: content divs without explicit z-index paint above the overlay. */
.gw-section section.gw-has-photo-bg > div:not([class*="absolute"]):not([class*="fixed"]):not([class*="z-"]) { position: relative; z-index: 2; }
/* Decorative full-bleed overlays (absolute inset-0 + gradient/tint) should never block clicks */
.gw-section div[class*="absolute"][class*="inset-0"][class*="bg-gradient"],
.gw-section div[class*="absolute"][class*="inset-0"][class*="bg-black"],
.gw-section div[class*="absolute"][class*="inset-0"][class*="bg-white"] { pointer-events: none !important; }

/* User-applied section background — transparent the AI's inner section so the wrapper bg shows */
.gw-section.gw-has-section-bg > .gw-section-content > section {
	background-color: transparent !important;
	background-image: none !important;
}
.gw-section.gw-has-section-bg > .gw-section-content > section h1,
.gw-section.gw-has-section-bg > .gw-section-content > section h2,
.gw-section.gw-has-section-bg > .gw-section-content > section h3,
.gw-section.gw-has-section-bg > .gw-section-content > section p,
.gw-section.gw-has-section-bg > .gw-section-content > section span { text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* Menu Display — live-data menu for restaurants (pulls from /api/menu/{id}/public) */
.menu-display { font-family: var(--font-body); color: var(--color-text); }
.menu-header { text-align: center; margin-bottom: 3rem; }
.menu-heading { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 0 0 0.5rem; color: var(--color-text); letter-spacing: -0.01em; }
.menu-sub { color: var(--color-text-muted); font-size: 1rem; margin: 0; max-width: 520px; margin-inline: auto; line-height: 1.55; }
.menu-order-cta { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; padding: 0.75rem 1.5rem; background: var(--color-primary); color: white; text-decoration: none; font-weight: 700; font-size: 0.95rem; border-radius: 9999px; font-family: var(--font-body); transition: opacity 0.15s, transform 0.15s; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.menu-order-cta:hover { opacity: 0.92; transform: translateY(-1px); }
.menu-state { text-align: center; padding: 2rem; color: var(--color-text-muted); font-size: 0.9rem; }
.menu-state a { color: var(--color-primary); }
.menu-category { margin-bottom: 3rem; }
.cat-head { text-align: center; margin-bottom: 1.75rem; }
.cat-name { font-family: var(--font-heading); font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; margin: 0 0 0.35rem; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.1em; }
.cat-desc { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; font-style: italic; }
.items-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 720px; margin-inline: auto; }
.item-line { border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 1.25rem; }
.item-line:last-child { border-bottom: none; }
.line-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.25rem; }
.line-head .item-title { flex: 1; }
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.item-card { background: var(--color-surface); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius, 10px); overflow: hidden; display: flex; flex-direction: column; }
.item-img { aspect-ratio: 4/3; overflow: hidden; background: rgba(0,0,0,0.04); }
.item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-body { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.item-top { display: flex; align-items: baseline; gap: 0.75rem; }
.item-top .item-title { flex: 1; }
.items-columns { max-width: 720px; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }
.row-main { display: flex; align-items: baseline; gap: 0.5rem; }
.row-dots { flex: 1; border-bottom: 1px dotted rgba(0,0,0,0.25); height: 1em; transform: translateY(-0.25em); }
.item-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin: 0; color: var(--color-text); }
.item-price { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--color-primary); white-space: nowrap; }
.item-desc { margin: 0.2rem 0 0; color: var(--color-text-muted); font-size: 0.88rem; line-height: 1.55; }
.item-tags { display: flex; gap: 0.35rem; margin-top: 0.5rem; flex-wrap: wrap; }
.tag { font-size: 0.7rem; font-weight: 500; padding: 0.12rem 0.5rem; border-radius: 9999px; background: rgba(0,0,0,0.06); color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.05em; }

/* Instagram */
.instagram-section { text-align: center; }
.ig-header { margin-bottom: 2rem; }
.ig-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin: 0 0 0.75rem; color: var(--color-text); }
.ig-handle { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--color-primary); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: opacity 0.15s; }
.ig-handle:hover { opacity: 0.8; }
.ig-loading { padding: 2rem; color: var(--color-text-muted); font-size: 0.9rem; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.ig-grid.masonry { display: block; columns: 3; column-gap: 0.5rem; }
.ig-grid.masonry .ig-item { break-inside: avoid; margin-bottom: 0.5rem; display: block; }
.ig-grid.random { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.5rem; }
.ig-grid.random .span-2-2 { grid-column: span 2; grid-row: span 2; }
.ig-grid.random .span-1-2 { grid-row: span 2; }
.ig-grid.random .span-2-1 { grid-column: span 2; }
.ig-item { position: relative; overflow: hidden; border-radius: var(--radius, 8px); display: block; text-decoration: none; }
.ig-grid:not(.masonry) .ig-item { aspect-ratio: 1; }
.ig-grid.random .ig-item { aspect-ratio: auto; height: 100%; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.ig-item:hover img { transform: scale(1.05); }
.ig-video-badge { position: absolute; top: 0.5rem; right: 0.5rem; background: rgba(0,0,0,0.5); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }
.ig-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; transition: opacity 0.25s; }
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-overlay p { color: white; font-size: 0.8rem; line-height: 1.4; margin: 0; max-height: 80%; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }

/* Responsive — Tablet */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Responsive — Mobile */
/* Mobile hamburger */
.mobile-hamburger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; color: var(--color-text); margin-left: auto; }
.mobile-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 199; }
.mobile-backdrop.open { display: block; }
.mobile-menu { position: fixed; top: 0; right: -280px; bottom: 0; width: 280px; background: var(--color-background); z-index: 200; padding: 4rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.25rem; box-shadow: -4px 0 24px rgba(0,0,0,0.15); transition: right 0.25s ease; visibility: hidden; }
.mobile-menu.open { right: 0; visibility: visible; }
.mobile-nav-link { padding: 0.85rem 1rem; color: var(--color-text); text-decoration: none; font-size: 1rem; font-weight: 500; border-radius: 8px; }
.mobile-nav-link:hover { background: rgba(0,0,0,0.04); }
.mobile-cta { display: block; text-align: center; margin-top: 1rem; padding: 0.75rem 1.5rem; background: var(--color-primary); color: white; text-decoration: none; font-weight: 600; border-radius: var(--radius, 8px); }

@media (max-width: 768px) {
  /* Header */
  .header-inner { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
  .header-nav { display: none; }
  .header-right { display: none; }
  .mobile-hamburger { display: flex; }

  /* Hero */
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-text { align-items: center; }
  .hero-centered { min-height: 50vh; }
  .hero-classic { min-height: 50vh; }
  .hero-bold-inner { flex-direction: column; text-align: center; }
  .hero-bold .hero-image { max-width: 100%; }
  .hero-bold .hero-text { display: flex; flex-direction: column; align-items: center; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { text-align: center; }

  /* CTA */
  .cta-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .cta-banner.centered .cta-actions, .cta-actions { justify-content: center; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  /* FAQ */
  .faq-list.two-col { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid.inline { gap: 2rem; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .member-photo, .member-photo-placeholder { width: 120px; height: 120px; }

  /* Contact */
  .contact-section.split-layout { grid-template-columns: 1fr; }
  .form-submit { width: 100%; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.masonry { columns: 2; }

  /* Instagram */
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid.masonry { columns: 2; }
  .ig-grid.random { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }

  /* Text */
  .text-section.with-image { grid-template-columns: 1fr; }
  .text-section.two-col .text-body { columns: 1; }

  /* Timeline */
  .timeline.horizontal { flex-direction: column; }
  .timeline.horizontal .timeline-item { flex: none; width: 100%; }

  /* Logobar */
  .logobar-grid { gap: 1.5rem; }
  .logo-item img { height: 30px; }

  /* Footer */
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* General spacing */
  .site-section-inner { padding: 0 1rem; }
}

/* GSAP initial states */
/* GSAP initial states — set via JS only, not CSS, to prevent invisible content if GSAP fails */
