/* =========================================================
   Hypnosis New Zealand — site styles
   Edit the variables below to change colours and fonts.
   ========================================================= */
:root {
  --navy: #1C2C58;
  --navy-deep: #111D3E;
  --navy-soft: #2E4380;
  --gold: #C9A24A;
  --gold-light: #E7D3A0;
  --sand: #F6F2EA;
  --sand-dark: #EDE6D8;
  --ink: #1E2233;
  --muted: #5B6178;
  --line: rgba(28, 44, 88, 0.12);
  --white: #FFFFFF;
  --font-head: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(17, 29, 62, 0.12);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.container { width: min(var(--max), 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: #E8EBF5; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy a { color: var(--gold-light); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--navy-deep); }
.btn--primary:hover { box-shadow: 0 12px 25px rgba(201, 162, 74, .35); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-soft); }
.btn--outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,.1); }
.btn--outline-navy { border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn svg { width: 18px; height: 18px; }

/* =========== Header =========== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 82px; }
.logo img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-size: .93rem; font-weight: 500; color: var(--ink); position: relative; }
.nav a:hover { text-decoration: none; color: var(--navy); }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { padding: .65rem 1.3rem; font-size: .88rem; color: var(--white); }
.nav-toggle {
  display: none; background: none; border: 0; padding: .5rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 6px 0; transition: .3s; }

/* =========== Hero =========== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 85% 10%, #2B3F7A 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: var(--white);
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(4rem, 8vw, 7rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 10a50 50 0 1 1-50 50 40 40 0 1 1 40 40 30 30 0 1 1 30-30 20 20 0 1 1-20-20 10 10 0 1 1 10 10' fill='none' stroke='%23fff' stroke-opacity='.05' stroke-width='1.2'/%3E%3C/svg%3E") repeat;
  opacity: .9; pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: center; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__tagline {
  font-family: var(--font-head); font-size: 1.6rem; font-style: italic;
  color: var(--gold-light); margin-bottom: 1.4rem;
}
.hero__text { color: rgba(255,255,255,.82); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__visual { position: relative; }
.hero__ring {
  position: relative; width: min(100%, 460px); margin-inline: auto; aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35), 0 0 0 10px rgba(255,255,255,.06);
}
.hero__ring img { width: 100%; height: 100%; object-fit: cover; }
.hero__ring::after {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(201,162,74,.5); pointer-events: none;
}
.hero__badge {
  position: absolute; left: -10px; bottom: 30px;
  background: var(--white); color: var(--navy); border-radius: 14px;
  padding: .9rem 1.2rem; box-shadow: var(--shadow); max-width: 250px;
}
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 1.25rem; line-height: 1.1; }
.hero__badge span { font-size: .8rem; color: var(--muted); }

/* Conference banner */
.conference {
  position: relative; margin-top: 3.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem;
  padding: 1.2rem 1.6rem;
  border: 1px solid rgba(201,162,74,.45); border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}
.conference__label { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: .2rem; }
.conference__title { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin: 0; }
.conference__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* =========== Trust strip =========== */
.trust { background: var(--sand); border-bottom: 1px solid var(--line); }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-block: 2.6rem; }
.trust__item { display: flex; gap: 1rem; align-items: flex-start; }
.trust__icon {
  flex: 0 0 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold-light);
}
.trust__icon svg { width: 24px; height: 24px; }
.trust__item h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.trust__item p { margin: 0; font-size: .95rem; color: var(--muted); }

/* =========== Purpose / about membership =========== */
.purpose { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.purpose__quote {
  position: relative; padding: 2.5rem 2.5rem 2.5rem 3rem;
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1.7rem; line-height: 1.35; font-style: italic;
}
.purpose__quote::before {
  content: "\201C"; position: absolute; top: -.6rem; left: 1.2rem;
  font-size: 7rem; line-height: 1; color: var(--gold); font-family: var(--font-head);
}
.purpose__quote small { display: block; margin-top: 1.2rem; font-family: var(--font-body); font-style: normal; font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); }
.note {
  border-left: 3px solid var(--gold); padding: .6rem 1rem; background: var(--sand);
  border-radius: 0 10px 10px 0; font-size: .95rem; color: var(--muted); margin-top: 1.4rem;
}

