/* ============================================================
   LIVING AROHA — Verdant Editorial v2.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---- Tokens ---- */
:root {
  --forest-deep:   #0B1C13;
  --forest-dark:   #152B1E;
  --forest-rich:   #1B4332;
  --forest-mid:    #2D6A4F;
  --forest-bright: #52B788;
  --forest-pale:   #95D5B2;

  --cream:         #F6F0E6;
  --cream-warm:    #EDE4D2;
  --cream-dark:    #E0D5C0;
  --parchment:     #D4C9B0;

  --gold:          #C49A6C;
  --gold-light:    #DEB98A;
  --gold-pale:     #F0DFC0;
  --gold-muted:    #8A6840;

  --ink:           #120E08;
  --ink-mid:       #2E2416;
  --ink-soft:      #5A4E3C;
  --ink-faint:     #9A8E7C;

  --white:         #FFFFFF;

  --ff-display:    'Cormorant Garamond', Georgia, serif;
  --ff-body:       'Jost', system-ui, sans-serif;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h:         76px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink-mid);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Grain overlay — applied on body::before */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.028;
  mix-blend-mode: multiply;
}

/* ---- Container ---- */
.wrap {
  width: min(90%, 1200px);
  margin-inline: auto;
}
.wrap--narrow { width: min(90%, 780px); margin-inline: auto; }
.wrap--wide   { width: min(96%, 1440px); margin-inline: auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s;
}
.nav.scrolled {
  background: rgba(11, 28, 19, 0.92);
  backdrop-filter: blur(12px) saturate(1.4);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav__logo-sub {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
/* WordPress wp_nav_menu() wraps items in ul > li — flatten them into the flex row */
.nav__links ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links li {
  position: relative;
}
/* Hide sub-menu items (dropdowns) — keep nav clean */
.nav__links .sub-menu {
  display: none;
}
.nav__links a,
.nav__links li > a {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links li > a:hover,
.nav__links .current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__lang {
  display: flex;
  gap: 4px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.nav__lang a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 5px 8px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav__lang a:hover, .nav__lang a.active { color: var(--gold-light); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--forest-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Radial light bleed */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(45,106,79,0.45) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated mesh */
.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(82,183,136,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(196,154,108,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(21,43,30,0.8) 0%, transparent 80%);
  animation: meshShift 20s ease-in-out infinite alternate;
}
@keyframes meshShift {
  from { opacity: 0.8; }
  to   { opacity: 1; }
}

/* Botanical SVG lines */
.hero__botanical {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  opacity: 0.06;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: calc(var(--nav-h) + 40px) 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  animation: fadeUp 1s var(--ease-out) 0.35s both;
}
.hero__title em {
  font-style: italic;
  color: var(--forest-pale);
  font-weight: 300;
}
.hero__title-line {
  display: block;
}
.hero__title-line--gold {
  color: var(--gold-light);
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.hero__sub {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(246,240,230,0.55);
  margin-block: 28px 48px;
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.85;
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.65s both;
}

/* Scroll line */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeIn 1s var(--ease-out) 1.2s both;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.1); }
}
.hero__scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-lr;
}

/* Wave divider */
.wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave svg { display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 0.08; }

.btn--gold {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,154,108,0.3);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246,240,230,0.3);
}
.btn--outline-light:hover {
  border-color: rgba(246,240,230,0.7);
  background: rgba(246,240,230,0.06);
}

.btn--outline-dark {
  background: transparent;
  color: var(--forest-rich);
  border-color: var(--forest-mid);
}
.btn--outline-dark:hover {
  background: var(--forest-rich);
  color: var(--cream);
  border-color: var(--forest-rich);
}

.btn--forest {
  background: var(--forest-rich);
  color: var(--cream);
  border-color: var(--forest-rich);
}
.btn--forest:hover {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27,67,50,0.3);
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro {
  background: var(--forest-dark);
  padding-block: 72px;
}
.intro__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.intro__stat {
  text-align: center;
  position: relative;
}
.intro__stat + .intro__stat::before {
  content: '·';
  position: absolute;
  left: -42px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.15);
  font-size: 2rem;
}
.intro__stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.intro__stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   SECTION ANATOMY
   ============================================================ */
.section {
  padding-block: 120px;
}
.section--cream  { background: var(--cream); }
.section--warm   { background: var(--cream-warm); }
.section--forest { background: var(--forest-rich); }
.section--deep   { background: var(--forest-deep); }

.section__label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section__label::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.section__label--center { justify-content: center; }
.section__label--center::before { display: none; }
.section__label--light { color: var(--gold-light); }
.section__label--light::before { background: var(--gold-light); }

