:root {
  --cream: #f6f1e8;
  --cream-deep: #efe6d8;
  --paper: #fbf7f0;
  --ink: #2f2b26;
  --ink-soft: #5c564c;
  --gold: #b08d57;
  --gold-deep: #8f7040;
  --forest: #2f3c34;
  --forest-deep: #24302a;
  --sage: #6d7b6a;
  --line: rgba(47, 43, 38, 0.12);
  --shadow: 0 18px 50px rgba(47, 43, 38, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--cream); }

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 24px;
  box-sizing: border-box;
}
.logo.nk-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  min-width: 0;
}
.logo.nk-logo svg {
  height: 84px;
  width: auto;
  max-width: min(200px, 46vw);
  overflow: visible;
  display: block;
}
.logo.nk-logo .logo-nk { fill: #c4a056; }
.logo.nk-logo .logo-sub { fill: #5a6848; }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--forest);
  color: var(--cream);
  border: 0;
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--forest-deep); }
.burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}
.menu-panel { position: fixed; inset: 0; z-index: 70; display: none; }
.menu-panel.open { display: block; }
.menu-backdrop { position: absolute; inset: 0; background: rgba(36, 48, 42, 0.45); }
.menu-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100%;
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-card a {
  font-family: var(--serif);
  font-size: 28px;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}
.menu-card a:hover { color: var(--gold-deep); }
.menu-close { align-self: flex-end; border: 0; background: none; font-size: 28px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--cream);
  border: 0;
  padding: 15px 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--forest-deep); }
.btn svg { width: 14px; height: 14px; }
.fine-print {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.center { text-align: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}

/* Sections have a clear band */
.band {
  padding: 88px 0;
  scroll-margin-top: 108px;
}
.band-paper { background: var(--paper); }
.band-cream { background: var(--cream); }
.band-deep { background: var(--cream-deep); }
.band-rule { border-top: 1px solid var(--line); }

/* Hero — contained, not a full-viewport takeover */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 7vw 56px 8vw;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gold-deep);
}
.hero h1 em { font-style: italic; color: var(--ink); }
.hero-lead {
  margin-top: 22px;
  max-width: 420px;
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
}
.hero-actions { margin-top: 28px; }
.hero-visual {
  min-height: 420px;
  max-height: 560px;
  overflow: hidden;
  background: #e7ddd0;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 62% 50%;
}
.mobile-break { display: none; }

/* More to life */
.more-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.more-copy h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--forest);
}
.more-sub {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
}
.more-body { margin-top: 22px; color: var(--ink-soft); }
.more-lead { margin-top: 18px; color: var(--ink); }
.more-questions {
  margin: 16px 0 22px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  list-style: none;
}
.more-questions li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin: 6px 0;
}
.more-under { color: var(--ink-soft); }
.more-deeper {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-deep);
}
.more-close {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
}
.more-visual {
  position: relative;
  background: #ece4d6;
  min-height: 420px;
  overflow: hidden;
}
.more-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.more-badge {
  position: absolute;
  right: 20px;
  bottom: 28px;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Recognition — two editorial columns + photo */
.recog-head { text-align: center; max-width: 22ch; margin: 0 auto 48px; }
.recog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 0;
  align-items: start;
}
.recog-col { padding: 0 32px; }
.recog-col + .recog-col { border-left: 1px solid rgba(176, 141, 87, 0.35); }
.recog-col h3 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  font-weight: 500;
}
.check-list, .dot-list { list-style: none; }
.check-list li, .dot-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}
.check-list li::before,
.work-on li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background: none;
}
.check-list li::after,
.work-on li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.42em;
  width: 5px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
.recog-photo {
  padding-left: 28px;
}
.recog-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.recog-close {
  margin-top: 48px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* Method — type only */
.method {
  background: var(--forest);
  color: var(--cream);
  padding: 88px 0;
  scroll-margin-top: 108px;
}
.method .kicker { color: #d7c39a; }
.method .section-title { color: var(--cream); text-align: center; }
.method .sub {
  text-align: center;
  margin-top: 10px;
  color: rgba(246, 241, 232, 0.72);
  font-size: 15px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}
.step {
  text-align: left;
  padding: 0 12px;
  border-top: 1px solid rgba(215, 195, 154, 0.35);
  padding-top: 22px;
}
.step-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: #d7c39a;
}
.step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 12px 0 14px;
}
.step p { color: rgba(246, 241, 232, 0.78); font-size: 15px; }
.step em {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  color: #d7c39a;
}

