:root {
  --bg: #F5F2E9;           /* Soft Ivory */
  --green: #0F2A1E;        /* Deep Forest Green */
  --green-hover: #123524;
  --gold: #C6A75E;         /* Soft Metallic Gold */
  --text: #0F2A1E;         /* Kept dark */
  --muted: #536458;
  --border: rgba(15, 42, 30, 0.15);
  --green-border: rgba(255, 255, 255, 0.2); 
  --panel-bg: #F4F2EA;
  
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --container: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }

h1, h2, h3, h4, .serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--text);
  margin: 0;
}
p { margin: 0 0 1rem 0; }
em { font-style: italic; font-weight: 400; }

.shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
}

/* Header Grid */
.site-header {
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(240px, auto) 1fr auto;
  align-items: stretch;
}
.brand {
  padding: 24px 32px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
  font-size: 1.8rem; font-family: "Cormorant Garamond", serif; font-weight: 500;
  color: var(--green); letter-spacing: -0.01em;
}
.brand span { font-size: 0.6em; vertical-align: super; font-weight: 600; margin-left: 2px; }

.header-nav {
  display: flex; gap: 48px;
  align-items: center; justify-content: center;
  padding: 0 40px;
}
.header-nav a { font-size: 0.95rem; font-weight: 500; color: var(--text); opacity: 0.8; }
.header-nav a:hover { opacity: 1; color: var(--green); }

.header-right { 
  display: flex; align-items: center;
  border-left: 1px solid var(--border);
  padding: 0 32px;
}
.btn-login {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 6px 20px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text); transition: background 0.2s;
}
.btn-login:hover { background: rgba(0,0,0,0.05); }
.btn-login img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

/* Buttons */
.btn-group { display: flex; gap: 16px; align-items: center; }
.hero-actions {
  flex-wrap: wrap;
  align-items: flex-start;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 32px; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.96) translateY(0); }
.btn-primary { background-color: var(--green); color: #fff; }
.btn-primary:hover { background-color: var(--green-hover); box-shadow: 0 12px 24px rgba(21, 49, 32, 0.15); }
.btn-outline { background-color: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background-color: rgba(21, 49, 32, 0.05); }

/* Hero Section */
.home-hero {
  border-bottom: 1px solid var(--border);
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1fr 1.05fr; 
  align-items: stretch;
}
.hero-copy {
  padding: 100px 64px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-copy h1 { font-size: clamp(3.2rem, 5.5vw, 4.75rem); line-height: 1.15; letter-spacing: -0.04em; margin-bottom: 32px; color: var(--green); }
.hero-copy > p { font-size: 1.1rem; color: var(--text); line-height: 1.6; max-width: 440px; margin-bottom: 40px; }
.hero-image { padding: 40px; display: flex; align-items: center; }
.hero-image-wrapper { border-radius: 40px; opacity: 0.95; overflow: hidden; aspect-ratio: 4/3; width: 100%; height: 100%; position: relative; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Micro-badge overlay on images */
.micro-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--bg);
  border: 1px solid var(--green); border-radius: var(--radius-pill);
  padding: 4px 12px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--green);
  display: inline-flex; align-items: center; gap: 6px; z-index: 10;
}

/* Stats Structure */
.stats-section {
  border-bottom: 1px solid var(--border);
}
.stats-grid { 
  display: grid; grid-template-columns: 2fr 1.2fr; align-items: stretch; 
}
.stats-numbers { 
  display: grid; grid-template-columns: repeat(3, 1fr); 
}
.stat-item { 
  padding: 64px 48px; border-right: 1px solid var(--border); 
  display: flex; flex-direction: column; justify-content: center; 
  align-items: center; text-align: center;
}
.stat-item:nth-child(1) {
  background-color: #A0AD9D; /* 50% lighter than #405B3B */
}
.stat-item:nth-child(2) {
  background-color: #B7C2B5; /* 50% lighter than #6F856B */
}
.stat-item:nth-child(3) {
  background-color: #DBE2CF;
}
.stat-label { 
  font-family: "Cormorant Garamond", serif; 
  font-size: 2rem; 
  color: var(--green); 
  line-height: 1.3; 
  font-weight: 500;
  letter-spacing: -0.01em;
}

