
/* =============================================
   RESET & VARIABLES
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sand:        #F7F1E8;
  --sand-2:      #EDE5D5;
  --sand-3:      #DDD0B8;
  --sand-4:      #CEC0A5;
  --moss:        #6B7C5A;
  --moss-dark:   #4A5840;
  --moss-light:  #8FA07A;
  --moss-pale:   #C8D8B5;
  --terra:       #B5643C;
  --terra-light: #D4825A;
  --terra-pale:  #F0C8A8;
  --bark:        #6B4E38;
  --bark-light:  #9B7A62;
  --text:        #2A1F16;
  --text-mid:    #5C4A38;
  --text-soft:   #8C7060;
  --white:       #FEFCF8;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
}

/* =============================================
   NAVIGATION
============================================= */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(247,241,232,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand-3);
  transition: box-shadow 0.3s;
}
#main-nav.scrolled { box-shadow: 0 2px 20px rgba(42,31,22,0.08); }

.nav-logo { text-decoration: none; display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 500;
  color: var(--text); letter-spacing: 0.02em; line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--moss);
  font-weight: 400;
}
.nav-links {
  display: flex; align-items: center; gap: 0.2rem; list-style: none;
}
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 0.83rem; font-weight: 400;
  padding: 0.4rem 0.75rem; border-radius: 4px;
  transition: background 0.2s, color 0.2s; cursor: pointer;
}
.nav-links a:hover { background: var(--sand-2); color: var(--text); }
.nav-links a.active { color: var(--moss-dark); font-weight: 500; }
.nav-cta-btn {
  background: var(--moss-dark) !important;
  color: white !important;
  border-radius: 100px !important;
  margin-left: 0.5rem;
  font-weight: 500 !important;
}
.nav-cta-btn:hover { background: var(--moss) !important; }

/* Dropdown for Asukkaat */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--sand-3);
  border-radius: 8px; padding: 0.5rem; min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1); z-index: 400;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.5rem 0.8rem !important;
  font-size: 0.85rem !important; border-radius: 4px;
  color: var(--text-mid) !important;
}
.nav-dropdown-menu a:hover { background: var(--sand) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 299;
  padding: 1.5rem; overflow-y: auto;
  flex-direction: column; gap: 0.3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-mid); text-decoration: none;
  font-size: 1rem; padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--sand-2);
  cursor: pointer;
}
.mobile-menu .mm-sub {
  padding-left: 2rem;
  font-size: 0.9rem; color: var(--text-soft);
}

/* =============================================
   PAGE SYSTEM
============================================= */
.page { display: none; }
.page.active { display: block; }

/* =============================================
   SHARED STYLES
============================================= */
.container { max-width: 1140px; margin: 0 auto; padding: 0 3rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.eyebrow {
  font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--moss);
  font-weight: 500; margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--moss-light);
}
.heading-xl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em;
}
.heading-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15;
}
.heading-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500; line-height: 1.2;
}
em.accent { font-style: italic; color: var(--terra); font-weight: 300; }
.lead {
  font-size: 1.05rem; color: var(--text-mid);
  font-weight: 300; line-height: 1.8; max-width: 560px;
}
.body-text {
  font-size: 0.97rem; color: var(--text-mid);
  font-weight: 300; line-height: 1.8;
}
.body-text + .body-text { margin-top: 1rem; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 500; border: none; transition: all 0.2s;
}
.btn-fill {
  background: var(--terra); color: white;
  padding: 0.85rem 2rem; border-radius: 100px;
}
.btn-fill:hover { background: var(--terra-light); transform: translateY(-1px); }
.btn-fill-moss {
  background: var(--moss-dark); color: white;
  padding: 0.85rem 2rem; border-radius: 100px;
}
.btn-fill-moss:hover { background: var(--moss); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text-mid);
  padding: 0.85rem 2rem;
  border: 1px solid var(--sand-3); border-radius: 100px;
}
.btn-ghost:hover { border-color: var(--bark-light); color: var(--text); }
.btn-link {
  background: none; color: var(--terra); padding: 0;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
}
.btn-link:hover { color: var(--terra-light); }

/* Cards */
.card {
  background: var(--white); border: 1px solid var(--sand-3);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(42,31,22,0.09);
}

