/* ============================================
   Mountaineer Paddle LLC — Main Stylesheet
   Colors: Forest Green (#2D5016), Brown (#5C3D2E), Blue (#3A8FBF)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2D5016;
  --green-light: #3A6B1E;
  --green-dark: #1E3A0E;
  --brown: #5C3D2E;
  --brown-light: #7A5A4A;
  --blue: #3A8FBF;
  --blue-light: #5AAED6;
  --blue-dark: #2A6F9F;
  --cream: #FAFAF5;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --gray-light: #E8E8E3;
  --gray: #999;
  --gray-dark: #555;
  --text: #2C2C2C;
  --text-light: #666;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.text-brown { color: var(--brown); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: var(--blue);
  margin-bottom: 0.95rem;
  line-height: 1.25;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ---------- Active / Tap States ---------- */
.btn-primary:active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(0);
  box-shadow: none;
}
.btn-secondary:active {
  background: rgba(255,255,255,0.85);
  color: var(--green);
  transform: translateY(0);
}
.btn-outline:active {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(0);
}
.btn-blue:active {
  background: #1F6A8F;
  border-color: #1F6A8F;
  transform: translateY(0);
}
.nav-links a:active { color: var(--green-dark); }
.gallery-item:active { opacity: 0.85; }
.social-link:active { opacity: 0.8; }
.back-to-top:active {
  background: var(--green-dark);
  transform: translateY(0);
}
.mobile-cta a:active { opacity: 0.8; }

/* ---------- Announcement Strip ---------- */
.announcement-strip {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.announcement-strip a { color: var(--blue-light); text-decoration: underline; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  will-change: transform;
}
.header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.99);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  transition: padding var(--transition);
}
.header.scrolled .header-inner {
  padding: 0.4rem 1.5rem;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--green);
  z-index: 1003;
  transition: width 0.1s linear;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}
.logo img {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
.logo span {
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green-light);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Focus Styles (Accessibility) ---------- */
a:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.back-to-top:focus-visible,
.social-link:focus-visible,
.faq-question:focus-visible,
.gallery-item:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* Remove default outline when not using keyboard */
a:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.menu-toggle:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 1rem;
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,58,14,0.55) 0%,
    rgba(30,58,14,0.4) 50%,
    rgba(30,58,14,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-tagline {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ---------- Mobile Booking Overview ---------- */
.mobile-booking-overview {
  padding-top: 4rem;
}
.mobile-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 2rem;
}
.mobile-trust-pill {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(45,80,22,0.12);
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.booking-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.booking-quick-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.booking-quick-card h3 {
  margin-bottom: 0.65rem;
}
.booking-quick-card p {
  margin: 0;
  color: var(--text-light);
}
.booking-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
}
.booking-text-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(45,80,22,0.08), rgba(58,143,191,0.12));
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.booking-text-panel h3 {
  margin-bottom: 0.75rem;
}
.booking-text-template {
  margin: 0;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  color: var(--green-dark);
  font-weight: 600;
}
.booking-text-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.booking-text-actions .btn {
  justify-content: center;
}
.quick-pricing-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.quick-pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
}
.quick-pricing-card strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green);
}
.quick-pricing-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-dark);
}
.quick-pricing-card span:last-child {
  color: var(--text-light);
  font-size: 0.95rem;
}
.quick-pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.next-steps-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.next-steps-panel h3 {
  margin-bottom: 1rem;
}
.next-steps-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.25rem;
}
.next-steps-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.next-steps-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--off-white);
}
.section-dark {
  background: var(--green-dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark .section-label { color: var(--white); }
.section-dark .section-label { color: var(--blue-light); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.8); }

/* ---------- Intro Section ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---------- Advantages Cards ---------- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.advantage-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.advantage-card h3 { margin-bottom: 0.75rem; }

/* ---------- Offerings ---------- */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.offering-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.offering-img {
  height: 220px;
  overflow: hidden;
}
.offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.offering-card:hover .offering-img img {
  transform: scale(1.05);
}
.offering-body {
  padding: 1.75rem;
}
.offering-body h3 { margin-bottom: 0.5rem; }
.offering-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin: 0.75rem 0;
}
.offering-body .btn { margin-top: 1rem; }

