:root {
  --ink: #1b1713;
  --paper: #f7f1e7;
  --paper-deep: #efe4d4;
  --sun: #ffb227;
  --sun-deep: #e58326;
  --cream: #fffaf2;
  --muted: #756b61;
  --line: rgba(38, 30, 23, .13);
  --dark-line: rgba(255, 249, 238, .16);
  --radius: 28px;
  --shadow: 0 24px 80px rgba(58, 39, 18, .12);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  border-bottom: 1px solid var(--dark-line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand sup { color: var(--sun); font-size: .56em; margin-left: 3px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: var(--sun);
}
.site-header nav { display: flex; align-items: center; gap: 28px; }
.site-header nav a { text-decoration: none; font-size: .92rem; }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 100px; }
.nav-cta:hover { background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  min-height: 790px;
  padding: 190px max(24px, calc((100vw - 1180px) / 2)) 50px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 179, 39, .12), transparent 23%),
    linear-gradient(145deg, #15120f 0%, #201a14 56%, #17120e 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.glow-one {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 120px;
  background: radial-gradient(circle at 30% 35%, rgba(255,203,90,.9), rgba(223,91,22,.2) 52%, transparent 70%);
  opacity: .35;
}
.glow-two {
  width: 130px;
  height: 130px;
  right: 23%;
  top: 31%;
  border: 1px solid rgba(255, 180, 39, .32);
  box-shadow: 0 0 80px rgba(255, 158, 31, .1), inset 0 0 55px rgba(255, 167, 31, .07);
}
.eyebrow, .section-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow { color: #e8d5bd; }
.eyebrow span { display: inline-block; width: 30px; height: 1px; background: var(--sun); }
.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 30px 0 26px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(3.25rem, 7.1vw, 6.75rem);
  line-height: .98;
  letter-spacing: -.07em;
  font-weight: 500;
}
.hero h1 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  color: var(--sun);
  letter-spacing: -.045em;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 655px;
  color: #d6c9b9;
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
}
.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 20px;
  border: 0;
  border-radius: 14px;
  font: 600 .96rem/1 "DM Sans", system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button-primary { background: var(--sun); color: #24180a; box-shadow: 0 12px 30px rgba(255, 161, 32, .18); }
.button-primary:hover:not(:disabled) { background: #ffc04b; box-shadow: 0 16px 36px rgba(255, 161, 32, .27); }
.button:disabled { opacity: .38; cursor: not-allowed; }
.text-link { color: #e5d7c6; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); padding: 8px 0; }
.event-strip {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.event-strip > div { padding: 21px 24px 22px 0; }
.event-strip > div + div { border-left: 1px solid var(--dark-line); padding-left: 26px; }
.detail-label { display: block; margin-bottom: 4px; color: #9f9284; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.event-strip strong { font-weight: 500; }

.gathering { padding: 118px max(24px, calc((100vw - 1180px) / 2)); background: var(--paper); }
.section-kicker { color: var(--sun-deep); margin-bottom: 30px; }
.gathering-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.gathering h2, .experience h2, .voices h2 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  margin: 0;
  font-weight: 500;
}
.gathering-copy > p { max-width: 610px; margin: 4px 0 35px; color: var(--muted); font-size: 1.13rem; }
.conversation-line { border-top: 1px solid var(--line); }
.conversation-line span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
}
.conversation-line span::before { content: "✦"; color: var(--sun-deep); margin-right: 15px; font-size: .78rem; }

.principles-zone {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 8% 16%, rgba(255,178,39,.1), transparent 27%),
    linear-gradient(145deg, #17130f, #211911);
  color: var(--cream);
}
.principles-intro > p { max-width: 510px; margin: 24px 0 0; color: #bdae9d; font-size: 1.02rem; }
.principles-zone h2 em, .note-zone h2 em { color: var(--sun); font-family: "Playfair Display", Georgia, serif; font-weight: 500; }
.principles-list { margin: 0; padding: 0; border-top: 1px solid var(--dark-line); list-style: none; }
.principles-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--dark-line);
}
.principles-list li > span { color: var(--sun); font: 700 .7rem "Manrope", system-ui, sans-serif; letter-spacing: .12em; }
.principles-list h3 { margin: -2px 0 4px; font: 600 1.05rem/1.3 "Manrope", system-ui, sans-serif; letter-spacing: -.02em; }
.principles-list p { margin: 0; color: #aa9d8e; font-size: .9rem; }

.experience { background: var(--cream); }
.reflection-zone { padding: 110px max(24px, calc((100vw - 1180px) / 2)) 125px; border-top: 1px solid var(--line); }
.experience-intro { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.experience-intro .section-kicker { justify-content: center; }
.experience-intro p { color: var(--muted); font-size: 1.05rem; }
.path-card, .result-card {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(50, 38, 25, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.path-card { padding: clamp(24px, 4.5vw, 50px); }
.progress-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.progress-track { height: 4px; border-radius: 4px; background: #eee7dd; margin-top: 11px; overflow: hidden; }
.progress-track span { display: block; width: 33.333%; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--sun-deep), var(--sun)); transition: width .35s ease; }
.question-stage { min-height: 385px; padding: 44px 0 22px; }
.question-stage h3 { margin: 0 0 9px; font: 600 clamp(1.7rem, 3vw, 2.5rem)/1.12 "Manrope", system-ui, sans-serif; letter-spacing: -.04em; }
.question-stage > p { margin: 0 0 28px; color: var(--muted); }
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.option {
  width: 100%;
  min-height: 98px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  text-align: left;
  background: #fffcf7;
  border: 1px solid #eae2d7;
  border-radius: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.option:hover { border-color: #cba164; transform: translateY(-1px); }
.option.selected { background: #fff5df; border-color: var(--sun-deep); box-shadow: inset 0 0 0 1px var(--sun-deep); }
.option:focus-visible { outline: 3px solid rgba(255,178,39,.35); outline-offset: 2px; }
.option-icon { display: grid; place-items: center; width: 38px; height: 38px; background: #f3eadb; border-radius: 50%; font-size: 1.15rem; }
.option.selected .option-icon { background: var(--sun); }
.option-copy strong { display: block; margin-bottom: 4px; font: 600 .98rem/1.25 "Manrope", system-ui, sans-serif; }
.option-copy span { color: var(--muted); font-size: .84rem; line-height: 1.3; }
.path-nav { display: flex; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.button-quiet { background: #f4eee5; color: var(--ink); }
.path-nav .button-primary { margin-left: auto; }

.result-card { padding: clamp(27px, 5vw, 56px); background: linear-gradient(145deg, #211a14, #14110e); color: var(--cream); }
.result-topline { display: flex; justify-content: space-between; align-items: center; color: var(--sun); text-transform: uppercase; letter-spacing: .12em; font: 700 .72rem "Manrope", system-ui, sans-serif; }
.restart-button { background: none; border: 0; color: #bcae9d; cursor: pointer; font: 500 .78rem "DM Sans", sans-serif; }
.result-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 76px); padding: 45px 0 38px; }
.result-icon { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid rgba(255,178,39,.4); border-radius: 50%; color: var(--sun); font-size: 1.45rem; box-shadow: 0 0 45px rgba(255,178,39,.12); }
.result-heading h3 { margin: 24px 0 15px; font: 500 clamp(2.4rem, 4.6vw, 4.2rem)/.98 "Manrope", system-ui, sans-serif; letter-spacing: -.055em; }
.result-heading p { color: #c8baaa; font-size: 1.03rem; }
.next-move { border-left: 1px solid var(--dark-line); padding-left: clamp(24px, 4vw, 45px); }
.next-move > span, .reflection-prompt span { color: var(--sun); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.next-move > p { margin: 12px 0 34px; font: 500 1.3rem/1.45 "Manrope", system-ui, sans-serif; }
.reflection-prompt { padding: 20px; border: 1px solid var(--dark-line); border-radius: 16px; background: rgba(255,255,255,.035); }
.reflection-prompt p { margin: 9px 0 0; color: #d0c2b2; }
.result-cta { width: 100%; }

.note-zone {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 8vw;
  align-items: start;
  padding: 118px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,178,39,.11), transparent 23%),
    var(--paper-deep);
}
.note-intro { position: sticky; top: 42px; }
.note-intro > p { max-width: 520px; margin: 24px 0 30px; color: var(--muted); font-size: 1.03rem; }
.note-path-status {
  display: inline-grid;
  gap: 2px;
  padding: 13px 17px;
  border: 1px solid rgba(229,131,38,.24);
  border-radius: 14px;
  background: rgba(255,250,242,.68);
}
.note-path-status span { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.note-path-status strong { color: var(--sun-deep); font: 600 .92rem "Manrope", system-ui, sans-serif; }
.note-workspace { min-width: 0; }
.note-form, .note-preview {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(50,38,25,.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.note-form { display: grid; background: var(--cream); }
.note-form label { margin: 0 0 8px; font: 600 .93rem "Manrope", system-ui, sans-serif; }
.note-form textarea {
  width: 100%;
  min-height: 88px;
  margin: 0 0 22px;
  padding: 15px 16px;
  resize: vertical;
  border: 1px solid #dfd4c5;
  border-radius: 13px;
  background: #fffdf9;
  color: var(--ink);
  font: 500 .96rem/1.5 "DM Sans", system-ui, sans-serif;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.note-form textarea::placeholder { color: #a79b8d; }
.note-form textarea:focus { outline: 0; border-color: var(--sun-deep); box-shadow: 0 0 0 3px rgba(255,178,39,.17); }
.note-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-top: 4px; }
.note-form-footer > span { max-width: 220px; color: var(--muted); font-size: .72rem; }
.note-form-footer > span span { color: var(--sun-deep); }
.note-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(255,178,39,.18), transparent 32%),
    linear-gradient(145deg, #211a14, #14110e);
  color: var(--cream);
}
.note-preview::before {
  content: "✦";
  position: absolute;
  right: -30px;
  bottom: -92px;
  color: rgba(255,178,39,.055);
  font-size: 15rem;
  line-height: 1;
}
.note-preview > * { position: relative; z-index: 1; }
.note-preview:focus { outline: 3px solid rgba(255,178,39,.45); outline-offset: 4px; }
.note-preview-topline { display: flex; justify-content: space-between; gap: 20px; color: var(--sun); font: 700 .67rem "Manrope", system-ui, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.note-preview h3 { margin: 34px 0 30px; font: 500 clamp(2.2rem, 4vw, 3.6rem)/1 "Manrope", system-ui, sans-serif; letter-spacing: -.055em; }
.note-preview dl { margin: 0; }
.note-preview dl > div { padding: 18px 0; border-top: 1px solid var(--dark-line); }
.note-preview dt { margin-bottom: 6px; color: var(--sun); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.note-preview dd { margin: 0; color: #eee2d3; font: 500 1.03rem/1.5 "Manrope", system-ui, sans-serif; overflow-wrap: anywhere; }
.note-signoff { margin: 24px 0 0; color: #aa9d8e; font-family: "Playfair Display", Georgia, serif; font-style: italic; }
.note-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 30px; }
.note-edit-button { padding: 11px 6px; border: 0; border-bottom: 1px solid #736555; background: none; color: #c8baaa; cursor: pointer; font: 600 .82rem "DM Sans", system-ui, sans-serif; }
.copy-status { min-height: 20px; margin: 12px 0 0; color: var(--sun); font-size: .76rem; }

.carry-zone {
  position: relative;
  isolation: isolate;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: linear-gradient(135deg, #ee9028, #de7720);
  color: #fff9ef;
  text-align: center;
}
.carry-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.carry-zone .section-kicker { justify-content: center; margin-bottom: 25px; }
.carry-zone h2 { max-width: 940px; font-family: "Playfair Display", Georgia, serif; font-weight: 500; font-size: clamp(2.25rem, 5vw, 4.8rem); line-height: 1.1; letter-spacing: -.04em; }
.carry-refresh { margin-top: 34px; padding: 11px 2px; border: 0; border-bottom: 1px solid rgba(255,255,255,.48); background: none; color: #fff7e8; cursor: pointer; font: 600 .86rem "DM Sans", system-ui, sans-serif; }
.carry-refresh:focus-visible, .note-edit-button:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; border-radius: 2px; }
.carry-orbit {
  position: absolute;
  z-index: -1;
  display: grid;
  place-items: center;
  width: min(52vw, 530px);
  height: min(52vw, 530px);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  color: rgba(255,255,255,.12);
  font-size: 3rem;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}

.circle-zone {
  padding: 118px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 15%, rgba(255,178,39,.11), transparent 23%),
    var(--paper);
}
.circle-shell {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid rgba(50,38,25,.11);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.circle-copy { padding: clamp(36px, 5.5vw, 72px); }
.circle-copy h2 em { color: var(--sun-deep); font-family: "Playfair Display", Georgia, serif; font-weight: 500; }
.circle-copy > p { max-width: 620px; margin: 26px 0 34px; color: var(--muted); font-size: 1.05rem; }
.circle-questions { display: grid; border-top: 1px solid var(--line); }
.circle-questions span { display: flex; align-items: center; min-height: 51px; border-bottom: 1px solid var(--line); font: 600 .9rem "Manrope", system-ui, sans-serif; }
.circle-questions span::before { content: "✦"; margin-right: 13px; color: var(--sun-deep); font-size: .68rem; }
.circle-invite {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 66px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,178,39,.22), transparent 35%),
    linear-gradient(145deg, #211a14, #14110e);
  color: var(--cream);
}
.circle-invite::after {
  content: "✦";
  position: absolute;
  right: -42px;
  bottom: -94px;
  color: rgba(255,178,39,.055);
  font-size: 17rem;
  line-height: 1;
}
.circle-invite > * { position: relative; z-index: 1; }
.circle-status { display: flex; align-items: center; gap: 9px; color: #d7c8b5; font-size: .76rem; }
.circle-status > span { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 6px rgba(255,178,39,.1); }
.circle-frequency { margin-top: 34px; color: var(--sun); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.circle-invite h3 { margin: 13px 0 20px; font: 500 clamp(2rem, 3.4vw, 3.15rem)/1.04 "Manrope", system-ui, sans-serif; letter-spacing: -.05em; }
.circle-invite p { max-width: 480px; margin: 0 0 28px; color: #c7b9a8; }
.circle-cta { width: 100%; }
.circle-invite small { margin-top: 17px; color: #8f8274; font-size: .72rem; text-align: center; }

.voices {
  position: relative;
  padding: 118px max(24px, calc((100vw - 1180px) / 2));
  color: var(--cream);
  background:
    radial-gradient(circle at 8% 22%, rgba(255,178,39,.10), transparent 25%),
    radial-gradient(circle at 92% 68%, rgba(229,131,38,.10), transparent 24%),
    linear-gradient(145deg, #17130f, #211911 62%, #15120f);
  overflow: hidden;
}
.voices-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 9vw; align-items: end; }
.voices h2 em, .proof-heading h2 em { color: var(--sun); font-family: "Playfair Display", Georgia, serif; font-weight: 500; }
.voices-intro > p { margin: 0 0 8px; color: #cdbfae; font-size: 1.1rem; }
.section-kicker.warm { color: var(--sun); }
.host-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 58px 0 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: #0b0908;
  box-shadow: 0 35px 100px rgba(0,0,0,.28);
}
.portrait-panel { position: relative; min-width: 0; overflow: hidden; background: #0c0a08; }
.portrait-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.portrait-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,9,.02) 42%, rgba(15,12,9,.86) 100%);
  pointer-events: none;
}
.portrait-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.012);
}
.avinash-portrait::before {
  background: radial-gradient(circle at 50% 25%, rgba(255, 205, 139, .17), transparent 31%);
  mix-blend-mode: screen;
}
.sneha-portrait::before {
  background: linear-gradient(145deg, rgba(255, 244, 224, .07), transparent 52%);
  mix-blend-mode: soft-light;
}
.avinash-portrait img {
  object-position: center 20%;
  filter: brightness(1.1) contrast(1.025) saturate(1.03);
}
.sneha-portrait img {
  object-position: center 23%;
  filter: brightness(1.045) contrast(1.035);
}
.portrait-panel > span {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 26px;
  display: grid;
  gap: 2px;
  color: #d8c7b1;
  font-size: .8rem;
}
.portrait-panel > span strong { color: var(--cream); font: 600 1.08rem "Manrope", system-ui, sans-serif; }
.host-visual figcaption {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(19,15,12,.62);
  color: #e6d8c7;
  font-size: .75rem;
  letter-spacing: .04em;
  text-align: center;
  backdrop-filter: blur(12px);
}
.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.profile-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.profile-number { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,178,39,.38); border-radius: 50%; color: var(--sun); font-size: .76rem; }
.profile-copy > span { color: var(--sun); font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.profile-copy h3 { margin: 12px 0 2px; font: 600 clamp(1.55rem, 2.4vw, 2.2rem)/1.1 "Manrope", system-ui, sans-serif; letter-spacing: -.035em; }
.profile-role { margin: 0 0 18px !important; color: #e1d0bc !important; font-size: .92rem !important; }
.profile-copy p { margin: 0; color: #bdae9d; font-size: .96rem; }
.proof { margin-top: 116px; }
.proof-heading { max-width: 780px; }
.proof-grid { display: grid; grid-template-columns: .82fr 1.18fr .92fr; gap: 16px; margin-top: 44px; align-items: stretch; }
.review-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 30px;
  border-radius: 22px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0,0,0,.14);
}
.review-card.featured-review { background: var(--sun); }
.quote-mark { height: 52px; color: var(--sun-deep); font: 500 4.6rem/.9 Georgia, serif; }
.featured-review .quote-mark { color: rgba(70,42,12,.48); }
.review-card > p { margin: 10px 0 30px; font: 500 clamp(1.08rem, 1.6vw, 1.34rem)/1.5 "Manrope", system-ui, sans-serif; letter-spacing: -.02em; }
.review-card cite { display: grid; gap: 2px; margin-top: auto; padding-top: 19px; border-top: 1px solid rgba(37,27,18,.12); font-style: normal; }
.review-card cite strong { font: 600 .94rem "Manrope", system-ui, sans-serif; }
.review-card cite span { color: var(--muted); font-size: .76rem; }
.featured-review cite span { color: rgba(36,24,9,.66); }
.review-note { margin: 16px 4px 0; color: #8f8274; font-size: .72rem; }
.faq {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 9vw;
  align-items: start;
  margin-top: 116px;
}
.faq-heading > p { max-width: 500px; margin: 24px 0 0; color: #bdae9d; }
.faq-list { border-top: 1px solid var(--dark-line); }
.faq-list details { border-bottom: 1px solid var(--dark-line); }
.faq-list summary {
  position: relative;
  padding: 22px 46px 22px 0;
  color: var(--cream);
  font: 600 clamp(1.02rem, 1.5vw, 1.2rem)/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: -.018em;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 1px;
  color: var(--sun);
  font: 400 1.6rem/1 "Manrope", system-ui, sans-serif;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary:focus-visible { outline: 2px solid var(--sun); outline-offset: 5px; border-radius: 2px; }
.faq-list details > p { margin: 0; padding: 0 46px 24px 0; color: #bdae9d; }
.closing-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  margin-top: 116px;
  padding: clamp(34px, 5.5vw, 70px);
  border-radius: 30px;
  background: linear-gradient(135deg, #ec8c25, var(--sun-deep));
  color: #fff7ec;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.section-kicker.light { color: #ffe5b7; }
.closing-panel > div:last-child { align-self: end; }
.closing-panel p { max-width: 520px; margin: 0 0 30px; color: #ffe7c8; font-size: 1.08rem; }
.booking-action { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; }
.qr-card { display: grid; gap: 8px; justify-items: center; color: #fff3df; font-size: .68rem; text-decoration: none; }
.qr-card img {
  width: clamp(112px, 11vw, 148px);
  height: auto;
  display: block;
  padding: 9px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(84,39,6,.20);
  transition: transform .2s ease, box-shadow .2s ease;
}
.qr-card:hover img { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(84,39,6,.28); }
.booking-copy { min-width: 0; }
.booking-copy p { margin-top: 0; }
.button-light { background: var(--cream); color: #4a280e; }
.button-light:hover { box-shadow: 0 14px 36px rgba(75,34,7,.18); }

.site-footer {
  padding: 82px max(24px, calc((100vw - 1180px) / 2)) 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255,178,39,.08), transparent 24%),
    #100d0b;
  color: #bbaa96;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 9vw;
  align-items: end;
  padding-bottom: 70px;
}
.footer-brand { color: var(--cream); }
.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-statement h2 {
  max-width: 800px;
  margin: 34px 0 22px;
  color: var(--cream);
  font: 500 clamp(2.7rem, 5.5vw, 5.8rem)/.98 "Manrope", system-ui, sans-serif;
  letter-spacing: -.065em;
}
.footer-statement h2 em { color: var(--sun); font-family: "Playfair Display", Georgia, serif; font-weight: 500; }
.footer-statement > p { max-width: 610px; margin: 0; color: #a99b8b; font-size: 1.02rem; }
.footer-signoff { padding-left: 28px; border-left: 1px solid var(--dark-line); }
.footer-signoff > span { color: var(--sun); font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.footer-signoff strong { display: block; margin: 14px 0; color: #f1e5d5; font: 600 clamp(1.35rem, 2vw, 1.8rem)/1.25 "Manrope", system-ui, sans-serif; letter-spacing: -.03em; }
.footer-signoff p { margin: 0; color: #8f8274; font-family: "Playfair Display", Georgia, serif; font-style: italic; }
.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 25px 0;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}
.footer-navigation { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.footer-navigation a, .footer-top-link { color: #c8baaa; font-size: .83rem; text-decoration: none; transition: color .18s ease; }
.footer-navigation a:hover, .footer-top-link:hover, .footer-legal a:hover { color: var(--sun); }
.footer-top-link { white-space: nowrap; }
.footer-legal {
  display: grid;
  grid-template-columns: 1.25fr 1fr .65fr;
  align-items: center;
  gap: 26px;
  padding-top: 27px;
  color: #766b60;
  font-size: .72rem;
}
.footer-legal p { margin: 0; }
.footer-legal nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 24px; }
.footer-legal a { color: #a99b8b; text-decoration: none; transition: color .18s ease; }
.footer-legal > span { text-align: right; }

@media (max-width: 820px) {
  .site-header { width: calc(100% - 36px); height: 76px; }
  .site-header nav > a:first-child, .circle-nav-link { display: none; }
  .hero { min-height: auto; padding-top: 148px; }
  .hero h1 { font-size: clamp(3.25rem, 13vw, 5.4rem); }
  .event-strip { grid-template-columns: 1fr 1fr; }
  .event-strip > div:last-child { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--dark-line); padding-left: 0; }
  .gathering, .principles-zone, .reflection-zone, .note-zone, .circle-zone, .voices { padding-top: 86px; padding-bottom: 90px; }
  .gathering-grid, .principles-zone, .note-zone, .voices-intro, .faq, .closing-panel { grid-template-columns: 1fr; gap: 42px; }
  .circle-shell { grid-template-columns: 1fr; }
  .note-intro { position: static; }
  .closing-panel > div:last-child { align-self: auto; }
  .host-visual { min-height: 480px; }
  .profiles-grid, .proof-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  .result-layout { grid-template-columns: 1fr; }
  .next-move { border-left: 0; border-top: 1px solid var(--dark-line); padding: 30px 0 0; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; }
  .footer-signoff { max-width: 420px; }
  .footer-legal { grid-template-columns: 1fr 1fr; }
  .footer-legal > span { display: none; }
}

@media (max-width: 560px) {
  .site-header nav { gap: 0; }
  .nav-cta { padding: 10px 13px; font-size: .82rem !important; }
  .brand { font-size: .93rem; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero h1 { margin-top: 24px; font-size: 3.55rem; }
  .hero-copy { font-size: 1.02rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .event-strip { grid-template-columns: 1fr; margin-top: 55px; }
  .event-strip > div, .event-strip > div + div { grid-column: auto; border-left: 0; border-top: 1px solid var(--dark-line); padding: 15px 0; }
  .event-strip > div:first-child { border-top: 0; }
  .gathering, .principles-zone, .reflection-zone, .note-zone, .carry-zone, .circle-zone, .voices { padding-left: 20px; padding-right: 20px; }
  .gathering h2, .experience h2, .voices h2 { font-size: 2.65rem; }
  .principles-list li { grid-template-columns: 38px 1fr; gap: 12px; }
  .path-card { padding: 21px; border-radius: 20px; }
  .question-stage { min-height: 0; padding-top: 34px; }
  .question-stage h3 { font-size: 1.75rem; }
  .options-grid { grid-template-columns: 1fr; }
  .option { min-height: 86px; }
  .path-nav .button { padding-left: 16px; padding-right: 16px; }
  .result-card { border-radius: 20px; }
  .result-topline { align-items: flex-start; gap: 16px; }
  .result-heading h3 { font-size: 2.65rem; }
  .note-form, .note-preview { padding: 24px 20px; border-radius: 20px; }
  .note-form-footer { align-items: flex-start; flex-direction: column; }
  .note-form-footer .button { width: 100%; }
  .note-preview-topline { align-items: flex-start; flex-direction: column; gap: 6px; }
  .note-actions { align-items: stretch; flex-direction: column; }
  .note-actions .button { width: 100%; }
  .note-edit-button { align-self: center; }
  .carry-zone { min-height: 430px; }
  .carry-zone h2 { font-size: 2.55rem; }
  .circle-shell { border-radius: 22px; }
  .circle-copy, .circle-invite { padding: 32px 24px; }
  .circle-invite h3 { font-size: 2.25rem; }
  .host-visual { grid-template-columns: 1fr; min-height: 0; padding-top: 66px; border-radius: 22px; }
  .portrait-panel { min-height: 0; aspect-ratio: 4 / 5; }
  .portrait-panel > span { left: 22px; bottom: 20px; }
  .host-visual figcaption { top: 11px; font-size: .66rem; }
  .profile-card { grid-template-columns: 1fr; padding: 26px; }
  .proof { margin-top: 86px; }
  .proof-grid { margin-top: 34px; }
  .faq { margin-top: 86px; }
  .faq-list summary { padding-top: 20px; padding-bottom: 20px; font-size: 1rem; }
  .faq-list summary::after { top: 17px; }
  .closing-panel { margin-top: 86px; padding: 30px 24px; border-radius: 22px; }
  .booking-action { gap: 16px; align-items: start; }
  .qr-card img { width: 106px; padding: 7px; border-radius: 13px; }
  .booking-copy p { font-size: .93rem; }
  .booking-copy .button { padding: 13px 15px; font-size: .8rem; line-height: 1.2; }
  .site-footer { padding-top: 68px; padding-left: 20px; padding-right: 20px; }
  .footer-main { padding-bottom: 52px; }
  .footer-statement h2 { font-size: 3.15rem; }
  .footer-signoff { padding: 24px 0 0; border-top: 1px solid var(--dark-line); border-left: 0; }
  .footer-links-row { align-items: flex-start; flex-direction: column; }
  .footer-navigation { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 15px 20px; }
  .footer-legal { grid-template-columns: 1fr; gap: 18px; }
  .footer-legal nav { justify-content: flex-start; }
}

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