.stats-copy { 
  padding: 64px 48px; display: flex; flex-direction: column; justify-content: center;
}
.stats-copy p { font-size: 1.05rem; color: var(--text); line-height: 1.6; margin-bottom: 24px; }
.text-link { color: var(--gold); font-size: 0.95rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.text-link:hover { opacity: 0.7; }

/* Intro Section Layout */
.intro-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 120px;
  align-items: start;
}
.intro-illu { position: relative; }
.intro-illu img {
  max-width: 320px;
  mix-blend-mode: multiply;
  display: block;
}
.intro-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.35;
  color: var(--green);
  margin-bottom: 56px;
  max-width: 800px;
}
.intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border-top: 1px solid rgba(198, 167, 94, 0.4);
  padding-top: 48px;
  max-width: 800px;
}
.intro-cols p {
  font-size: 1.1rem; line-height: 1.8; color: var(--muted); margin: 0;
}

/* Scroll Mask Reveals */
.text-reveal-wrap.fade-in {
  opacity: 1; 
  transform: none; 
  overflow: hidden; 
  display: block; 
}
.text-reveal-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-reveal-wrap.fade-in.visible .text-reveal-inner {
  transform: translateY(0);
}

.intro-illu.fade-in {
  opacity: 1; 
  transform: none; 
}
.img-reveal-mask {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-illu.fade-in.visible .img-reveal-mask {
  clip-path: inset(0% 0 0 0);
}

/* Services */
.services-section { border-bottom: 1px solid var(--border); }
.services-header { 
  padding: 80px 64px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-end; 
}
.services-title h2 { font-size: 3.2rem; color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em; }
.services-title p { color: var(--muted); max-width: 420px; font-size: 1.1rem; line-height: 1.6; margin: 0; }

.botanical-accent { opacity: 0.8; }
.botanical-accent img { max-width: 140px; transform: rotate(180deg); display: block; }
.placement-accent img { max-width: 260px; transform: none; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc-card { 
  padding: 64px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: flex-start; 
}
.svc-card:last-child { border-right: none; }
.svc-icon { color: var(--green); font-size: 48px; margin-bottom: 40px; display: inline-flex; font-weight: 300; }
.svc-card h3 { font-size: 2.2rem; color: var(--text); margin-bottom: 16px; }
.svc-card p { font-size: 1.05rem; color: var(--muted); line-height: 1.6; margin-bottom: 40px; }
.svc-link { font-size: 0.85rem; font-weight: 700; color: var(--text); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--text); padding-bottom: 2px;}
.process-step-number {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.process-cta {
  padding: 28px 64px 56px;
  border-top: 1px solid var(--border);
}

/* Team Section */
.team-section { border-bottom: 1px solid var(--border); }
.team-header { padding: 80px 64px; border-bottom: 1px solid var(--border); }
.team-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.team-title { font-size: 3.8rem; color: var(--text); margin: 0; letter-spacing: -0.02em; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.team-card { 
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.team-card:last-child { border-right: none; }
.team-card.text-card { 
  background-color: var(--green); color: #fff; padding: 64px 48px; justify-content: space-between; 
}
.text-card .mini-cap { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.text-card h3 { font-size: 2.6rem; color: #fff; line-height: 1.05; margin: 24px 0; }
.text-card p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0; }
.team-card-actions { margin-top: 32px; }

.team-img-card { padding: 32px; display: flex; flex-direction: column; gap: 20px;}
.team-img-wrapper { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; position: relative; width: 100%; display: block; }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.team-img-name { font-size: 1.6rem; color: var(--text); font-family: "Cormorant Garamond", serif; font-weight: 500; margin-top: 8px;}
.team-img-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.team-meta .text-link { margin-top: 14px; }

/* Content Layout (e.g. About page) */
.content-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}
.content-sidebar {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
}
.content-sidebar h2 {
  font-size: 1.7rem; margin-bottom: 24px; color: var(--green);
}
.content-sidebar nav {
  display: flex; flex-direction: column; gap: 16px;
}
.content-sidebar nav a {
  font-size: 1rem; color: var(--muted);
}
.content-sidebar nav a:hover {
  color: var(--green);
}
.content-panel {
  padding: 64px 48px;
}
.copy-block {
  margin-bottom: 48px;
}
.copy-block h3 {
  font-size: 2.2rem; margin-bottom: 24px; color: var(--green);
}
.copy-block p {
  font-size: 1.1rem; line-height: 1.8; color: var(--text); margin-bottom: 24px; max-width: 65ch;
}
.bullet-list { margin-top: 24px; padding-left: 0; list-style: none; }
.bullet-list li { position: relative; padding-left: 28px; margin-bottom: 16px; color: var(--text); font-size: 1.1rem; }
.bullet-list li::before { content: "\2726"; position: absolute; left: 0; color: var(--green); font-size: 14px; top: 4px; }

/* Page Hero (e.g. About) */
.page-hero {
  border-bottom: 1px solid var(--border);
}
.page-hero-copy {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.breadcrumb { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 18px; display: block; }
.micro-label { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; display: inline-block; margin-bottom: 10px; }
.page-hero-copy h1 { font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1.05; margin-bottom: 12px; color: var(--green); }
.page-hero-copy p { font-size: 1rem; color: var(--muted); margin-bottom: 10px; }

.page-hero-visual {
  padding: 32px;
  min-height: 100%;
}
.page-hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 32px;
}

.section {
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.content-page .shell {
  background: transparent;
}

.page-hero .shell {
  display: block;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.page-hero-card {
  padding: 32px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid var(--border);
  border-radius: 36px;
  overflow: hidden;
  align-items: stretch;
}

.home-link:hover {
  color: var(--green);
}

.copy-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.copy-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-block;
}

.lead-copy {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 66ch;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.faq-card,
.process-step,
.kitten-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 36px;
  background: var(--panel-bg);
}

.card-grid > :nth-child(3n),
.card-grid.two > :nth-child(2n) {
  border-right: none;
}

.info-card h3,
.faq-card h3,
.process-step h3,
.kitten-card h3 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--green);
}

.info-card p,
.faq-card p,
.process-step p,
.kitten-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.faq-grid > :nth-child(2n) {
  border-right: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(198, 167, 94, 0.5);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.process-step ul {
  margin-top: 18px;
}

.cta-band {
  padding: 56px 64px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(15,42,30,0.04));
}

.cta-band strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--green);
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 62ch;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  background: var(--panel-bg);
}

.split-panel:last-child {
  border-right: none;
}

.split-panel h3 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 18px;
}