/* ---------- Why Paddle Section ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-grid-reverse > :first-child { order: 2; }
.why-grid-reverse > :last-child { order: 1; }
@media (max-width: 992px) {
  .why-grid-reverse > :first-child { order: 0; }
  .why-grid-reverse > :last-child { order: 0; }
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}
.why-item h4 { margin-bottom: 0.25rem; color: var(--green-dark); }
.why-item p { margin: 0; font-size: 0.95rem; color: var(--text-light); }

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ---------- Safety Section ---------- */
.safety-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.safety-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.safety-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
}
.safety-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border: 2px solid var(--green);
}
.pricing-card.group-offer-card {
  background: linear-gradient(160deg, #eff8ff 0%, #e8f5ec 100%);
  border: 2px solid rgba(58,143,191,0.65);
  box-shadow: 0 8px 28px rgba(42,111,159,0.16);
}
.pricing-card.group-offer-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--green-dark);
}
.pricing-card.group-offer-card .pricing-desc {
  font-size: 1rem;
  color: var(--text);
}
.pricing-card.group-offer-card .pricing-features li strong {
  color: var(--green-dark);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  margin: 1rem 0 0.25rem;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,80,22,0);
  transition: background var(--transition);
}
.gallery-item:hover::after {
  background: rgba(45,80,22,0.15);
}

/* --- Gallery view badge --- */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.95) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5016' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E") center/24px no-repeat;
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.gallery-item:hover::before,
.gallery-item:active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (hover: none) {
  .gallery-item::before {
    top: auto;
    left: auto;
    bottom: 8px;
    right: 8px;
    transform: scale(0.75);
    width: 36px;
    height: 36px;
    opacity: 0.7;
    background-size: 18px;
  }
  .gallery-item:active::before {
    opacity: 1;
    transform: scale(0.85);
  }
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, visibility 0s 0.4s;
}
.lightbox.active {
  visibility: visible;
  pointer-events: auto;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, visibility 0s 0s;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.lightbox.active img {
  transform: scale(1);
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav:active { background: rgba(255,255,255,0.5); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ---------- Newsletter ---------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 4rem 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-inner h2 { color: var(--white); }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-form input {
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255,255,255,0.15);
}
.newsletter-checkboxes {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.newsletter-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.newsletter-checkboxes input[type="checkbox"] {
  width: auto;
  accent-color: var(--blue-light);
}

/* Brevo form integration */
.brevo-form-wrap .sib-form-message-panel { border-radius: var(--radius); }
.brevo-optin {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}
.brevo-optin label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  line-height: 1.4;
}
.brevo-optin input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--blue-light);
  flex-shrink: 0;
}
.brevo-optin a { color: var(--blue-light); }
.input--hidden { display: none !important; }
.g-recaptcha { transform: scale(0.9); transform-origin: left; }

