/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

:root{
  --bg: #0b1220;
  --panel: rgba(17, 26, 46, 0.86);
  --panel2: rgba(17, 26, 46, 0.62);
  --text: #e9eefc;
  --muted: #b6c2e2;
  --border: rgba(255,255,255,0.12);
  --shadow: 0 14px 34px rgba(0,0,0,0.35);

  --accent: #ffd166;
  --accent2: #4cc9f0;
}

/* Page background (subtle rustic + clean) */
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1100px 650px at 15% 0%, rgba(120,72,36,0.32), transparent 60%),
    radial-gradient(1000px 700px at 80% 0%, rgba(76,201,240,0.16), transparent 55%),
    #0b1220;
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; }

/* Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}
.skip-link:focus{ left: 12px; z-index: 999; }

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;

  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  background: rgba(11,18,32,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}

.logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.logo img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name{
  font-weight: 950;
  letter-spacing: 0.3px;
}
.brand-sub{
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 2px;
}

/* Nav */
.nav{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nav a:hover{
  background: rgba(255,255,255,0.08);
  color: var(--text);
  transform: translateY(-1px);
}
.nav-cta{
  border: 1px solid var(--border);
}

/* ===== Layout ===== */
main{
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn{
  display: inline-block;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  transition: transform .15s ease, filter .15s ease, background .2s ease;
  border: 1px solid rgba(255,255,255,0.10);
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #ffb703);
  color: #1a1a1a;
  border: none;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,209,102,0.25);
}
.btn.primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,209,102,0.40);
}

.btn.secondary{
  background: rgba(255,255,255,0.08);
  color: var(--text);
}
.btn.secondary:hover{ transform: translateY(-2px); }

.btn.ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn.ghost:hover{ transform: translateY(-2px); }

.btn.full{ width: 100%; text-align: center; }

/* ===== Hero ===== */
.hero{
  padding: 52px 16px 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate; /* keeps watermark inside hero */
}

/* HERO watermark logo – big, centered, rustic-stamp */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center -10px; /* your preferred offset */
  background-size: 110vw auto;

  opacity: 0.13; /* tweak 0.10–0.18 */
  filter: grayscale(1) contrast(1.15);

  pointer-events: none;
  z-index: 0;
}

/* keep hero content above the watermark */
.hero-grid{
  position: relative;
  z-index: 1;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.hero-title{
  font-size: clamp(2.15rem, 3.9vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.accent{
  background: linear-gradient(135deg, var(--accent), #ffb703);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead{
  color: var(--muted);
  max-width: 760px;
  font-size: 1.05rem;
  margin-top: 10px;
}
.hero-lead.muted{ opacity: 0.92; }

.hero-buttons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.proof-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
}
.proof{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.92rem;
}

/* Mission line styling */
.mission-line{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}

/* Local bar */
.local-bar{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
}
.local-bar > div{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px;
  border-radius: 16px;
  text-align: center;
  font-size: 0.95rem;
}

/* Hero side card */
.hero-card{
  background: rgba(8, 13, 24, 0.90);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-card h2{
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero-card ul{
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 10px;
}
.hero-card li{
  padding-left: 16px;
  position: relative;
}
.hero-card li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent2);
}

.small{ font-size: 0.9rem; margin-top: 10px; }
.muted{ color: var(--muted); }

/* ===== Sections (rustic but clean) ===== */
.section{
  padding: 38px 16px;
  margin: 0 10px 20px;
  border-radius: 22px;
  background: rgba(11,18,32,0.90);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
}

.section:nth-of-type(odd){
  background: linear-gradient(180deg, rgba(120,72,36,0.38), rgba(11,18,32,0.96));
}

/* Subtle rustic divider line at top of each section */
.section::before{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,209,102,0.35),
    rgba(120,72,36,0.35),
    rgba(76,201,240,0.18),
    transparent
  );
  opacity: 0.85;
}

.section-head{
  margin-bottom: 16px;
}
.section h2{
  font-size: 1.85rem;
  margin-bottom: 6px;
}
.section-head p{
  color: var(--muted);
  max-width: 780px;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  background: rgba(8, 13, 24, 0.86);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .2s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,209,102,0.22);
}
.card h3{
  margin-bottom: 8px;
}
.card p{
  color: var(--muted);
}
.card ul{
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 7px;
  color: var(--muted);
}
.card li{
  padding-left: 16px;
  position: relative;
}
.card li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent2);
}
.card.highlight{
  border-color: rgba(255,209,102,0.35);
  background: linear-gradient(180deg, rgba(255,209,102,0.09), rgba(17,26,46,0.96));
}

.center{
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* ===== Animals grids ===== */
.animal-group{
  margin-bottom: 22px;
}
.animal-group-title{
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.animal-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.animal-card{
  background: rgba(8,13,24,0.90);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, border-color .2s ease;
}
.animal-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,209,102,0.22);
}
.animal-card img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
}
.animal-card h4{
  padding: 10px 12px 0;
  font-size: 1.02rem;
}
.animal-card p{
  padding: 4px 12px 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ===== About ===== */
.about-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: start;
}
.about-card{
  background: rgba(8, 13, 24, 0.90);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.about-card h3{
  margin-bottom: 8px;
}
.about-card p{
  color: var(--muted);
  margin-top: 10px;
}
.about-photo{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.about-photo img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

/* ===== FAQ ===== */
.faq{
  display: grid;
  gap: 10px;
}
details{
  background: rgba(17, 26, 46, 0.62);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 14px 16px;
}
summary{
  cursor: pointer;
  font-weight: 950;
}
details p{
  color: var(--muted);
  margin-top: 10px;
}

/* ===== Contact ===== */
.contact-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}
.contact-card, .form-card{
  background: rgba(8,13,24,0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.biglink{
  color: var(--accent2);
  text-decoration: none;
  font-weight: 950;
  font-size: 1.1rem;
}
.biglink:hover{ text-decoration: underline; }

label{
  display: grid;
  gap: 6px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 850;
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(76,201,240,0.55);
}
.hidden{ display: none; }

/* ===== Sticky mobile bar ===== */
.sticky-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  display: none;
  gap: 10px;
  background: rgba(11,18,32,0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.sticky-btn{
  flex: 1;
  text-align: center;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 950;
  background: linear-gradient(135deg, var(--accent), #ffb703);
  color: #1a1a1a;
}
.sticky-btn.alt{
  background: rgba(255,255,255,0.10);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ===== Footer ===== */
.footer{
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 16px 80px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

/* Very subtle grain overlay (rustic character) */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05; /* tweak 0.03–0.07 */
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 2px,
      transparent 4px
    );
  mix-blend-mode: overlay;
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .nav{ display: none; } /* cleaner on mobile */
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .animal-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-photo img{ height: 260px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .sticky-bar{ display: flex; }
  .local-bar{ grid-template-columns: 1fr; }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .btn, .nav a, .card, .animal-card { transition: none; }
  html { scroll-behavior: auto; }
}