:root {
  color-scheme: light;
  --header-height: 4rem;
}

[v-cloak] {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

.site-shell {
  background:
    linear-gradient(135deg, rgba(246, 197, 109, 0.28), transparent 34rem),
    linear-gradient(320deg, rgba(146, 180, 111, 0.22), transparent 36rem),
    #fff8ef;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(145deg, #f6c56d, #92b46f);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(88, 117, 77, 0.18);
  color: #2b241f;
  display: flex;
  font-size: 0.9rem;
  font-weight: 1000;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}

.nav-link,
.mobile-link,
.footer-link {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-link {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(76, 59, 48, 0.7);
  font-size: 0.875rem;
  font-weight: 850;
  padding: 0.58rem 0.9rem;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(76, 59, 48, 0.12);
  color: #2b241f;
}

.mobile-link {
  border-bottom: 1px solid rgba(76, 59, 48, 0.1);
  color: rgba(76, 59, 48, 0.78);
  display: block;
  font-weight: 900;
  padding: 0.95rem 0;
}

.mobile-link.active {
  color: #58754d;
}

.footer-link {
  border: 1px solid rgba(76, 59, 48, 0.14);
  border-radius: 999px;
  color: rgba(76, 59, 48, 0.72);
  font-size: 0.8125rem;
  font-weight: 850;
  padding: 0.55rem 0.85rem;
}

.footer-link:hover {
  background: rgba(255, 255, 255, 0.68);
  color: #2b241f;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: transform 200ms ease, opacity 200ms ease;
  width: 18px;
}

.menu-lines::before {
  position: absolute;
  transform: translateY(-6px);
}

.menu-lines::after {
  position: absolute;
  transform: translateY(6px);
}

.menu-lines.open {
  transform: rotate(45deg);
}

.menu-lines.open::before {
  opacity: 0;
}

.menu-lines.open::after {
  transform: rotate(90deg);
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 248, 239, 0.9) 45%, rgba(255, 248, 239, 0.36) 100%),
    url("https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=2200&q=82") center right / cover;
}

.warm-waves {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
}

.warm-waves span {
  background: linear-gradient(90deg, transparent, rgba(232, 143, 104, 0.22), rgba(146, 180, 111, 0.24), transparent);
  height: 1px;
  position: absolute;
  right: -8vw;
  width: 58vw;
}

.warm-waves span:nth-child(1) {
  animation: waveMove 9s ease-in-out infinite;
  top: 34%;
  transform: rotate(-10deg);
}

.warm-waves span:nth-child(2) {
  animation: waveMove 11s ease-in-out infinite reverse;
  top: 48%;
  transform: rotate(8deg);
}

.warm-waves span:nth-child(3) {
  animation: waveMove 13s ease-in-out infinite;
  top: 64%;
  transform: rotate(-5deg);
}

@keyframes waveMove {
  0%,
  100% {
    opacity: 0.28;
    translate: 0 0;
  }
  50% {
    opacity: 0.92;
    translate: -6vw 0.5rem;
  }
}

.eyebrow,
.eyebrow-dark {
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow,
.eyebrow-dark {
  color: #58754d;
}

.primary-btn,
.secondary-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-btn {
  background: #58754d;
  color: #fffdf7;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(76, 59, 48, 0.16);
  color: #2b241f;
}

.secondary-btn:hover {
  background: #ffffff;
}

.section-pad {
  padding-bottom: clamp(5rem, 9vw, 8rem);
  padding-top: clamp(5rem, 9vw, 8rem);
}

.metric-row {
  border-top: 1px solid rgba(76, 59, 48, 0.16);
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0 0;
}

.metric-row span {
  color: #e88f68;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.metric-row strong {
  font-size: 1.2rem;
  font-weight: 950;
}

.metric-row em {
  color: rgba(76, 59, 48, 0.64);
  font-style: normal;
  line-height: 1.7;
}

.timeline {
  border-top: 1px solid rgba(76, 59, 48, 0.14);
}

.timeline-item {
  border-bottom: 1px solid rgba(76, 59, 48, 0.14);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 4rem 1fr;
  padding: 2rem 0;
}

.timeline-item span {
  color: #e88f68;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.timeline-item h3 {
  color: #2b241f;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 950;
}

.timeline-item p {
  color: rgba(76, 59, 48, 0.68);
  line-height: 1.8;
  margin-top: 0.6rem;
  max-width: 45rem;
}

.page-panel {
  background:
    linear-gradient(145deg, rgba(246, 197, 109, 0.2), transparent 30rem),
    linear-gradient(315deg, rgba(146, 180, 111, 0.16), transparent 28rem),
    #fff8ef;
}

.principle {
  align-items: start;
  border-bottom: 1px solid rgba(76, 59, 48, 0.14);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  padding: 1.35rem 0;
}

.principle strong {
  color: #2b241f;
  font-size: 1.15rem;
  font-weight: 950;
}

.principle span {
  color: rgba(76, 59, 48, 0.68);
  line-height: 1.85;
}

.value-mark {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(146, 180, 111, 0.24), rgba(246, 197, 109, 0.22)),
    #fff8ef;
  color: #58754d;
  display: flex;
  font-size: clamp(8rem, 22vw, 16rem);
  font-weight: 1000;
  justify-content: center;
  line-height: 1;
  min-height: 18rem;
}

.value-line {
  border-top: 1px solid rgba(76, 59, 48, 0.14);
  padding-top: 1.25rem;
}

.value-line p {
  color: #e88f68;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.value-line h2 {
  color: #2b241f;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 950;
  line-height: 1.05;
  margin-top: 0.75rem;
}

.value-line span {
  color: rgba(76, 59, 48, 0.68);
  display: block;
  line-height: 1.85;
  margin-top: 1rem;
}

.scene-band {
  border-top: 1px solid rgba(76, 59, 48, 0.14);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  padding-top: 2rem;
}

.scene-band p {
  color: #e88f68;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.scene-band h2 {
  color: #2b241f;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 950;
  line-height: 1.05;
  margin-top: 0.75rem;
}

.scene-band span {
  color: rgba(76, 59, 48, 0.72);
  font-size: 1.05rem;
  line-height: 1.9;
}

.page-enter-active,
.page-leave-active {
  transition: opacity 180ms ease, transform 180ms ease;
}

.page-enter-from,
.page-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

.reveal {
  animation: revealUp 620ms ease both;
}

.reveal:nth-child(2) {
  animation-delay: 60ms;
}

.reveal:nth-child(3) {
  animation-delay: 120ms;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .hero-section {
    background:
      linear-gradient(180deg, rgba(255, 248, 239, 0.99) 0%, rgba(255, 248, 239, 0.9) 48%, rgba(255, 248, 239, 0.58) 100%),
      url("https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=1200&q=82") center / cover;
  }

  .principle,
  .scene-band,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    gap: 0.5rem;
  }

  .value-mark {
    min-height: 12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
