/**
 * Sharing Seeds Theme Stylesheet
 * Custom styles, layout, and component variations
 * Author: Hashtag Web Solutions Pvt. Ltd.
 */

:root {
  --forest: #1E3F20;
  --forest-dark: #0F2410;
  --sage: #709775;
  --sage-light: #E5EDE3;
  --terracotta: #C86446;
  --terracotta-dark: #A84F35;
  --cream: #F9F9FB;
  --white: #FFFFFF;
  --ink: #1B241C;
  --muted: #5C6B5E;
  --line: rgba(30, 63, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Custom Logo & Brand Fixes ---------- */
.custom-logo-link,
.brand a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  max-height: 54px !important;
  text-decoration: none !important;
}

.custom-logo,
.custom-logo-link img,
.brand img,
.brand-mark img,
header#site-header img {
  max-height: 48px !important;
  height: 48px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-logo-img,
footer .brand img {
  max-height: 52px !important;
  height: auto !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
  display: block !important;
}

body.logged-in header#site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.logged-in header#site-header {
    top: 46px;
  }
}

h1, h2, h3, h4, h5, h6, .display, .font-fraunces {
  font-family: 'Fraunces', serif;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.theme-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------- */
header#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  padding: 0;
  background: transparent;
}

header#site-header.solid {
  background: rgba(249, 249, 251, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(200, 100, 70, 0.3);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  transition: color 0.35s ease;
  line-height: 1.1;
}

.brand-sub {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

header#site-header.solid .brand-name {
  color: var(--forest-dark);
}

header#site-header.solid .brand-sub {
  color: var(--muted);
}

nav.links {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav.links a {
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color 0.35s ease;
}

header#site-header.solid nav.links a {
  color: var(--ink);
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

nav.links a:hover::after,
nav.links a.active::after {
  width: 100%;
}

/* Navigation WordPress Menu integration */
nav.links ul {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.links ul li a {
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color 0.35s ease;
  text-decoration: none;
}

header#site-header.solid nav.links ul li a {
  color: var(--ink);
}

nav.links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

nav.links ul li a:hover::after {
  width: 100%;
}

/* Buttons */
.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-theme-primary {
  background: var(--terracotta);
  color: var(--white) !important;
}

.btn-theme-primary:hover {
  background: var(--terracotta-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(200, 100, 70, 0.55);
}

.btn-theme-outline-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-theme-outline-light:hover {
  background: #fff;
  color: var(--forest-dark) !important;
}

.btn-theme-secondary {
  background: transparent;
  color: var(--forest-dark) !important;
  border-color: var(--forest-dark);
}

.btn-theme-secondary:hover {
  background: var(--forest-dark);
  color: var(--white) !important;
}

.btn-theme-ghost {
  background: var(--sage-light);
  color: var(--forest-dark) !important;
}

.btn-theme-ghost:hover {
  background: var(--sage);
  color: var(--white) !important;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: background 0.35s ease, transform 0.3s ease;
}

header#site-header.solid .hamburger-btn span {
  background: var(--forest-dark);
}

/* ---------- Premium Glassmorphism Translucent Page Header Band ---------- */
.page-header-band {
  position: relative;
  width: 100% !important;
  min-height: 400px;
  background-color: var(--forest-dark);
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: #fff;
  padding: 160px 0 100px;
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 36, 16, 0.42) 0%, rgba(15, 36, 16, 0.85) 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-header-glass-card {
  background: rgba(15, 36, 16, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 40px 48px;
  max-width: 860px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.page-header-glass-card h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 10px;
}

.page-header-glass-card .eyebrow {
  color: #F2C79E;
  margin-bottom: 12px;
}

.page-header-band .leaf-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 3;
  pointer-events: none;
}

.page-header-band .leaf-divider path {
  fill: var(--cream);
}

/* ---------- Inner Content & Page Typography Enhancements ---------- */
.entry-content {
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Fraunces', serif;
  color: var(--forest-dark);
  font-weight: 600;
  line-height: 1.2;
}

.entry-content h1 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.entry-content h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 12px;
}

.entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
}

.entry-content h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
  color: #2D3A2F;
}