.section__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-bottom: 24px;
}
.section__title em { font-style: italic; color: var(--forest-mid); }
.section__title--light { color: var(--cream); }
.section__title--light em { color: var(--forest-pale); }
.section__title--center { text-align: center; }

.section__body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 560px;
}
.section__body--light { color: rgba(246,240,230,0.65); }
.section__body--center { text-align: center; max-width: 600px; margin-inline: auto; }
.section__body p + p { margin-top: 1.2em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__header {
  text-align: center;
  margin-bottom: 80px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--parchment);
}

.service {
  background: var(--cream);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--forest-bright), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service:hover { background: var(--cream-warm); }
.service:hover::before { transform: scaleX(1); }

.service__num {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  opacity: 0.7;
}

.service__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service__title {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.service__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.2s;
}
.service:hover .service__link { gap: 14px; color: var(--forest-rich); }
.service__link-arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.service:hover .service__link-arrow { transform: translateX(4px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: center;
}

.about__portrait {
  position: relative;
}

.about__frame {
  aspect-ratio: 3/4;
  background: var(--cream-warm);
  border: 1px solid var(--parchment);
  overflow: hidden;
  position: relative;
}
.about__frame-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(160deg, #d4c9b0 0%, #b8ad98 100%);
  color: rgba(255,255,255,0.4);
}

/* Floating credential card */
.about__credential {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--forest-deep);
  padding: 24px 28px;
  min-width: 180px;
}
.about__credential-title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.about__credential-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Decorative large letter */
.about__deco {
  position: absolute;
  top: -40px;
  left: -30px;
  font-family: var(--ff-display);
  font-size: 12rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

.about__content {}

.about__qualities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-block: 36px 40px;
}
.about__quality {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--cream-dark);
}
.about__quality-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.about__quality span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   PHILOSOPHY — FULL DARK
   ============================================================ */
.philosophy {
  background: var(--forest-deep);
  padding-block: 140px;
  position: relative;
  overflow: hidden;
}

.philosophy__bg-text {
  position: absolute;
  inset-block-end: -60px;
  inset-inline-start: -20px;
  font-family: var(--ff-display);
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.philosophy__pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.philosophy__pillar {
  background: transparent;
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background 0.3s;
  cursor: default;
}
.philosophy__pillar:hover { background: rgba(255,255,255,0.04); }

.philosophy__pillar-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
.philosophy__pillar:hover .philosophy__pillar-num { opacity: 0.9; }

.philosophy__pillar-body {}
.philosophy__pillar-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}
.philosophy__pillar-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(246,240,230,0.5);
  line-height: 1.75;
}

/* ============================================================
   TREATED ANIMALS
   ============================================================ */
.animals__header {
  text-align: center;
  margin-bottom: 72px;
}

.animals__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.animal {
  border: 1px solid var(--cream-dark);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.animal:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.animal__header {
  background: var(--forest-dark);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.animal__emoji {
  font-size: 2.4rem;
  flex-shrink: 0;
}
.animal__header-text {}
.animal__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.animal__subtitle {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.animal__body {
  padding: 32px 36px;
  background: var(--cream);
}
.animal__body p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 24px;
}
.animal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.animal__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  background: var(--cream-warm);
  border: 1px solid var(--cream-dark);
  padding: 5px 12px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--forest-rich);
  padding-block: 140px;
  position: relative;
  overflow: hidden;
}

.cta__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-bottom: 72px;
}

.cta__details {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta__detail {
  text-align: center;
}
.cta__detail-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.cta__detail-value {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest-deep);
  padding-block: 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__brand {}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.footer__brand p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer__langs {
  display: flex;
  gap: 20px;
}
.footer__langs a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer__langs a:hover { color: var(--gold-light); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__portrait { max-width: 400px; }
  .about__deco { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .philosophy__inner { grid-template-columns: 1fr; gap: 60px; }
  .animals__grid { grid-template-columns: 1fr; }
  .intro__inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding-block: 80px; }
  .hero__title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .services__grid { grid-template-columns: 1fr; }

  .nav__links, .nav__lang { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--forest-deep);
    padding: 24px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links.open ul {
    flex-direction: column;
    width: 100%;
  }
  .nav__links.open a,
  .nav__links.open li > a { padding: 14px 16px; font-size: 0.9rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__brand { grid-column: auto; }
  .about__credential { right: 0; }
  .cta__details { gap: 32px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .philosophy__bg-text { display: none; }
  .about__qualities { grid-template-columns: 1fr; }
}
