* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --bg-soft: #f2ede7;
  --bg-alt: #efe7dc;
  --text: #1e1e1e;
  --muted: #5f5f5f;
  --light-muted: #777;
  --accent: #b86952;
  --accent-deep: #9e573f;
  --line: #ded5ca;
  --card: #ffffff;
  --shadow: 0 16px 36px rgba(30, 20, 10, 0.06);
  --shadow-strong: 0 30px 60px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.45rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

p {
  margin-top: 0;
}

ul {
  padding-left: 20px;
  margin: 0;
}

li {
  margin-bottom: 10px;
  color: var(--muted);
}

a {
  color: inherit;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 980px;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(184, 105, 82, 0.09);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 600;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: rgba(247, 245, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(222, 213, 202, 0.7);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.logo span {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  color: var(--light-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #575757;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.cta,
.primary {
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(184, 105, 82, 0.18);
}

.cta:hover,
.primary:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  background: var(--accent-deep);
}

.secondary {
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.secondary:hover {
  background: #f0ebe5;
  border-color: #cfc3b7;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  padding: 110px 0 90px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.hero-left {
  max-width: 600px;
  text-align: left;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.subtext {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}

.micro {
  color: var(--light-muted);
  font-size: 0.96rem;
  max-width: 520px;
}

/* CARDS / PANELS */
.card,
.box,
.panel,
.signup-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(222, 213, 202, 0.45);
}

.box {
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.panel {
  padding: 30px;
  text-align: left;
}

.feature-panel p,
.panel p {
  margin-bottom: 14px;
}

.panel p:last-child,
.box p:last-child {
  margin-bottom: 0;
}

.step-box {
  position: relative;
  padding-top: 48px;
}

.step-number {
  position: absolute;
  top: 22px;
  left: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.box h3 {
  min-height: 56px;
}

/* SECTIONS */
.section {
  padding: 86px 0;
  text-align: center;
}

.section.alt {
  background: var(--bg-alt);
}

.section.soft {
  background: var(--bg-soft);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
  align-items: stretch;
}

.two-col {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 42px;
  text-align: left;
}

.two-col > div {
  flex: 1;
}

.two-col .panel {
  height: 100%;
}

/* FOUNDER */
.founder-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  text-align: left;
}

.founder-image-wrap {
  display: flex;
  justify-content: center;
}

.founder-image {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.founder-content {
  max-width: 520px;
}

.founder-meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
}

/* SIGNUP */
.signup {
  padding: 88px 0;
  text-align: center;
}

.signup-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 30px 30px;
  text-align: center;
}

.signup-text {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.calendly-inline-widget {
  width: 100%;
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
}

/* FOOTER */
.footer {
  padding: 34px 0 48px;
  color: var(--light-muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(222, 213, 202, 0.6);
}

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

.footer p {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav {
    position: static;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .section {
    padding: 62px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .two-col {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .founder-image-wrap {
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .box h3 {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .subtext {
    font-size: 1rem;
  }

  .cta,
  .primary,
  .secondary {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    width: 100%;
  }

  .signup-card,
  .box,
  .panel,
  .hero-image,
  .founder-image {
    border-radius: 20px;
  }
}