: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;
}

.site-header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(240px, auto) 1fr auto;
  align-items: stretch;
  background-color: var(--green);
  color: var(--bg);
}
.brand {
  padding: 24px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; gap: 12px;
  font-size: 2.3rem; font-family: "Cormorant Garamond", serif; font-weight: 500;
  color: var(--bg); letter-spacing: -0.01em;
}
.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.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: rgba(245, 242, 233, 0.82); opacity: 1; }
.header-nav a:hover { color: var(--gold); }

.header-right { 
  display: flex; align-items: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 32px;
}
.btn-login {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: var(--radius-pill);
  padding: 6px 20px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--bg); transition: background 0.2s;
  min-height: 40px;
}
.btn-login:hover { background: rgba(255,255,255,0.08); }
.btn-login img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  position: relative;
  color: var(--bg);
}
.mobile-nav-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-nav-toggle span:nth-child(1) {
  top: 15px;
  transform: translateX(-50%);
}
.mobile-nav-toggle span:nth-child(2) {
  top: 21px;
  transform: translateX(-50%);
}
.mobile-nav-toggle span:nth-child(3) {
  top: 27px;
  transform: translateX(-50%);
}
.mobile-nav-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}
.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;
  white-space: nowrap;
}
.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); }

.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: 56px; display: flex; align-items: center; justify-content: center; }
.hero-image-wrapper { border-radius: 40px; opacity: 0.95; overflow: hidden; aspect-ratio: 5/4; width: 100%; max-width: 880px; position: relative; margin: 0 auto; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.home-hero--solo .home-hero-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(420px, 60vh, 640px);
}
.hero-copy--solo {
  border-right: none;
  padding: 80px 32px;
  text-align: center;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-copy--solo > p { margin-left: auto; margin-right: auto; }
.hero-copy--solo .hero-actions { justify-content: center; }

.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-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;
}
.stat-item:nth-child(2) {
  background-color: #B7C2B5;
}
.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; }

.home-intro-section {
  padding: 140px 32px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background-color: var(--bg);
}

.home-intro-shell {
  border: none;
  max-width: 1200px;
}

.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;
}

.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-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 { 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-grid.waitlist-mode { grid-template-columns: 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; }
.text-card .btn-outline { border-color: #b9a264; color: #b9a264; }
.text-card .btn-outline:hover { background-color: rgba(185, 162, 100, 0.12); }

.team-img-card { padding: 32px; display: flex; flex-direction: column; gap: 20px;}
.team-img-link { display: block; color: inherit; text-decoration: none; }
.team-img-wrapper { border-radius: 20px; overflow: hidden; position: relative; width: 100%; display: block; }
.team-img-wrapper img { width: 100%; height: auto; display: block; }
.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 {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}
.content-sidebar {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 24px;
  align-self: start;
  height: fit-content;
}
.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 {
  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);
}

.section:has(.card-grid),
.section:has(.faq-grid),
.section:has(.process-grid),
.section:has(.kitten-grid) {
  border-bottom: none;
}

.content-page .shell {
  background: transparent;
}

.page-hero .shell {
  display: block;
}

.page-hero-card {
  padding: 32px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 36px;
  overflow: hidden;
  align-items: stretch;
}
.page-hero-layout.page-hero-layout--single {
  grid-template-columns: 1fr;
}
.page-hero-layout.page-hero-layout--single .page-hero-copy {
  border-right: none;
}

.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: var(--panel-bg);
}

.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-grid.waitlist-mode {
  grid-template-columns: 1fr;
}

.kitten-card {
  padding: 24px;
}
.kitten-card.waitlist-card {
  padding: 56px 48px;
  max-width: none;
}

.kitten-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  margin-bottom: 24px;
}

.kitten-card-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.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);
}

.kitten-detail-meta {
  margin-top: 22px;
}

.kitten-detail-tags {
  display: contents;
}

.kitten-detail-price {
  margin-top: 18px;
  font-size: 1.05rem;
}

.kitten-detail-actions {
  margin-top: 24px;
}

.kitten-detail-panel {
  padding: 40px 36px;
}

.kitten-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kitten-detail-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.page-actions {
  margin-top: 28px;
}

.note-panel {
  padding: 40px 36px;
  background: var(--panel-bg);
}

.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: var(--panel-bg);
  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;
}

.site-footer {
  background-color: var(--green);
  color: var(--bg);
  border-top: none;
}

.footer-inner {
  padding: 56px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 32px;
}

.footer-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.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.9);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.footer-trust {
  margin-top: 18px;
  color: rgba(245, 242, 233, 0.95);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-logo-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 21px;
  flex-wrap: wrap;
  transform: translateY(-10%);
}

.footer-logo {
  width: auto;
  height: min(135px, 18vw);
  object-fit: contain;
}

.footer-logo--tica {
  filter: brightness(0) invert(1);
}

.footer-secondary {
  display: grid;
  gap: 18px;
}

.footer-right {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-right a {
  font-size: 0.95rem;
  color: rgba(245, 242, 233, 0.9);
  font-weight: 500;
}

.footer-right a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  max-width: 78ch;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(245, 242, 233, 0.72);
}