/* Image with fallback */
.img-wrap { position: relative; overflow: hidden; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-fallback {
  width: 100%; height: 100%;
  display: none; align-items: center; justify-content: center;
  font-size: 3rem;
}

/* Features pill strip */
.pill-strip {
  background: var(--moss-dark); padding: 1.2rem 0;
}
.pill-strip-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 3rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.pill {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.7); font-size: 0.83rem; font-weight: 300;
}
.pill-icon { font-size: 1rem; }

/* Section dividers */
.divider {
  height: 1px; background: var(--sand-3); margin: 0;
}

/* =============================================
   HOME PAGE
============================================= */

/* Hero */
.hero-home {
  min-height: 100vh; padding-top: 72px;
  display: grid; grid-template-columns: 55% 45%;
}
.hero-content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 4rem 5rem;
  background: var(--sand);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--moss-dark); color: white;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 100px;
  margin-bottom: 2rem; width: fit-content; font-weight: 500;
}
.hero-title { margin-bottom: 1.6rem; }
.hero-title strong {
  font-weight: 600; font-style: italic; color: var(--terra);
}
.hero-desc { margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-scroll-hint {
  margin-top: 3rem; display: flex; align-items: center; gap: 0.8rem;
  color: var(--text-soft); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-scroll-line { width: 32px; height: 1px; background: var(--sand-3); }

.hero-visual {
  position: relative; overflow: hidden;
  background: var(--moss-dark);
}
.hero-visual .img-wrap { width: 100%; height: 100%; }
.hero-visual .img-wrap img { height: 100%; }
.hero-visual .img-fallback {
  height: 100%; font-size: 10rem;
  background: linear-gradient(160deg, #3A4830 0%, #6B7C5A 50%, #4A5840 100%);
  opacity: 0.3;
}
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(42,31,22,0.15) 0%, transparent 40%);
}

/* Stats row */
.stats-row {
  background: var(--white); padding: 3rem 0;
  border-top: 1px solid var(--sand-3);
  border-bottom: 1px solid var(--sand-3);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 400; color: var(--terra); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item span {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-soft);
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-images {
  position: relative; height: 520px;
}
.about-img-1 {
  position: absolute; top: 0; left: 0;
  width: 68%; height: 72%;
  border-radius: 4px; overflow: hidden;
}
.about-img-2 {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 52%;
  border-radius: 4px; overflow: hidden;
  border: 4px solid var(--sand);
}
.about-img-1 .img-fallback { background: linear-gradient(135deg,#4A5840,#8FA07A); }
.about-img-2 .img-fallback { background: linear-gradient(135deg,#B5643C,#D4825A); }
.about-text { display: flex; flex-direction: column; gap: 1.1rem; }
.about-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1rem; padding-top: 2rem;
  border-top: 1px solid var(--sand-3);
}
.meta-num strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 400; color: var(--terra);
  display: block; line-height: 1; margin-bottom: 0.25rem;
}
.meta-num span {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-soft);
}

/* Services list */
.services-bg { background: var(--sand-2); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem; gap: 2rem;
}
.services-header p { color: var(--text-mid); max-width: 340px; font-weight: 300; }
.services-table {
  background: var(--white); border: 1px solid var(--sand-3);
  border-radius: 8px; overflow: hidden;
}
.svc-row {
  display: grid; grid-template-columns: 3.5rem 1fr auto;
  gap: 1.5rem; padding: 1.5rem 2rem;
  align-items: center; border-bottom: 1px solid var(--sand-2);
  cursor: default; transition: background 0.15s;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--sand); }
.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--sand-4); line-height: 1;
}
.svc-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500; color: var(--text);
  margin-bottom: 0.2rem;
}
.svc-info p { font-size: 0.85rem; color: var(--text-soft); font-weight: 300; }
.svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--terra);
  font-style: italic; white-space: nowrap;
}

