/* ===========================
   RESET & CSS VARIABLES
=========================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --forest:   #2c3e2d;
  --forest-d: #1e2b1f;
  --forest-l: #3d5440;
  --gold:     #c8a86b;
  --gold-l:   #e2cfa0;
  --gold-d:   #a8883d;
  --cream:    #faf8f3;
  --warm:     #f3ede2;
  --text:     #2a2520;
  --muted:    #6b6258;
  --border:   #ddd5c5;
  --white:    #ffffff;
  --shadow:   0 8px 40px rgba(44,62,45,0.12);
  --shadow-lg:0 20px 70px rgba(44,62,45,0.18);
  --radius:   2px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

img { display:block; max-width:100%; }
a { text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* ===========================
   UTILITY CLASSES
=========================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}

.heading em { font-style: italic; color: var(--muted); font-weight: 400; }

.heading-white { color: #fff; }
.heading-white em { color: rgba(255,255,255,0.45); }

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 0 28px;
}
.divider-center { margin: 0 auto 28px; }

.body-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}

.body-text-white {
  color: rgba(255,255,255,0.55);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 34px;
  transition: all var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,107,0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--forest);
  color: #fff;
  border: 1px solid var(--forest);
}
.btn-forest:hover {
  background: var(--forest-l);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold-d);
  transform: translateY(-2px);
}

.btn svg { width:14px; height:14px; flex-shrink:0; }

/* ===========================
   ANNOUNCEMENT BAR
=========================== */
.announcement-bar {
  background: var(--forest-d);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 400;
}
.announcement-bar a { color: var(--gold-l); font-weight: 500; }
.announcement-bar a:hover { color: #fff; }
.announcement-bar .sep { margin: 0 16px; opacity: 0.3; }

/* ===========================
   HEADER & NAV
=========================== */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--forest-d);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}

#main-header.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width:24px; height:24px; fill:#fff; }

.logo-text-block { display:flex; flex-direction:column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 28px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--gold); }

.nav-link .chevron {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.25s;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: #1a2b1b;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  z-index: 200;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.dropdown-link:hover {
  color: var(--gold-l);
  background: rgba(200,168,107,0.08);
  padding-left: 24px;
}
.dropdown-link:last-child { border-bottom: none; }

/* CTA in nav */
.nav-cta {
  margin-left: 8px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: #1a2b1b;
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 600px; }

.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 500;
  transition: all 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 36px; }