.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); }

.preapproval-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.screening-form {
  gap: 20px;
}

.choice-option {
  position: relative;
}

.choice-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-option input:checked + .choice-pill {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.field-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.screening-actions,
.response-actions {
  margin-top: 8px;
}

.response-block {
  display: none;
}

.response-block.is-active {
  display: block;
}

.screening-gate.is-blocked {
  opacity: 0.5;
  cursor: not-allowed;
}

.compact-list {
  margin-bottom: 0;
}

.compact-list li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.response-panel-single {
  padding: 64px 48px;
  display: none;
}

.response-panel-single.has-result {
  display: block;
}

@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, .preapproval-layout { grid-template-columns: 1fr; }
  .kitten-detail-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { padding: 18px 20px; font-size: 2.05rem; grid-column: 1; grid-row: 1; }
  .brand-mark { width: 42px; height: 42px; }
  .header-right { gap: 10px; padding: 0 20px; grid-column: 2; grid-row: 1; }
  .header-nav {
    display: flex;
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--green);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
  }
  .header-nav.is-open {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header-nav a {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-nav-toggle { display: inline-flex; }
  .btn-login { padding: 6px 14px; font-size: 0.76rem; letter-spacing: 0.08em; }
  .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; }
  .home-intro-section { padding: 72px 20px; }
  .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 { padding: 40px 28px; }
  .footer-primary { grid-template-columns: 1fr; align-items: start; }
  .footer-logo-wrap { justify-content: flex-start; transform: none; }
  .footer-logo { width: auto; height: min(124px, 34.9vw); }
  .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 24px; }
  .page-hero-copy { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 24px; }
  .page-hero-card { padding: 20px; }
  .card-grid > *, .faq-grid > *, .process-grid > *, .kitten-grid > *, .split-panel, .note-panel, .form-preview { border-right: none; }
  .cta-band { padding: 40px 24px; }
  .btn-group { flex-wrap: wrap; }
  .btn-group .btn { width: 100%; }
  .response-panel-single { padding: 32px 24px; }
}

@media (max-width: 680px) {
  .kitten-detail-gallery { grid-template-columns: 1fr; }
}

.application-panel {
  padding: 64px 48px;
}

.application-page {
  min-height: calc(100svh - 101px);
}

.application-stage-section {
  min-height: calc(100svh - 101px);
  display: flex;
  align-items: stretch;
}

.application-stage-section > .content-panel {
  width: 100%;
}

.application-stage-header {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.application-stage-header h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  margin-bottom: 14px;
  color: var(--green);
}

.application-stage-header p {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.payment-page {
  min-height: calc(100svh - 101px);
}

.payment-stage-section {
  padding-top: 0;
}

.payment-stage-header {
  margin-bottom: 30px;
}

.payment-stage-header h1 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1.04;
  margin-bottom: 14px;
  color: var(--green);
}

.payment-stage-header p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.application-form,
.application-guard {
  max-width: 820px;
  margin: 0 auto;
}

.application-guard {
  display: none;
}

.application-guard.is-active {
  display: block;
}

.application-form.is-hidden {
  display: none;
}

.application-panel:has(.application-guard.is-active) {
  min-height: calc(100svh - 101px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-payment-layout {
  display: block;
  max-width: 980px;
  margin: 0 auto;
}

.mock-payment-main {
  padding: 48px;
  border-right: none;
}

.mock-preview-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(198, 167, 94, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  margin-bottom: 28px;
}

.mock-preview-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mock-preview-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 42, 30, 0.16);
  background: var(--bg);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mock-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.mock-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
}

.mock-step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 42, 30, 0.14);
  font-size: 0.82rem;
  font-weight: 700;
}

.mock-step strong {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-step.is-active {
  background: var(--green);
  color: #fff;
}

.mock-step.is-active span {
  border-color: rgba(255, 255, 255, 0.28);
}

.mock-payment-card,
.mock-payment-confirmation,
.mock-summary-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 40px rgba(15, 42, 30, 0.08);
}

.mock-payment-card {
  padding: 30px;
}

.mock-card-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15, 42, 30, 0.08);
}

.mock-card-header h2 {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 8px;
}

.mock-card-header p {
  margin: 0;
  color: var(--muted);
}

.mock-order-status {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(15, 42, 30, 0.06);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mock-payment-section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(15, 42, 30, 0.08);
}

.mock-payment-section h3 {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 16px;
}

.mock-method-grid {
  display: grid;
  gap: 14px;
}

.mock-method-option {
  position: relative;
  display: block;
}