.entry-content a:not(.btn-theme):not(.btn) {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(200, 100, 70, 0.4);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.entry-content a:not(.btn-theme):not(.btn):hover {
  color: var(--terracotta-dark);
  text-decoration-color: var(--terracotta);
}

.entry-content img,
.entry-content figure img {
  border-radius: 20px !important;
  box-shadow: 0 12px 30px rgba(15, 36, 16, 0.08) !important;
  margin: 2rem auto !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  transition: transform 0.4s ease;
}

.entry-content img:hover,
.entry-content figure img:hover {
  transform: scale(1.015);
}

/* Portrait photo max height cap */
.entry-content img[src*="portrait"],
.entry-content p > img {
  max-height: 520px !important;
  object-fit: cover !important;
}

.entry-content blockquote {
  background: var(--sage-light);
  border-left: 4px solid var(--terracotta);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 2rem 0;
  font-style: italic;
  font-size: 18px;
  color: var(--forest-dark);
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

/* ---------- Automatic Gallery Grid System ---------- */
.entry-content .wp-block-gallery,
.entry-content .gallery,
.entry-content .gallery-grid,
.entry-content figure.wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 20px !important;
  margin: 2.5rem 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.entry-content .wp-block-gallery figure,
.entry-content .gallery .gallery-item,
.entry-content .gallery-grid .gallery-item {
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 36, 16, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.entry-content .wp-block-gallery figure:hover,
.entry-content .gallery .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 36, 16, 0.14);
}

.entry-content .wp-block-gallery img,
.entry-content .gallery img,
.entry-content .gallery-grid img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  margin: 0 !important;
  box-shadow: none !important;
  transition: transform 0.5s ease;
}

.entry-content .wp-block-gallery figure:hover img,
.entry-content .gallery-item:hover img {
  transform: scale(1.06);
}

/* ---------- Contact / Volunteer Form Cards ---------- */
.wpcf7-form,
.form-card,
.entry-content form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(30, 63, 32, 0.06);
}

.wpcf7-form label,
.form-card label {
  font-weight: 600;
  font-size: 14px;
  color: var(--forest-dark);
  margin-bottom: 8px;
  display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea,
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  margin-bottom: 16px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200, 100, 70, 0.2);
  background: var(--white);
}

.wpcf7-form input[type="submit"],
.form-card button[type="submit"] {
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease;
}

.wpcf7-form input[type="submit"]:hover,
.form-card button[type="submit"]:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

/* Callout Box / Action Card within content */
.project-callout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  margin: 2.5rem 0;
  box-shadow: 0 8px 24px rgba(30, 63, 32, 0.05);
}

.project-callout-card h3,
.project-callout-card h4 {
  margin-top: 0;
  color: var(--forest-dark);
}

/* ---------- Mobile Drawer ---------- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--forest-dark);
  color: #fff;
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right 0.35s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 36, 16, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-drawer ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,16,0.35) 0%, rgba(15,36,16,0.25) 40%, rgba(15,36,16,0.85) 100%);
  z-index: 1;
}

.hero-inner {
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EADFC8;
  margin-bottom: 20px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero-section h1 {
  font-size: clamp(38px, 5.8vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  max-width: 920px;
  color: #fff;
}

.hero-section h1 em {
  font-style: italic;
  color: #F2C79E;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin: 24px 0 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.scroll-cue .line {
  width: 1px;
  height: 38px;
  background: linear-gradient(#fff, transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}

@keyframes scrollpulse {
  0% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.4; }
}

.leaf-divider {
  display: block;
  width: 100%;
  height: 90px;
  margin-top: -4px;
  position: relative;
  z-index: 3;
}

.leaf-divider path {
  fill: var(--cream);
}

/* ---------- Stat Strip ---------- */
.stat-strip {
  background: var(--cream);
  padding: 56px 0 20px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.stat-item b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--forest-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Full-Screen Story Sections ---------- */
.story-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0;
}

.story-section:nth-of-type(odd) {
  background: var(--cream);
}