.blog-subscribe-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .blog-subscribe-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.blog-subscribe-box {
  background: rgba(45, 80, 22, 0.06);
  border: 1px solid rgba(45, 80, 22, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow: hidden;
  min-width: 0;
}

.blog-subscribe-list {
  margin-top: 1rem;
  padding-left: 1.25rem;
  color: var(--text-light);
  overflow-wrap: break-word;
  word-break: break-word;
}

.blog-subscribe-list li + li {
  margin-top: 0.65rem;
}

.blog-subscribe-note {
  margin-top: 0.85rem;
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .blog-subscribe-card { padding: 1.25rem; gap: 1.25rem; }
  .blog-subscribe-box { padding: 1.25rem; }
  .blog-subscribe-box h3 { font-size: 1.1rem; }
  .g-recaptcha { transform: scale(0.78); transform-origin: left; }
}
@media (max-width: 480px) {
  .blog-subscribe-card { padding: 1rem; gap: 1rem; }
  .blog-subscribe-box { padding: 1rem; }
  .g-recaptcha { transform: scale(0.72); transform-origin: left; }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question:active { color: var(--green-dark); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--green);
  padding: 3.5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-strip h2 { color: var(--white); margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-strip .btn-secondary { border-color: var(--white); }
.cta-strip .btn-secondary:hover { background: var(--white); color: var(--green); }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.direct-contact-panel {
  background: linear-gradient(180deg, rgba(45,80,22,0.04) 0%, rgba(58,126,214,0.04) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(45,80,22,0.08);
}
.direct-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.direct-contact-actions .btn {
  justify-content: center;
}
.contact-checklist {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-checklist h3 {
  margin-bottom: 0.85rem;
  color: var(--green-dark);
}
.contact-checklist ul {
  display: grid;
  gap: 0.75rem;
}
.contact-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.contact-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Animated focus underline --- */
.form-group {
  position: relative;
}
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease, left 0.3s ease;
  pointer-events: none;
}
.form-group:focus-within::after {
  width: 100%;
  left: 0;
}
.newsletter-form input:focus {
  box-shadow: 0 2px 0 0 var(--white);
}

/* --- Valid field checkmark --- */
.form-group .field-valid-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(25%) translateX(10px);
  opacity: 0;
  width: 20px;
  height: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.form-group.is-valid .field-valid-icon {
  opacity: 1;
  transform: translateY(25%) translateX(0);
}
.form-group.is-valid input,
.form-group.is-valid select,
.form-group.is-valid textarea {
  border-color: var(--green);
  padding-right: 2.5rem;
}

.contact-info-card {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}
.contact-info-item h4 { margin-bottom: 0.25rem; }
.contact-info-item a { color: var(--green); font-weight: 500; }

.form-success {
  display: none;
  background: var(--green);
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}
.form-success.show { display: block; }

.launch-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.launch-point-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  text-align: left;
}
.launch-point-card h3 {
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.location-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ---------- Social Section ---------- */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--blue);
  transform: translateY(-3px);
}
.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* ---------- Blog Page ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card[id] {
  scroll-margin-top: 110px;
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-date {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Blog share buttons */
.blog-share {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
  align-items: center;
}
.blog-share-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.25rem;
  white-space: nowrap;
}
.blog-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
  text-decoration: none;
  flex-shrink: 0;
  touch-action: manipulation;
}
.blog-share-btn:hover { transform: scale(1.12); opacity: 0.85; }
.blog-share-btn svg { width: 18px; height: 18px; fill: var(--white); }
.blog-share-btn.share-fb { background: #1877f2; }
.blog-share-btn.share-x { background: #000; }
.blog-share-btn.share-copy { background: var(--green); }
.blog-share-btn.share-copy.copied { background: var(--green-dark); }

/* ---------- Page Header ---------- */
.page-header {
  background: var(--green-dark);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, rgba(45,80,22,0.9) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-founder-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}
.about-founder-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}
.value-card h4 {
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact a {
  color: rgba(255,255,255,0.9);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.footer-bottom-links a:hover { color: var(--white); }
.footer-credit {
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

.footer .social-links { justify-content: flex-start; }
.footer .social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}
.footer .social-link:hover { background: var(--blue); }
.footer .social-link svg { width: 18px; height: 18px; }

/* ---------- Mobile Sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--green);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  overflow: visible;
  will-change: transform;
}
.mobile-cta-inner {
  display: flex;
  gap: 0.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.75rem;
  min-height: 48px;
  background: var(--white);
  color: var(--green);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.mobile-cta a.primary {
  background: var(--blue);
  color: var(--white);
  flex: 2;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(58, 143, 191, 0.3);
}
.mobile-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.mobile-cta-close {
  position: absolute;
  top: -16px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background var(--transition);
  z-index: 1;
}
.mobile-cta-close:hover {
  background: var(--brown);
}
.mobile-cta.dismissed {
  display: none !important;
}

/* ---------- Motion ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.slide-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: none;
}

.slide-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: none;
}

.pop-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-in.visible {
  opacity: 1;
  transform: none;
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > * {
  opacity: 1;
  transform: none;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Hero Entrance ---------- */
.hero-content h1 {
  animation: heroFadeUp 0.8s ease both;
}
.hero-content p {
  animation: heroFadeUp 0.8s 0.15s ease both;
}
.hero-buttons {
  animation: heroFadeUp 0.8s 0.3s ease both;
}
.hero-tagline {
  animation: heroFadeUp 0.8s 0.45s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Hero CTA Pulse ---------- */
.hero-buttons .btn-primary {
  position: relative;
}
.hero-buttons .btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  animation: ctaPulse 2.5s ease-in-out 1.5s infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* ---------- Card Icon Hover Bounce ---------- */
.advantage-card:hover .advantage-icon {
  animation: iconBounce 0.4s ease;
}
.why-item:hover .why-item-icon {
  animation: iconBounce 0.4s ease;
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-2px); }
}

/* ---------- Image Hover Shimmer ---------- */
.intro-image,
.why-image {
  position: relative;
}
.intro-image::after,
.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.intro-image:hover::after,
.why-image:hover::after {
  opacity: 1;
  animation: shimmer 0.8s ease forwards;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li { margin-bottom: 0.4rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .intro-grid,
  .why-grid,
  .safety-content,
  .about-preview,
  .contact-grid,
  .newsletter-inner,
  .about-grid,
  .launch-points {
    grid-template-columns: 1fr;
  }
  .about-founder-img {
    position: static;
    max-width: 350px;
    margin: 0 auto;
  }
  .advantages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .offerings-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
  .header-inner {
    padding: 0.75rem 1rem;
  }
  .logo {
    gap: 0.5rem;
    font-size: 1rem;
  }
  .logo span {
    overflow-wrap: anywhere;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, calc(100vw - 1.5rem));
    max-width: 100%;
    height: 100dvh;
    overflow-y: auto;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), visibility 0s linear var(--transition);
    z-index: 1003;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform var(--transition);
  }
  .nav-links a {
    width: 100%;
  }
  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .menu-toggle { display: flex; z-index: 1004; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
  }
  .nav-overlay.active { display: block; }

  .hero { min-height: auto; padding: 5rem 1.25rem 2.5rem; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-content p { margin-bottom: 1.25rem; }
  .hero-tagline { margin-top: 1.5rem; font-size: 0.95rem; }
  .hero-buttons,
  .booking-quick-grid,
  .quick-pricing-strip,
  .next-steps-list,
  .booking-text-panel {
    grid-template-columns: 1fr;
  }
  .section { padding: 3.5rem 0; }
  .mobile-trust-strip { justify-content: flex-start; }
  .mobile-trust-pill { width: 100%; text-align: center; }
  .booking-quick-card,
  .booking-text-panel,
  .next-steps-panel { padding: 1.5rem; }
  .booking-text-actions .btn,
  .pricing-card .btn,
  .offering-body .btn,
  .direct-contact-actions .btn { width: 100%; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }

  .lightbox { padding: 0.75rem; }
  .lightbox img { max-width: 95vw; max-height: 90vh; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; font-size: 2.2rem; padding: 0.75rem; }
  .lightbox-nav { padding: 0.75rem; font-size: 1.8rem; min-width: 44px; min-height: 44px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

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

  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  .hero-call-mobile { display: flex; }

  .about-preview { grid-template-columns: 1fr; text-align: center; }
  .about-image { max-width: 260px; margin: 0 auto; }

  /* Tighter section heading spacing on mobile */
  .section-label {
    font-size: 0.95rem;
    letter-spacing: 2.2px;
    margin-bottom: 0.55rem;
  }
  .section-title { margin-bottom: 0.6rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }

  /* Softer card shadows and rounder corners on mobile */
  .advantage-card,
  .offering-card,
  .pricing-card,
  .checklist-item,
  .blog-card,
  .booking-quick-card {
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border-radius: 20px;
  }
  .offering-card { overflow: hidden; }
  .gallery-item { border-radius: 12px; }

  /* Full-width CTA buttons in content sections */
  .section .btn-lg,
  .cta-strip .btn { width: 100%; max-width: 400px; }
  .location-links { flex-direction: column; align-items: center; }

  /* Condensed footer on mobile */
  .footer { padding: 2.5rem 0 0; }
  .footer-grid { gap: 1.5rem; padding-bottom: 1.5rem; }
  .footer-grid > :nth-child(3) { display: none; }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .offerings-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .checklist-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .intro-image img { height: 260px; }
  .why-image img { height: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 2rem 0; }
  .announcement-strip {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .hero { padding: 4.5rem 1rem 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn,
  .booking-text-actions .btn { width: 100%; max-width: none; justify-content: center; }
  .mobile-cta-inner { gap: 0.5rem; }
  .mobile-cta a { font-size: 0.85rem; padding-inline: 0.75rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .gallery-item { border-radius: 10px; }
  .booking-quick-card { padding: 1.25rem; }
  .blog-share-btn { width: 44px; height: 44px; }
  .blog-share-btn svg { width: 20px; height: 20px; }
}

@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .gallery-item.wide { aspect-ratio: 4/3; }
}

/* ---------- Scroll Offset for Fixed Header ---------- */
section[id] {
  scroll-margin-top: 80px;
}

/* ---------- Page Header Background Image ---------- */
.page-header {
  background-image: url('https://image2url.com/r2/default/images/1774208907682-91b13e3e-631b-48fd-bd40-ef93b1b87b70.jpg'), url('../images/hero-lake.jpg');
  background-size: cover;
  background-position: center 40%;
}
.page-header::before {
  background: linear-gradient(135deg, rgba(30,58,14,0.88) 0%, rgba(45,80,22,0.82) 100%);
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  will-change: transform, opacity;
  touch-action: manipulation;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 5.5rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg { width: 20px; height: 20px; }
}

/* ---------- What to Bring Checklist ---------- */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.checklist-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.checklist-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.checklist-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checklist-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green);
}
.checklist-item h4 {
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.checklist-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
@media (max-width: 992px) {
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .checklist-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ---------- Inline Form Validation ---------- */
.form-error {
  color: #d32f2f;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #d32f2f;
}
.form-group.has-error .form-error {
  display: block;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  background: var(--off-white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
  margin-top: 60px;
}
.breadcrumb a { color: var(--green); font-weight: 500; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .separator { color: var(--gray); margin: 0 0.4rem; }

/* ---------- Hero Call Button (Mobile-Only) ---------- */
.hero-call-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  min-height: 44px;
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
}
.hero-call-mobile:hover {
  background: transparent;
  color: var(--white);
}
.hero-call-mobile svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .slide-left, .slide-right, .pop-in { opacity: 1; transform: none; transition: none; }
  .stagger-children > * { opacity: 1; transform: none; transition: none; }
  .hero-content h1, .hero-content p, .hero-buttons, .hero-tagline { opacity: 1; animation: none; }
  .hero-buttons .btn-primary { animation: none; }
  .hero-buttons .btn-primary::after { animation: none; display: none; }
  .advantage-card:hover .advantage-icon,
  .why-item:hover .why-item-icon { animation: none; }
  .intro-image::after, .why-image::after { display: none; }
  .btn:hover,
  .advantage-card:hover,
  .offering-card:hover,
  .pricing-card:hover,
  .checklist-item:hover,
  .blog-card:hover,
  .social-link:hover,
  .back-to-top:hover { transform: none; }
  .offering-card:hover .offering-img img,
  .blog-card:hover .blog-card-img img,
  .gallery-item:hover img { transform: none; }
  .gallery-item::before { display: none; }
  .lightbox { transition: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .lightbox img { transition: none; transform: none; opacity: 1; }
  .form-group::after { transition: none; }
  .form-group .field-valid-icon { opacity: 1; transform: translateY(25%); transition: none; }
  .type-reveal span.char { opacity: 1; }
  .type-reveal::after { display: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Print Styles ---------- */
@media print {
  .header,
  .announcement-strip,
  .mobile-cta,
  .back-to-top,
  .lightbox,
  .cta-strip,
  .newsletter-section,
  .social-links,
  .footer,
  .menu-toggle,
  .nav-cta,
  .btn {
    display: none !important;
  }
  body {
    padding: 0 !important;
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  .hero-bg { display: none; }
  .hero-content h1 {
    color: #000;
    text-shadow: none;
  }
  .hero-content p { color: #333; }
  .page-header {
    background: none !important;
    padding: 1rem 0;
  }
  .page-header::before { display: none; }
  .page-header h1 { color: #000; }
  .page-header p { color: #333; }
  .section { padding: 1.5rem 0; }
  a { color: #000; }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
  .nav-links a[href]::after,
  .footer a[href]::after,
  .logo a[href]::after {
    content: none;
  }
  img { max-width: 100%; }
}