.mock-method-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mock-method-option span {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(15, 42, 30, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mock-method-option strong {
  display: block;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 6px;
}

.mock-method-option em {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.mock-method-option input:checked + span {
  border-color: rgba(198, 167, 94, 0.72);
  box-shadow: 0 0 0 4px rgba(198, 167, 94, 0.12);
  transform: translateY(-1px);
}

.mock-checkline {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  margin-bottom: 12px;
}

.mock-checkline input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--green);
}

.mock-payment-confirmation {
  display: none;
  padding: 48px 40px;
  text-align: center;
}

.mock-payment-confirmation.is-active {
  display: block;
}

.mock-summary-card {
  width: 100%;
  padding: 28px 26px;
  position: static;
  max-height: none;
  overflow: visible;
}

.mock-summary-card-inline {
  margin-top: 24px;
}

.mock-summary-head h2 {
  font-size: 2rem;
  color: var(--green);
  margin-top: 4px;
  margin-bottom: 20px;
}

.mock-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.mock-summary-row {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 42, 30, 0.08);
  color: var(--muted);
}

.mock-summary-row strong {
  color: var(--green);
  text-align: left;
}

.mock-summary-row.total {
  border-bottom: none;
  padding-top: 18px;
}

.mock-summary-grid .mock-summary-row:nth-last-child(2) {
  border-bottom: none;
}

.mock-summary-row.total span,
.mock-summary-row.total strong {
  font-size: 1.05rem;
}

.mock-summary-note {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.credential-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 34px rgba(15, 42, 30, 0.06);
}

.credential-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f3efe4;
  border-bottom: 1px solid var(--border);
}

.credential-card-body {
  padding: 24px;
}

.credential-card-body h4 {
  font-size: 1.7rem;
  color: var(--green);
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.credential-card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.application-intro {
  margin-bottom: 28px;
}

.application-intro h2 {
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 10px;
}

.application-intro p {
  color: var(--muted);
  margin: 0;
}

.application-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.application-grid .field-group-full {
  grid-column: 1 / -1;
}

.application-form > .field-group {
  margin-top: 24px;
}

.field-control {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel-bg);
  padding: 16px 18px;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field-control:hover {
  border-color: rgba(15, 42, 30, 0.28);
  background: var(--panel-bg);
}

.field-control:focus {
  outline: none;
  border-color: rgba(198, 167, 94, 0.92);
  box-shadow: 0 0 0 4px rgba(198, 167, 94, 0.14);
  background: var(--panel-bg);
}

.field-control.is-invalid {
  border-color: rgba(151, 74, 54, 0.72);
  box-shadow: 0 0 0 4px rgba(151, 74, 54, 0.12);
  background: rgba(255, 249, 247, 0.92);
}

select.field-control {
  display: none;
}

.custom-select {
  position: relative;
}

.custom-select-button {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel-bg);
  color: var(--text);
  font: inherit;
  padding: 16px 54px 16px 18px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.custom-select-button:hover {
  border-color: rgba(15, 42, 30, 0.28);
  background: var(--panel-bg);
}

.custom-select-button:focus-visible,
.custom-select.is-open .custom-select-button {
  outline: none;
  border-color: rgba(198, 167, 94, 0.92);
  box-shadow: 0 0 0 4px rgba(198, 167, 94, 0.14);
  background: var(--panel-bg);
}

.custom-select.is-invalid .custom-select-button {
  border-color: rgba(151, 74, 54, 0.72);
  box-shadow: 0 0 0 4px rgba(151, 74, 54, 0.12);
  background: rgba(255, 249, 247, 0.92);
}

.custom-select-button::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%230F2A1E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  transition: transform 0.18s ease;
}

.custom-select.is-open .custom-select-button::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  padding: 10px;
  border: 1px solid rgba(15, 42, 30, 0.12);
  border-radius: 22px;
  background: rgba(248, 245, 238, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 44px rgba(15, 42, 30, 0.12);
  overflow: hidden;
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-option {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  border-radius: 14px;
  padding: 12px 14px;
  min-height: 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  justify-content: flex-start;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.68);
}

.custom-select-option.is-selected {
  background: rgba(198, 167, 94, 0.16);
  color: var(--green);
}
.field-control-textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 1024px) {
  .application-panel {
    padding: 32px 24px;
  }

  .application-page,
  .application-stage-section,
  .application-panel:has(.application-guard.is-active) {
    min-height: auto;
  }

  .application-stage-header {
    margin-bottom: 28px;
  }

  .application-stage-header h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .payment-page {
    min-height: auto;
  }

  .payment-stage-header h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .application-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .mock-payment-layout {
    max-width: none;
  }

  .mock-payment-main {
    padding: 32px 24px;
    border-bottom: none;
  }

  .mock-stepper {
    grid-template-columns: 1fr;
  }

  .mock-card-header {
    flex-direction: column;
  }

  .mock-summary-card { position: static; }
  .mock-summary-grid { grid-template-columns: 1fr; gap: 0; }
  .mock-summary-grid .mock-summary-row:nth-last-child(2) { border-bottom: 1px solid rgba(15, 42, 30, 0.08); }
}





@media (max-width: 1024px) {
  .header-nav.is-open {
    background: var(--green);
    box-shadow: 0 18px 30px rgba(15, 42, 30, 0.22);
  }
}











body.page-is-entering {
  opacity: 0;
}

body.page-is-entering.page-is-ready {
  opacity: 1;
  transition: opacity 0.28s ease;
}

body.page-is-leaving {
  opacity: 0;
  transition: opacity 0.22s ease;
}
