/*
Theme Name: True North Guidance
Theme URI: https://truenorthguidance.nl/
Author: True North Guidance
Description: Modern one-page WordPress theme for True North Guidance with private coaching and business guidance sections.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: truenorthguidance
*/

:root {
  color-scheme: light;
  --ink: #102230;
  --muted: #58707c;
  --line: #dbe4e4;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --navy: #0c2b3a;
  --teal: #1e6b73;
  --blue: #2f7da7;
  --brass: #c79a4b;
  --brass-dark: #8c6932;
  --shadow: 0 18px 60px rgba(12, 43, 58, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(247, 245, 239, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(12, 43, 58, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--brass);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 38, 0.9), rgba(7, 27, 38, 0.55) 46%, rgba(7, 27, 38, 0.18)),
    linear-gradient(0deg, rgba(7, 27, 38, 0.5), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 72px;
  color: #fff;
}

.hero-brand {
  width: clamp(128px, 12vw, 180px);
  margin-bottom: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3.25rem, 6.8vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
}

.button.primary {
  background: var(--brass);
  color: #132330;
}

.button.primary:hover {
  background: #d9ad5f;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.video-toggle {
  font: inherit;
  cursor: pointer;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(76px, 9vw, 132px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro p:last-child,
.split-copy p,
.brand-showcase-copy p,
.business-heading p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.routes {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 7vw, 96px);
}

.route-intro h2 {
  max-width: 720px;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 154, 75, 0.6);
  background: #fff;
}

.route-card span {
  margin-bottom: auto;
  color: var(--brass-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 18px;
  font-size: 1.42rem;
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.anchor-offset {
  position: absolute;
  top: -88px;
}

.about-media {
  position: sticky;
  top: 96px;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-caption {
  margin-top: 18px;
  border-left: 3px solid var(--brass);
  padding: 18px 0 18px 20px;
}

.about-caption span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--brass-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-caption p {
  margin: 0;
  color: var(--muted);
}

.about-story {
  max-width: 820px;
}

.about-story h2 {
  margin-bottom: 26px;
}

.about-text {
  display: grid;
  gap: 16px;
}

.about-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-text .about-closing {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
}

.business {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.business-heading {
  position: sticky;
  top: 96px;
}

.business-heading h2 {
  margin-bottom: 24px;
}

.business-content {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.business-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.business-lines {
  display: grid;
  gap: 10px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.business-lines li {
  border-left: 3px solid var(--brass);
  padding-left: 16px;
  color: var(--ink);
  font-weight: 800;
}

.business-content .business-closing {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 900;
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding-top: 0;
}

.brand-showcase-copy h2 {
  margin-bottom: 24px;
}

.brand-visuals {
  display: grid;
  gap: 16px;
}

.brand-logo-panel,
.brand-cards-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.brand-logo-panel {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
}

.brand-logo-panel img {
  width: min(420px, 100%);
}

.brand-cards-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 0;
}

.pillar {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(150deg, rgba(12, 43, 58, 0.96), rgba(30, 107, 115, 0.8)),
    var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 26px 26px auto auto;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.pillar::after {
  content: "";
  position: absolute;
  inset: auto -30px -80px auto;
  width: 220px;
  height: 220px;
  border: 42px solid rgba(199, 154, 75, 0.18);
  border-radius: 50%;
}

.pillar:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(15, 55, 74, 0.95), rgba(47, 125, 167, 0.72)),
    var(--navy);
}

.pillar > * {
  position: relative;
  z-index: 1;
}

.pillar-number {
  margin-bottom: auto;
  color: var(--brass);
  font-weight: 900;
}

.pillar h2 {
  max-width: 9.5ch;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.pillar p {
  max-width: 650px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.split-copy h2 {
  margin-bottom: 24px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.method-grid div,
.outcome-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 42px rgba(12, 43, 58, 0.08);
}

.method-grid div {
  min-height: 190px;
  padding: 24px;
}

.method-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--brass-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-grid p,
.outcome-card p {
  margin: 0;
  color: var(--muted);
}

.quote-band {
  display: grid;
  min-height: 310px;
  place-items: center;
  padding: 56px 20px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.quote-band p {
  width: min(940px, 100%);
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.12;
}

.outcomes {
  display: grid;
  gap: 32px;
}

.outcome-intro {
  max-width: 760px;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.outcome-card {
  min-height: 230px;
  padding: 28px;
}

.outcome-card h3 {
  margin-bottom: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details a {
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--brass);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 800;
}

.contact-details span {
  color: var(--brass-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brass);
  outline: 3px solid rgba(199, 154, 75, 0.18);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 4vw, 56px);
  background: #081b26;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 27, 38, 0.9), rgba(7, 27, 38, 0.44)),
      linear-gradient(0deg, rgba(7, 27, 38, 0.68), transparent 40%);
  }

  .intro,
  .routes,
  .about,
  .business,
  .brand-showcase,
  .pillars,
  .split,
  .outcome-list,
  .contact {
    grid-template-columns: 1fr;
  }

  .pillar {
    min-height: 460px;
  }

  .about-media {
    position: static;
  }

  .business-heading {
    position: static;
  }

  .about-photo img {
    aspect-ratio: 16 / 11;
  }

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

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand span:last-child {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .section {
    width: calc(100% - 32px);
  }

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

  .pillar,
  .route-card,
  .business-content,
  .brand-logo-panel,
  .method-grid div,
  .outcome-card,
  .contact-form {
    padding: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
