
:root {
  --bg: #ead9c9;
  --cream: #f8f4ef;
  --ink: #141414;
  --muted: #6a5f57;
  --brown: #6b3f2a;
  --brown2: #4a2a1d;
  --line: rgba(20,20,20,0.12);
  --shadow: 0 18px 45px rgba(0,0,0,0.10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}

a { color: inherit; }
.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

.announce {
  background: #0f0f0f;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announce-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.announce-link { opacity: 0.9; }
.announce-link:hover { opacity: 1; text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(234,217,201,0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brown2);
}
.brand img {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.navlink {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
  opacity: 0.88;
}
.navlink:hover { opacity: 1; background: rgba(255,255,255,0.55); }
.navlink.active { opacity: 1; background: rgba(255,255,255,0.75); }
.navlink.cta {
  background: var(--brown2);
  color: var(--cream);
  opacity: 1;
}
.navlink.cta:hover { filter: brightness(1.05); }

.social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  color: var(--brown2);
}
.icon:hover { background: rgba(255,255,255,0.75); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brown2);
  margin: 4px 0;
  border-radius: 2px;
}

.hero {
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: relative;
  min-height: 72vh;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  background: #111;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.65), rgba(10,10,10,0.10));
}
.hero-content {
  position: relative;
  padding: 72px 0;
  color: #fff;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  margin: 0 0 14px;
}
.subhead {
  font-size: 16px;
  max-width: 52ch;
  opacity: 0.92;
  margin: 0 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn:hover { background: rgba(255,255,255,0.14); }
.btn.primary {
  border-color: transparent;
  background: var(--cream);
  color: var(--brown2);
}
.btn.primary:hover { filter: brightness(1.03); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.section { padding: 54px 0; }
.section-head h2 { margin: 0 0 8px; font-size: 28px; color: var(--brown2); }
.muted { color: var(--muted); }
.lead { font-size: 18px; max-width: 68ch; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.card-img {
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}
.card h3 { margin: 0 0 8px; font-size: 16px; }
.card p { margin: 0 0 10px; font-size: 13px; color: var(--muted); }
.card-link { font-size: 13px; text-decoration: none; color: var(--brown2); }
.card-link:hover { text-decoration: underline; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}
.frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
}
.frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bullets { padding-left: 18px; color: var(--muted); }
.bullets li { margin: 6px 0; }

.callout {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.page { padding: 40px 0 60px; }
.page h1 { margin: 18px 0 10px; font-size: 40px; color: var(--brown2); }

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.panel {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.panel h2 { margin-top: 0; color: var(--brown2); }
.embed {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px dashed rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.45);
}
.details summary { cursor: pointer; color: var(--brown2); margin: 12px 0; }
pre {
  overflow: auto;
  padding: 14px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  border-radius: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.price-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.07);
  position: relative;
}
.price-card.featured {
  background: rgba(255,255,255,0.75);
  border-color: rgba(0,0,0,0.16);
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brown2);
  color: var(--cream);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price {
  font-size: 34px;
  margin: 10px 0;
  color: var(--brown2);
}

.page-split { margin-top: 18px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.team-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}
.avatar {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
}

.faq details {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brown2);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
}
.footer-brand { font-weight: 800; color: var(--brown2); }
.footer-muted { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 12px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .social { display: none; }
  .nav-toggle { display: inline-block; justify-self: end; }
  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding: 10px 0 6px;
  }
  .nav.open { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