/* Animals teaser */
.animals-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.animal-card {
  background: var(--sand-2); border-radius: 6px;
  padding: 2rem 1.5rem; text-align: center;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.animal-card:hover {
  background: var(--white); transform: translateY(-2px);
  border-color: var(--sand-3);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.animal-card .emoji { font-size: 2.6rem; display: block; margin-bottom: 0.8rem; }
.animal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 0.25rem;
}
.animal-card p { font-size: 0.78rem; color: var(--text-soft); font-style: italic; }

/* News */
.news-bg { background: var(--moss-dark); }
.news-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 5rem;
  align-items: start;
}
.news-left .eyebrow { color: var(--moss-light); }
.news-left .eyebrow::before { background: var(--moss-light); }
.news-left .heading-lg { color: white; }
.news-left .lead { color: rgba(255,255,255,0.45); margin-top: 1rem; }
.news-items { display: flex; flex-direction: column; }
.news-item {
  padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid; grid-template-columns: 70px 1fr; gap: 1.5rem;
}
.news-item:first-child { padding-top: 0; }
.news-item:last-child { border-bottom: none; }
.news-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.4rem 0.5rem; text-align: center;
  border-radius: 3px; margin-top: 0.2rem;
}
.news-badge .mon {
  display: block; font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--moss-light); font-weight: 500;
}
.news-badge .yr {
  display: block; font-size: 0.62rem; color: rgba(255,255,255,0.2); margin-top: 0.1rem;
}
.news-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: white; margin-bottom: 0.4rem;
}
.news-body p { font-size: 0.88rem; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* =============================================
   ANIMALS PAGE
============================================= */
.animals-page-hero {
  padding: 8rem 0 4rem;
  background: var(--sand);
}
.animals-nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2.5rem;
}
.animals-nav button {
  background: var(--sand-2); border: 1px solid var(--sand-3);
  color: var(--text-mid); padding: 0.45rem 1.1rem;
  border-radius: 100px; font-size: 0.82rem; font-weight: 400;
  cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.animals-nav button:hover,
.animals-nav button.active {
  background: var(--moss-dark); color: white; border-color: var(--moss-dark);
}
.animals-section-header {
  margin-bottom: 2.5rem; padding-top: 1rem;
}
.animal-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-bottom: 4rem;
}
.animal-detail-img {
  border-radius: 6px; overflow: hidden; aspect-ratio: 4/3;
}
.animal-detail-img .img-fallback { font-size: 5rem; }
.animal-detail-body { display: flex; flex-direction: column; gap: 1rem; }
.animal-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--terra-pale); color: var(--terra);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px; font-weight: 500;
  width: fit-content;
}
.animal-fact-row {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding: 1.2rem 0; border-top: 1px solid var(--sand-3);
  margin-top: 0.5rem;
}
.animal-fact label {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-soft); display: block; margin-bottom: 0.2rem;
}
.animal-fact span { font-size: 0.93rem; color: var(--text); }

/* Animal cards small */
.animal-cards-small {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.animal-small-card {
  background: var(--white); border: 1px solid var(--sand-3);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.animal-small-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.animal-small-img { aspect-ratio: 16/10; overflow: hidden; }
.animal-small-img .img-fallback { font-size: 3rem; }
.animal-small-body { padding: 1.2rem; }
.animal-small-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500; margin-bottom: 0.3rem;
}
.animal-small-body p { font-size: 0.85rem; color: var(--text-soft); line-height: 1.6; }

/* =============================================
   SERVICES PAGE
============================================= */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--sand);
}
.services-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-card-detail {
  background: var(--white); border: 1px solid var(--sand-3);
  border-radius: 8px; padding: 2rem;
  transition: box-shadow 0.2s;
}
.service-card-detail:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.scd-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.scd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500; color: var(--text);
  margin-bottom: 0.35rem;
}
.scd-price {
  font-size: 0.85rem; color: var(--terra); margin-bottom: 1rem;
  font-style: italic; font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.scd-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.scd-list {
  margin-top: 0.8rem; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.scd-list li {
  font-size: 0.88rem; color: var(--text-soft);
  padding-left: 1.2rem; position: relative;
}
.scd-list li::before {
  content: '–'; position: absolute; left: 0; color: var(--moss-light);
}

/* Tallin säännöt */
.saannot-box {
  background: var(--sand-2); border: 1px solid var(--sand-3);
  border-radius: 8px; padding: 2.5rem; margin-top: 3rem;
  border-left: 4px solid var(--moss);
}
.saannot-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; margin-bottom: 1.5rem;
}
.saannot-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 2rem;
}
.saannot-item {
  display: flex; gap: 0.8rem; font-size: 0.9rem;
  color: var(--text-mid); align-items: flex-start;
  padding: 0.6rem 0; border-bottom: 1px solid var(--sand-3);
}
.saannot-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--moss); font-weight: 400;
  flex-shrink: 0; line-height: 1.4;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.cdetail {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.cdetail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand-2); border: 1px solid var(--sand-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.cdetail-label {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-soft); display: block; margin-bottom: 0.2rem;
}
.cdetail-value { font-size: 0.97rem; color: var(--text); line-height: 1.6; }
.cdetail-value a { color: var(--terra); text-decoration: none; }
.cdetail-value a:hover { text-decoration: underline; }