.split-panel p {
  color: var(--muted);
  line-height: 1.7;
}

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

.kitten-card {
  padding: 24px;
}

.kitten-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 24px;
}

.kitten-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kitten-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

.meta-pill.available {
  border-color: rgba(15, 42, 30, 0.28);
}

.meta-pill.reserved {
  border-color: rgba(198, 167, 94, 0.7);
  color: #7e6224;
}

.kitten-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
}

.page-actions {
  margin-top: 28px;
}

.note-panel {
  padding: 40px 36px;
  background: var(--panel-bg);
  border-left: 1px solid var(--border);
}

.note-panel h3 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--green);
}

.note-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.form-preview {
  display: grid;
  gap: 18px;
  padding: 40px 36px;
  border-left: 1px solid var(--border);
  background: var(--panel-bg);
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 700;
}

.field-input,
.field-textarea,
.choice-row {
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  padding: 16px 18px;
  color: var(--muted);
}

.field-textarea {
  min-height: 120px;
}

.choice-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.choice-pill {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checklist {
  display: grid;
  gap: 16px;
}

.check-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(198, 167, 94, 0.55);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}


/* Footer */
.site-footer { background-color: var(--green); color: var(--bg); border-top: none; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; padding: 64px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-left strong { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--gold); display: block; margin-bottom: 8px; }
.footer-left p { color: rgba(245, 242, 233, 0.7); font-size: 0.95rem; margin: 0; line-height: 1.6; }
.footer-right { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-right a { font-size: 0.95rem; color: var(--bg); font-weight: 500; }
.footer-right a:hover { color: var(--gold); }

/* Animation Utils */
.fade-in { opacity: 0; transform: translateY(10px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 1024px) {
  .hero-grid, .stats-grid, .services-grid, .team-grid, .page-hero-layout, .card-grid, .card-grid.two, .faq-grid, .process-grid, .kitten-grid, .split-band { grid-template-columns: 1fr; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-nav { display: none; }
  .hero-copy { border-right: none; border-bottom: 1px solid var(--border); padding: 48px 32px; }
  .hero-image { padding: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 32px; }
  .stats-numbers { grid-template-columns: 1fr; border-right: none; border-bottom: 1px solid var(--border); }
  .stats-copy { border-left: none; padding: 40px 32px; }
  .intro-grid { grid-template-columns: 1fr; gap: 64px; }
  .intro-illu img { max-width: 240px; margin: 0 auto; }
  .intro-cols { grid-template-columns: 1fr; gap: 32px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; padding: 40px 32px; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 32px; }
  .svc-card:last-child { border-bottom: none; }
  .process-cta { padding: 24px 32px 40px; }
  .team-header { padding: 40px 32px; }
  .team-card { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .shell { border-left: none; border-right: none; }
  
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { border-right: none; border-bottom: 1px solid var(--border); padding: 32px; position: static; }
  .content-panel { padding: 32px; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-copy { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 24px; }
  .page-hero-card { padding: 24px; }
  .card-grid > *, .faq-grid > *, .process-grid > *, .kitten-grid > *, .split-panel, .note-panel, .form-preview { border-right: none; }
  .cta-band { padding: 40px 32px; }
  .btn-group { flex-wrap: wrap; }
}
