:root {
  --bg: #f9f7f1;
  --surface: #ffffff;
  --surface-strong: #f3f1e8;
  --text: #2e2b28;
  --muted: #7e6f5b;
  --line: #ddd5c8;
  --brand-1: #ff914d;
  --brand-2: #ffbd59;
  --maxw: 1120px;
  --r-lg: 28px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow-soft: 0 18px 45px rgba(43, 33, 22, 0.06);
  --shadow-strong: 0 25px 60px rgba(43, 33, 22, 0.12);
  --heading-font: "Poppins", "Segoe UI", Arial, sans-serif;
  --body-font: "Poppins", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: radial-gradient(circle at 12% 8%, #fff5da 0%, transparent 35%),
    radial-gradient(circle at 85% 12%, #ffe3ca 0%, transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
}

#fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, white);
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex-shrink: 0;
}

.wordmark {
  width: 100px;
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 8px 14px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.96rem;
  font-weight: 500;
}

.btn-nav {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
}

main {
  padding-bottom: 72px;
}

.hero {
  padding: 110px 0 72px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-1);
}

.hero-title {
  margin: 14px auto 0;
  max-width: 16ch;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.caret {
  color: var(--brand-1);
  font-weight: 400;
  animation: blink 0.9s steps(1, end) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-subtitle {
  max-width: 62ch;
  margin: 22px auto 0;
  color: var(--muted);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-1), #ffab55);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.section {
  padding: 48px 0 16px;
}

.section-head {
  max-width: 72ch;
}

.section-head h2 {
  margin: 10px 0 0;
  line-height: 1.2;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
}

.philosophy-panel {
  margin-top: 28px;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--line) 74%, #fff);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 173, 103, 0.22), transparent 36%),
    radial-gradient(circle at 95% 20%, rgba(255, 202, 130, 0.2), transparent 32%),
    linear-gradient(145deg, #fffef9 0%, #fff7ea 60%, #ffefda 100%);
  box-shadow: 0 30px 70px rgba(61, 42, 22, 0.12);
  padding: 34px;
}

.philosophy-core {
  text-align: center;
  border: 1px solid #efcfaa;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf7, #fff2de);
  box-shadow: 0 14px 38px rgba(66, 42, 17, 0.13);
  padding: 20px 22px;
  max-width: 560px;
  margin: 0 auto;
}

.core-kicker {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.core-line {
  margin: 8px 0 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.28rem;
}

.core-note {
  margin: 10px auto 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.philosophy-rail {
  width: min(880px, 92%);
  height: 1px;
  margin: 28px auto 26px;
  background: linear-gradient(90deg, transparent 0%, #efc995 20%, #e4af66 50%, #efc995 80%, transparent 100%);
  opacity: 0.8;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.philosophy-card {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--line) 70%, #fff);
  border-radius: 18px;
  background: color-mix(in srgb, #fff 93%, #fff2e0);
  box-shadow: 0 12px 30px rgba(58, 41, 20, 0.11);
  padding: 20px 18px;
}

.philosophy-card::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-1);
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 5px rgba(255, 145, 77, 0.16);
}

.philosophy-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.philosophy-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pod-spotlight {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #fff, #fff8ed);
  box-shadow: var(--shadow-soft);
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.pill {
  margin: 0;
  display: inline-flex;
  background: #fff;
  border: 1px solid #ffc598;
  color: #9c5d2c;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.pod-main h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.pod-main p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.experience-btn {
  margin-top: 20px;
  padding: 16px 34px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.inline-link {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px 14px;
}

.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.field-error {
  min-height: 1.15em;
  font-size: 0.84rem;
  color: #b43f2e;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(12px);
  background: #191612;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 919px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 8px);
    width: min(var(--maxw), 92vw);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fffbf2;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    padding: 10px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
  }

  .btn-nav {
    text-align: center;
  }

  .philosophy-panel {
    padding: 22px 16px 16px;
    border-radius: 22px;
  }

  .philosophy-core {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .philosophy-rail {
    margin: 16px auto 14px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .philosophy-card::before {
    left: 16px;
    transform: none;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