/* 1:1 Coaching — brief layout */
.coaching-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.coaching h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin: 8px 0 18px;
}
.coaching-intro {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.work-label {
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}
.work-on {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 22px;
}
.work-on li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink);
}
.coaching-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
}
.aside-card {
  background: var(--cream);
  border: 0;
  padding: 8px 8px 8px 12px;
}
.aside-card h3 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--gold-deep);
  font-weight: 500;
  line-height: 1.5;
}
.aside-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.aside-item + .aside-item { margin-top: 22px; }
.aside-mark {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(176, 141, 87, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}
.aside-mark svg { width: 16px; height: 16px; }
.aside-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.aside-item p { font-size: 14px; color: var(--ink-soft); }

/* About */
.why {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.why h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 22px;
}
.why h2 em { font-style: italic; }
.why p + p { margin-top: 16px; }
.why p { color: var(--ink-soft); }
.polaroids { position: relative; height: 360px; }
.polaroid {
  position: absolute;
  width: 210px;
  background: #fff;
  padding: 12px 12px 36px;
  box-shadow: var(--shadow);
}
.polaroid img { width: 100%; height: 168px; object-fit: cover; }
.polaroid:nth-child(1) { left: 10px; top: 28px; transform: rotate(-8deg); }
.polaroid:nth-child(2) { right: 8px; top: 78px; transform: rotate(7deg); }
.branch {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 150px;
  opacity: 0.85;
  pointer-events: none;
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
}
.quote footer {
  margin-top: 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 0;
  font-size: 16px;
  cursor: pointer;
  color: var(--ink);
}
.faq-item .plus { color: var(--gold-deep); font-size: 22px; line-height: 1; }
.faq-item .answer {
  display: none;
  padding: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq-item.open .answer { display: block; }
.faq-item.open .plus { transform: rotate(45deg); }

/* Close — same language as hero, smaller footprint */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-copy {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-copy h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  max-width: 12ch;
}
.footer-copy .ready {
  margin: 14px 0 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(246, 241, 232, 0.8);
}
.footer-visual { position: relative; }
.footer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 340px;
}
.footer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--forest-deep), transparent 42%);
}
.legal {
  text-align: center;
  padding: 14px;
  font-size: 12px;
  color: rgba(246, 241, 232, 0.45);
  background: #1c2621;
}

.to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 40;
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}
.to-top.is-on { display: grid; }
.to-top:hover { background: var(--forest); color: var(--cream); }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}
.modal.open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 48, 42, 0.55);
}
.modal-card {
  position: relative;
  width: min(520px, 100%);
  background: var(--paper);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow);
}
.modal-card h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 6px;
}
.modal-card p { color: var(--ink-soft); margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 96px; resize: vertical; }
.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink-soft);
}
.form-success { display: none; text-align: center; padding: 24px 8px; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
}

/* Intro gate */
.intro {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px 28px 28px;
  background: var(--cream);
}
.intro .logo-mark {
  display: block;
  text-decoration: none;
  line-height: 0;
  justify-self: start;
}
.intro .logo-mark svg { height: 110px; width: auto; overflow: visible; display: block; }
.intro .logo-mark .logo-nk { fill: #c4a056; }
.intro .logo-mark .logo-sub { fill: #5a6848; }
.intro-main { display: grid; place-items: center; text-align: center; }
.intro-main h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.15;
  color: var(--ink);
}
.intro-main .line2 {
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.intro-cta { justify-self: end; align-self: end; }
.intro .btn { background: var(--ink); }

@media (max-width: 1080px) {
  .recog-grid, .coaching-grid { grid-template-columns: 1fr 1fr; }
  .recog-photo { grid-column: 1 / -1; padding: 28px 0 0; }
  .recog-photo img { min-height: 280px; }
  .coaching-grid .aside-card { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .hero, .more-grid, .why, .footer-inner, .quotes, .steps, .recog-grid, .coaching-grid, .work-on {
    grid-template-columns: 1fr;
  }
  .header-inner { width: 100%; }
  .wrap { width: calc(100% - 32px); }
  .hero-copy { padding: 36px 24px 28px; }
  .hero-visual, .hero-visual img, .more-visual, .more-visual img {
    min-height: 0;
    height: 240px;
    max-height: 240px;
  }
  .hero h1 { font-size: 34px; }
  .mobile-break { display: block; }
  .header-cta { font-size: 11px; padding: 10px 12px; }
  .header-cta .cta-full { display: none; }
  .header-cta::after { content: "Book"; letter-spacing: 0.16em; }
  .logo.nk-logo svg { height: 52px; max-width: 120px; }
  .band, .method { padding: 56px 0; }
  .recog-col, .recog-col + .recog-col { padding: 0; border-left: 0; }
  .recog-col + .recog-col { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(176, 141, 87, 0.35); }
  .recog-photo { padding: 28px 0 0; }
  .photo-frame img, .footer-visual img { min-height: 0; height: 240px; max-height: 240px; }
  .footer-copy { padding: 40px 24px; }
  .polaroids { height: 280px; margin-top: 12px; }
  .more-badge { right: 12px; bottom: 16px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .polaroid { width: 170px; }
  .logo.nk-logo svg { height: 42px; max-width: 100px; }
  .header-cta { display: none; }
}