.mobile-nav-link.sub {
  font-size: 12px;
  padding-left: 44px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  text-transform: none;
}
.mobile-nav-link.sub:hover { color: var(--gold-l); padding-left: 52px; }
.mobile-nav-section { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav-section:last-child { border-bottom: none; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,43,27,0.92) 40%, rgba(26,43,27,0.6) 100%),
    url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1800&q=85') center/cover no-repeat;
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(200,168,107,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(200,168,107,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(200,168,107,0.15) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s 0.3s forwards;
}

@keyframes heroReveal {
  to { opacity:1; transform:translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-eyebrow-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 12px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-l);
  display: block;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: var(--forest);
  padding: 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.trust-item:hover { background: rgba(200,168,107,0.08); }

.trust-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,168,107,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.trust-content .trust-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.trust-content .trust-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  padding: 110px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-img-frame-outer {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--forest-d);
  border: 1px solid rgba(200,168,107,0.3);
  padding: 18px 22px;
  z-index: 2;
  text-align: center;
  min-width: 110px;
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-badge .lbl {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: 4px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.feature-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--warm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-chip:hover {
  background: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.feature-chip .fi {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-chip .ft {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.feature-chip .fd {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 300;
}

/* ===========================
   KITTENS SECTION
=========================== */
.kittens-section {
  padding: 110px 0;
  background: var(--warm);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.kittens-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Outfit', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--forest-d);
  border-color: var(--forest-d);
  color: #fff;
}

.kittens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.kitten-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.kitten-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.kitten-img-wrap {
  position: relative;
  overflow: hidden;
}

.kitten-img-wrap img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.5s;
}
.kitten-card:hover .kitten-img-wrap img { transform: scale(1.05); }

.kitten-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
}
.badge-available { background: #d4edda; color: #155724; }
.badge-reserved  { background: #fff3cd; color: #856404; }
.badge-pending   { background: #cfe2ff; color: #084298; }

.kitten-gender {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.gender-m { background: rgba(52,152,219,0.9); }
.gender-f { background: rgba(231,76,60,0.85); }

.kitten-body {
  padding: 22px 24px 26px;
}

.kitten-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.kitten-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.kitten-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--warm);
  padding: 3px 8px;
  font-weight: 500;
}

.kitten-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-weight: 300;
}

.kitten-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kitten-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
}

.kitten-cta {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-d);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.kitten-cta:hover { gap: 10px; }
.kitten-cta svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; }

.kittens-footer {
  text-align: center;
  margin-top: 56px;
}

/* ===========================
   WHY CHOOSE SECTION
=========================== */
.why-section {
  background: var(--forest-d);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.why-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,168,107,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(200,168,107,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.why-img-stack {
  position: relative;
}

.why-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-img-float {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 220px;
  object-fit: cover;
  border: 4px solid var(--forest-d);
}

.why-img-gold-accent {
  position: absolute;
  top: 28px;
  left: -16px;
  width: 60px;
  height: 100px;
  border: 1px solid rgba(200,168,107,0.3);
  pointer-events: none;
}

.why-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.trait-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
}
.trait-item:hover {
  background: rgba(200,168,107,0.07);
  border-color: rgba(200,168,107,0.25);
}

.trait-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.trait-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ===========================
   PROCESS SECTION
=========================== */
.process-section {
  padding: 110px 0;
  background: var(--cream);
}

.process-section .section-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 70px;
}

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.steps-line {
  position: absolute;
  top: 30px;
  left: calc(50% / 4);
  right: calc(50% / 4);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.step-num-wrap {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: #fff;
  box-shadow: 0 0 0 6px var(--cream);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step-card:hover .step-num-wrap {
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--cream), 0 8px 24px rgba(200,168,107,0.4);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.3s;
}
.step-card:hover .step-num { color: #fff; }

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  background: var(--forest);
  padding: 110px 0;
}

.testimonials-section .section-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 30px;
  transition: all 0.3s;
}
.t-card:hover {
  background: rgba(200,168,107,0.07);
  border-color: rgba(200,168,107,0.2);
}

.t-quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 14px;
}

.t-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.t-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}

.t-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest-l);
  border: 1px solid rgba(200,168,107,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.t-author { font-size: 13px; font-weight: 600; color: #fff; }
.t-location { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; margin-top: 2px; }

/* ===========================
   CERTIFICATIONS
=========================== */
.certs-row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cert-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid rgba(200,168,107,0.2);
  background: rgba(200,168,107,0.05);
  transition: all 0.3s;
}
.cert-pill:hover {
  border-color: rgba(200,168,107,0.5);
  background: rgba(200,168,107,0.1);
}

.cert-pill-icon { font-size: 22px; }
.cert-pill-text { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  padding: 110px 0;
  background: var(--warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--forest-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-card-body .cc-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card-body .cc-val {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.contact-card-body .cc-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* FORM */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  padding: 48px 42px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
  border-radius: var(--radius);
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,107,0.15);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--forest);
  cursor: pointer;
}

.form-check label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  cursor: pointer;
}

.form-success {
  display: none;
  padding: 18px 22px;
  background: #d4edda;
  border: 1px solid #b8ddc4;
  color: #155724;
  font-size: 14px;
  border-radius: var(--radius);
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--gold) 50%, var(--gold-l) 100%);
  padding: 70px 60px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(0,0,0,0.55);
  font-weight: 300;
}

.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: #0e1a0f;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,107,0.08);
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 300;
  transition: all 0.2s;
}
.footer-links a:hover { color: var(--gold-l); padding-left: 5px; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fci .icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.fci .val {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-weight: 300;
}
.fci .val a { color: var(--gold); transition: color 0.2s; }
.fci .val a:hover { color: var(--gold-l); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.3px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===========================
   BACK TO TOP
=========================== */
#back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--forest-d);
  border: 1px solid rgba(200,168,107,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
#back-top.visible { opacity: 1; visibility: visible; }
#back-top:hover { background: var(--forest-l); transform: translateY(-3px); }
#back-top svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:2; }

/* ===========================
   KITTEN MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: #fff;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-img { width: 100%; height: 280px; object-fit: cover; }

.modal-body { padding: 32px; }

.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.modal-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--warm);
  color: var(--muted);
  padding: 4px 10px;
  font-weight: 600;
}

.modal-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--forest);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: background 0.2s;
}
.modal-close-btn:hover { background: rgba(0,0,0,0.8); }

.modal-relative { position: relative; }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s, transform 0.65s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .desktop-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .kittens-grid { grid-template-columns: 1fr 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; }
  .steps-line { display: none; }
  .testimonials-track { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 24px; }
  .about-section, .kittens-section, .why-section, .process-section,
  .testimonials-section, .contact-section { padding: 70px 0; }
  .why-img-float { display: none; }
}

@media (max-width: 600px) {
  .kittens-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .kittens-filter { display: none; }
  .cta-banner { padding: 50px 28px; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .announcement-bar .sep { display: none; }
}