/* =========== Membership tiers =========== */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.tier {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier__level { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .6rem; }
.tier h3 { font-size: 1.8rem; margin-bottom: .3rem; }
.tier__code { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.tier__intro { color: var(--muted); font-size: .97rem; }
.tier ul { margin: 1.2rem 0; display: grid; gap: .7rem; }
.tier li { position: relative; padding-left: 1.7rem; font-size: .97rem; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C2C58' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.tier__foot { margin-top: auto; padding-top: 1rem; }
.tier--featured { background: var(--navy); color: #E8EBF5; border-color: var(--navy); position: relative; }
.tier--featured h3, .tier--featured .tier__intro, .tier--featured .tier__code { color: var(--white); }
.tier--featured .tier__intro { color: rgba(255,255,255,.8); }
.tier--featured .tier__ribbon {
  position: absolute; top: 1.2rem; right: 1.2rem; background: var(--gold); color: var(--navy-deep);
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700;
  padding: .35rem .7rem; border-radius: 999px;
}
.tier--featured .note { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.tier--featured .note strong { color: var(--white); }
.tier--featured a:not(.btn) { color: var(--gold-light); }
.tiers-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 3rem; }

/* =========== Community & partners =========== */
.community { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.card h3 { font-size: 1.45rem; }
.card p { color: var(--muted); font-size: .97rem; margin: 0; }
.card .link { margin-top: auto; padding-top: 1rem; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.card .link svg { width: 16px; height: 16px; transition: transform .2s; }
.card .link:hover svg { transform: translateX(4px); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--sand); display: grid; place-items: center; color: var(--navy); margin-bottom: .4rem; }
.card__icon svg { width: 22px; height: 22px; }
.partner { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.5rem; padding: 1.6rem 2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.partner img { height: 64px; width: auto; }
.partner p { margin: 0; color: var(--muted); }

/* =========== Webinars & video =========== */
.webinar { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.video {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.4); background: #000;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.webinar p { color: rgba(255,255,255,.82); }

/* =========== Mailing list form =========== */
.signup {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow);
  margin-top: 4rem; display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: center;
  color: var(--ink);
}
.section--navy .signup h3, .signup h3 { font-size: 1.9rem; color: var(--navy); }
.signup p { color: var(--muted); margin: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form__field label { font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); }
.form__field input {
  font: inherit; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 10px; background: var(--sand);
}
.form__field input:focus { outline: 2px solid var(--gold); border-color: transparent; background: var(--white); }
.form__note { font-size: .8rem; color: var(--muted); margin-top: .8rem; }

/* =========== Free recordings callout =========== */
.callout {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
  padding: 2.4rem 2.6rem; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
  border: 1px solid var(--line);
}
.callout__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; }
.callout__icon svg { width: 34px; height: 34px; }
.callout h3 { font-size: 1.7rem; margin-bottom: .3rem; }
.callout p { margin: 0; color: var(--muted); }

/* =========== Training =========== */
.training { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; }
.courses { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.6rem 0; }
.courses li {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: .9rem 1.1rem;
  font-size: .95rem; display: flex; gap: .7rem; align-items: flex-start;
}
.courses li::before { content: ""; flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: .5em; }
.courses li a { font-weight: 600; }
.training__aside { display: grid; gap: 1.6rem; }
.badge-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; text-align: center; }
.badge-card img { margin-inline: auto; max-height: 240px; width: auto; }
.badge-card p { margin: 1rem 0 0; font-size: .92rem; color: var(--muted); }
.badge-card--mtf img { max-height: 120px; }

/* =========== Notices =========== */
.notices { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.notice { background: var(--sand); border-radius: var(--radius); padding: 1.8rem 2rem; font-size: .93rem; color: var(--muted); }
.notice h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.notice--wide { grid-column: 1 / -1; }
.notice p:last-child { margin: 0; }
.notice a { font-weight: 600; }

/* =========== Footer =========== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-block: 3rem 2rem; font-size: .9rem; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer a { color: var(--white); }
.footer__logo { background: var(--white); padding: .5rem .8rem; border-radius: 10px; display: inline-block; }
.footer__logo img { height: 34px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__bottom { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .82rem; }

/* =========== Responsive =========== */
@media (max-width: 1024px) {
  .hero__inner, .purpose, .webinar, .training, .signup { grid-template-columns: 1fr; gap: 2.5rem; }
  .tiers, .community, .trust__grid { grid-template-columns: 1fr 1fr; }
  .hero__visual { order: -1; }
  .hero__ring { width: min(100%, 360px); }
  .callout { grid-template-columns: auto 1fr; }
  .callout .btn { grid-column: 2; justify-self: start; }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 82px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .5rem 1.25rem 1.25rem; transform: translateY(-120%); transition: transform .3s; z-index: 40;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 1rem; justify-content: center; border: 0; }
  .nav-toggle { display: block; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .tiers, .community, .trust__grid, .courses, .notices, .form__row { grid-template-columns: 1fr; }
  .hero__badge { position: static; margin: 1.2rem auto 0; max-width: none; }
  .callout { grid-template-columns: 1fr; text-align: left; }
  .callout .btn { grid-column: auto; }
  .purpose__quote { font-size: 1.35rem; padding: 2rem 1.6rem 2rem 2rem; }
  .signup { padding: 1.8rem; }
}

/* Collapsible note (details/summary) */
.note--toggle { padding: 0; overflow: hidden; }
.note--toggle summary {
  cursor: pointer; list-style: none; padding: .75rem 1rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: .8rem;
}
.note--toggle summary::-webkit-details-marker { display: none; }
.note--toggle summary::after {
  content: ""; flex: 0 0 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform .25s; margin-top: -4px;
}
.note--toggle[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.note--toggle .note__body { padding: 0 1rem .9rem; }
.note--toggle .note__body p { margin: 0 0 .6rem; }
.note--toggle .note__body p:last-child { margin: 0; }
.tier--featured .note--toggle summary { color: var(--white); }

/* Click-to-play video poster */
.video__poster { position: absolute; inset: 0; display: block; }
.video__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.video__poster:hover img { transform: scale(1.03); }
.video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%; background: var(--gold); color: var(--navy-deep);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .2s, background .2s;
}
.video__play svg { width: 40px; height: 40px; margin-left: 4px; }
.video__poster:hover .video__play { transform: translate(-50%, -50%) scale(1.08); background: var(--gold-light); }

/* =========================================================
   Additions for the content-managed site: inner pages,
   people, training rows, contact form, owner-built sections.
   ========================================================= */
[hidden] { display: none !important; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-deep); padding: .6rem 1rem; z-index: 100; border-radius: 0 0 10px 0; font-weight: 600; }
.skip-link:focus { left: 0; }
.u-hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.logo img { height: 46px; width: auto; }
.logo--text { display: inline-flex; align-items: center; gap: .6rem; color: var(--navy); text-decoration: none; }
.logo--text:hover { text-decoration: none; }
.logo__words { display: grid; line-height: 1.05; }
.logo__name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; }
.logo__sub { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.footer__logo .logo img { height: 34px; }
.footer__logo .logo--text { color: var(--navy); }
.footer__social { display: inline-flex; align-items: center; gap: 1rem; }
.footer__social svg { display: block; }
.nav a[aria-current="page"] { color: var(--navy); }
.nav a[aria-current="page"]:not(.btn)::after { transform: scaleX(1); }
.container--narrow { max-width: 780px; }
.link { font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.link svg { transition: transform .2s; }
.link:hover svg { transform: translateX(4px); }
.btn svg { flex: none; }
.section__note { margin-top: 2rem; color: var(--muted); text-align: center; }
.section--navy .section-head h2, .section--navy .lead { color: var(--white); }
.section--navy .lead, .section--navy p { color: rgba(255,255,255,.82); }
.section--navy .card, .section--navy .col { color: var(--ink); }
.section--navy .card p, .section--navy .col p { color: var(--muted); }
.section--navy .callout h3 { color: var(--navy); }
.section--navy .callout p { color: var(--muted); }
.section--navy .section__note { color: rgba(255,255,255,.7); }
.section--navy .mrow h3 { color: var(--navy); }

/* Inner page banner */
.phero {
  position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(1200px 600px at 85% 10%, #2B3F7A 0%, var(--navy) 45%, var(--navy-deep) 100%);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.phero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .9;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 10a50 50 0 1 1-50 50 40 40 0 1 1 40 40 30 30 0 1 1 30-30 20 20 0 1 1-20-20 10 10 0 1 1 10 10' fill='none' stroke='%23fff' stroke-opacity='.05' stroke-width='1.2'/%3E%3C/svg%3E") repeat; }
.phero__inner { position: relative; display: grid; gap: 3rem; align-items: center; }
.phero__inner--media { grid-template-columns: 1.3fr .7fr; }
.phero .eyebrow { color: var(--gold-light); }
.phero h1 { color: var(--white); font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-bottom: .6rem; max-width: 18ch; }
.phero__sub { font-family: var(--font-head); font-size: 1.7rem; color: var(--gold-light); margin: 0 0 .8rem; }
.phero__lead { font-family: var(--font-head); font-size: 1.45rem; font-style: italic; color: var(--gold-light); max-width: 60ch; }
.phero__body { color: rgba(255,255,255,.82); max-width: 66ch; }
.phero__body a { color: var(--gold-light); text-decoration: underline; }
.phero__media { justify-self: center; }
.phero__media img { max-height: 260px; width: auto; border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.35); background: var(--white); }
.phero .btn--primary { margin-top: .5rem; }
.note--onnavy { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); }
.note--onnavy strong { color: var(--white); }

/* About: mission + people */
.mission { display: grid; gap: 3rem; align-items: start; }
.mission--media { grid-template-columns: 1.3fr .7fr; }
.mission h2 { margin-bottom: 1rem; }
.mission__media { margin: 0; }
.mission__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; }
.people { display: grid; gap: 1.6rem; }
.person { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.person__media img { width: 100%; height: auto; border-radius: 50%; aspect-ratio: 1; object-fit: cover; background: var(--sand); }
.person__placeholder { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; background: var(--sand); color: var(--navy); }
.person__body h3 { font-size: 1.8rem; margin-bottom: .1rem; }
.person__role { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.person__body p { color: var(--muted); }

/* Training rows */
.mrows { display: grid; gap: 1.6rem; }
.mrow { display: grid; grid-template-columns: 380px 1fr; gap: 2.5rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.mrow--flip { grid-template-columns: 1fr 380px; }
.mrow--flip .mrow__media { order: 2; }
.mrow__media img { width: 100%; height: auto; border-radius: 14px; background: var(--sand); }
.mrow__body h3 { font-size: 1.9rem; margin-bottom: .6rem; }
.mrow__body p { color: var(--muted); }
.mrow__detail { font-weight: 600; color: var(--navy) !important; }
.mrow .btn { margin-top: .4rem; }
.mrow:not(:has(.mrow__media)) { grid-template-columns: 1fr; }

/* Membership page tiers */
.tiers--full { grid-template-columns: repeat(3, 1fr); }
.tier__media { width: 110px; margin-bottom: 1.2rem; }
.tier__media img { width: 100%; height: auto; border-radius: 14px; }
.tier .tier__sub { font-family: var(--font-body); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin: 1.2rem 0 .5rem; }
.tier .checks { margin: 0 0 .4rem; display: grid; gap: .5rem; }
.tier .checks li { position: relative; padding-left: 1.7rem; font-size: .95rem; }
.tier .checks li::before { content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C2C58' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/10px no-repeat; }
.tier__fee { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; margin: 1.2rem 0 .3rem; color: var(--navy); }
.tier--featured .tier__fee { color: var(--gold-light); }
.tier__note { font-size: .85rem; color: var(--muted); }
.tier--featured .tier__note { color: rgba(255,255,255,.7); }
.tier--featured .tier__intro a { color: var(--gold-light); }

/* Generic checklist */
.checks { list-style: none; margin: .6rem 0 1rem; padding: 0; display: grid; gap: .5rem; }
.checks li { position: relative; padding-left: 1.7rem; font-size: .97rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: .42em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C2C58' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/10px no-repeat; }

/* Contact */
.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.contact__side { display: grid; gap: 1.2rem; }
.contact__side .card p { margin: 0; }
.contact__form h2 { margin-bottom: .4rem; }
.cform { margin-top: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.cform .form__field textarea { font: inherit; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 10px; background: var(--sand); resize: vertical; }
.cform .form__field textarea:focus { outline: 2px solid var(--gold); border-color: transparent; background: var(--white); }
.form__field--error input, .form__field--error textarea { border-color: #B23A3A; background: #FFF6F6; }
.form__err { font-size: .82rem; color: #B23A3A; }
.form__error { background: #FFF1F1; border-left: 3px solid #B23A3A; padding: .7rem 1rem; border-radius: 0 10px 10px 0; color: #8A2323; }
.form__sent { display: flex; gap: 1rem; align-items: center; margin-top: 1.5rem; padding: 1.6rem 2rem; background: var(--sand); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }
.form__sent p { margin: 0; }
.form__sent svg { color: var(--navy); flex: none; }
.form__note svg { vertical-align: -3px; margin-right: .2rem; }

/* Owner-built sections */
.community--2 { grid-template-columns: repeat(2, 1fr); }
.community--4 { grid-template-columns: repeat(4, 1fr); }
.card__media { margin: -2rem -2rem 1rem; }
.card__media img { width: 100%; height: auto; border-radius: var(--radius) var(--radius) 0 0; aspect-ratio: 16/10; object-fit: cover; }
.card__kicker { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.cols { display: grid; gap: 1.6rem; }
.cols--2 { grid-template-columns: repeat(2, 1fr); }
.cols--3 { grid-template-columns: repeat(3, 1fr); }
.cols--4 { grid-template-columns: repeat(4, 1fr); }
.col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.col h3 { font-size: 1.45rem; }
.col p { color: var(--muted); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; position: relative; }
.step__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--navy-deep); font-weight: 700; margin-bottom: 1rem; }
.step h3 { font-size: 1.4rem; }
.step p { color: var(--muted); }
.ilist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.ilist li { display: flex; gap: 1.2rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.ilist h3 { font-size: 1.35rem; margin-bottom: .3rem; }
.ilist p { color: var(--muted); margin: 0 0 .4rem; }
.purpose__quote--wide { max-width: 860px; margin-inline: auto; }
.purpose__quote--wide p { margin: 0 0 .6em; }

/* Preview frame editing aids */
.hnz-editable { cursor: pointer; outline: 1px dashed transparent; outline-offset: 3px; transition: outline-color .15s; }
.hnz-editable:hover { outline-color: rgba(201,162,74,.8); }
.hnz-inline .hnz-editable { cursor: text; outline-color: rgba(201,162,74,.5); }
.hnz-flash { animation: hnzflash 1.2s ease-out; }
@keyframes hnzflash { 0%,40% { background: rgba(201,162,74,.35); } 100% { background: transparent; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }

@media (max-width: 1024px) {
  .phero__inner--media, .mission--media, .contact { grid-template-columns: 1fr; }
  .phero__media { justify-self: start; }
  .mrow, .mrow--flip { grid-template-columns: 1fr; }
  .mrow--flip .mrow__media { order: 0; }
  .mrow__media img { max-width: 420px; }
  .tiers--full, .community--4, .cols--3, .cols--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .person { grid-template-columns: 1fr; padding: 1.6rem; }
  .person__media { max-width: 180px; }
  .tiers--full, .community--2, .community--4, .cols--2, .cols--3, .cols--4 { grid-template-columns: 1fr; }
  .mrow { padding: 1.4rem; }
  .cform { padding: 1.4rem; }
  .card__media { margin: -1.6rem -1.6rem 1rem; }
  .card { padding: 1.6rem; }
}

/* Free / Paid badge on every membership level (gold on the highlighted one). */
.tier .tier__ribbon { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--sand-dark); color: var(--navy); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; padding: .35rem .7rem; border-radius: 999px; }
.tier { position: relative; }
.tier--featured .tier__ribbon { background: var(--gold); color: var(--navy-deep); }

/* Heading levels follow the document outline; these keep the approved sizes. */
.trust__item h2 { font-size: 1.25rem; margin-bottom: .2rem; }
.tier h2 { font-size: 1.8rem; margin-bottom: .3rem; }
.tier--featured h2 { color: var(--white); }
.card h2 { font-size: 1.45rem; }
p, li, .notice, .card, .tier { overflow-wrap: anywhere; }