.story-section:nth-of-type(even) {
  background: var(--sage-light);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.story-section.reverse .story-grid {
  direction: rtl;
}

.story-section.reverse .story-grid > * {
  direction: ltr;
}

.story-media {
  position: relative;
  height: 78vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 26px;
}

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

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

.story-media .leaf-shape {
  position: absolute;
  width: 160px;
  height: 160px;
  z-index: 2;
  background: var(--terracotta);
  opacity: 0.9;
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
  pointer-events: none;
}

.story-section.regular .story-media .leaf-shape {
  bottom: -40px;
  left: -40px;
}

.story-section.reverse .story-media .leaf-shape {
  top: -40px;
  right: -40px;
}

.story-text {
  padding: 0 72px;
}

.story-number {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.story-text h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  color: var(--forest-dark);
  margin-bottom: 22px;
  line-height: 1.12;
}

.story-text p {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 480px;
  margin-bottom: 28px;
}

/* ---------- Tours Full-Bleed Section ---------- */
.tours-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.tours-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,36,16,0.55), rgba(15,36,16,0.78));
  z-index: 1;
}

.tours-full-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
}

.tours-full .section-eyebrow {
  color: #F2C79E;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tours-full h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 54px);
  margin: 16px 0 22px;
}

.tours-full p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  margin-bottom: 34px;
}

.tours-full-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.newsletter-row {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-row input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border-radius: 999px;
  border: none;
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
}

.newsletter-row button {
  border-radius: 999px;
  padding: 15px 24px;
  background: var(--terracotta);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 14.5px;
  transition: background 0.2s ease;
}

.newsletter-row button:hover {
  background: var(--terracotta-dark);
}

/* ---------- Testimonials / Band ---------- */
section.band {
  padding: 110px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.section-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
}

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

.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.t-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30, 63, 32, 0.08);
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  color: var(--sage);
  line-height: 1;
}

.t-card p.quote {
  font-size: 15.5px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sage-light);
  flex: 0 0 auto;
}

.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-person b {
  font-size: 14px;
  display: block;
  color: var(--forest-dark);
}

.t-person span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Partners ---------- */
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 12px;
}

.partner-logo {
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
  font-weight: 700;
  font-size: 16px;
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-logo:hover {
  filter: none;
  opacity: 1;
}

.partner-logo .hexsw {
  width: 22px;
  height: 22px;
  background: var(--terracotta);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}

.partner-logo img {
  max-height: 44px;
  width: auto;
}

/* ---------- Admin Empty State Fallback ---------- */
.admin-empty-state {
  width: 100%;
  padding: 60px 0;
  background: rgba(229, 237, 227, 0.4);
}

.empty-state-card {
  background: #ffffff;
  border: 2px dashed var(--sage);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.empty-state-badge {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.empty-state-card h3 {
  font-size: 24px;
  color: var(--forest-dark);
  margin-bottom: 10px;
}

.empty-state-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 18px;
}

.empty-state-specs {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--forest-dark);
  text-align: left;
  margin-bottom: 20px;
}

.empty-state-specs strong {
  color: var(--terracotta);
}

/* ---------- Core Templates Layout (Single, Archive, Search, 404) ---------- */
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.post-card-thumb {
  height: 220px;
  overflow: hidden;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-title {
  font-size: 20px;
  color: var(--forest-dark);
  margin-bottom: 10px;
}

.post-card-meta {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.post-card-excerpt {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--forest-dark);
  color: #CFE0D0;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-grid ul li {
  list-style: none !important;
  margin-bottom: 10px;
}

.footer-grid p {
  text-align: justify;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.footer-grid a {
  display: inline-block;
  font-size: 14px;
  color: #B7CBB8;
  margin-bottom: 6px;
  text-decoration: none;
  transition: transform 0.22s ease, color 0.22s ease;
}

.footer-grid a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #CFE0D0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-socials a:hover {
  background: var(--terracotta);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 100, 70, 0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 13px;
  color: #8FA890;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-section.reverse .story-grid {
    direction: ltr;
  }
  .story-text {
    padding: 0;
  }
  .story-media {
    height: 56vh;
    min-height: 380px;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  nav.links {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .hero-section,
  .tours-full {
    background-attachment: scroll;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .story-section {
    padding: 80px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-inner {
    padding-bottom: 70px;
  }
  .page-header-glass-card {
    padding: 24px 28px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Global Floating WhatsApp Chat Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float-btn:hover {
  background: #1DA851;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF !important;
}