/* SVG Karttapiirros */
.map-illustration {
  background: var(--sand-2); border: 1px solid var(--sand-3);
  border-radius: 8px; overflow: hidden; margin-top: 2rem;
}
.map-illustration svg { width: 100%; height: auto; display: block; }

/* Google Maps embed */
.gmap-wrap {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--sand-3);
  margin-top: 2rem; aspect-ratio: 4/3;
}
.gmap-wrap iframe { width: 100%; height: 100%; display: block; border: none; }

/* Form */
.contact-form-box {
  background: var(--white); border: 1px solid var(--sand-3);
  border-radius: 8px; padding: 2.5rem;
}
.contact-form-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; margin-bottom: 0.4rem;
}
.contact-form-box > p {
  font-size: 0.9rem; color: var(--text-soft); margin-bottom: 1.8rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-soft);
  font-weight: 500; margin-bottom: 0.35rem;
}
.field input, .field textarea, .field select {
  width: 100%; background: var(--sand);
  border: 1px solid var(--sand-3); padding: 0.7rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem;
  font-weight: 300; color: var(--text); border-radius: 6px;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--moss);
}
.field textarea { resize: vertical; min-height: 90px; }
.fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; background: var(--moss-dark); color: white;
  border: none; padding: 0.95rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--moss); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--text); padding: 4.5rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
.footer-brand .fn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; color: white; margin-bottom: 0.3rem;
}
.footer-brand .fs {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bark-light); margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.28); line-height: 1.6; }
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a, .footer-col li span {
  color: rgba(255,255,255,0.42); text-decoration: none;
  font-size: 0.87rem; font-weight: 300; transition: color 0.2s;
  cursor: pointer;
}
.footer-col li a:hover, .footer-col li span:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.16); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .hero-home { grid-template-columns: 1fr; }
  .hero-content { padding: 5rem 2rem 3rem; }
  .hero-visual { height: 340px; }
  .about-grid, .animal-detail-grid, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 320px; }
  .news-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .saannot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-dropdown { display: none; }
  .hamburger { display: flex; }
  .pill-strip-inner { justify-content: flex-start; }
  .animals-grid { grid-template-columns: 1fr 1fr; }
  .animal-cards-small { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .fields-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .hero-content { padding: 4rem 1.2rem 2.5rem; }
}
@media (max-width: 480px) {
  .animals-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.6s ease 0.1s both; }
.anim-2 { animation: fadeUp 0.6s ease 0.25s both; }
.anim-3 { animation: fadeUp 0.6s ease 0.4s both; }
.anim-4 { animation: fadeUp 0.6s ease 0.55s both; }


/* =============================================
   APP HELPERS
============================================= */
main { min-height: 60vh; }
.page-shell { padding-top: 72px; }
.notice {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--sand-3);
  background: var(--white);
  margin-bottom: 1rem;
}
.notice.success { border-color: #b9d7a8; background: #f4fbef; }
.notice.error { border-color: #dfb0a7; background: #fff5f2; }
.muted { color: var(--text-soft); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-card {
  background: var(--white);
  border: 1px solid var(--sand-3);
  border-radius: 8px;
  padding: 2rem;
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.news-editor-item {
  border: 1px solid var(--sand-3);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
  margin-bottom: 1rem;
}
.admin-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.inline-code {
  font-family: monospace;
  background: var(--sand-2);
  border: 1px solid var(--sand-3);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.contact-note-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}
.contact-note-list li {
  padding-left: 1rem;
  position: relative;
  color: var(--text-mid);
}
.contact-note-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--moss);
}
.admin-login-hint {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .info-grid { grid-template-columns: 1fr; }
}
