﻿:root {
  color-scheme: light;
  --pj-color-navy-900: #0D1B2A;
  --pj-color-navy-800: #14263A;
  --pj-color-navy-700: #1E2F44;
  --pj-color-gold-600: #A9823F;
  --pj-color-gold-500: #C8A468;
  --pj-color-gold-300: #E2C98F;
  --pj-color-ivory-50: #F7F5F0;
  --pj-color-sand-100: #E8E2D6;
  --pj-color-sand-200: #D8CFBF;
  --pj-color-graphite-900: #2C2C2C;
  --bg: var(--pj-color-ivory-50);
  --bg-elevated: #FFFDF8;
  --surface: #FFFFFF;
  --surface-muted: var(--pj-color-sand-100);
  --ink: var(--pj-color-navy-900);
  --ink-soft: var(--pj-color-navy-700);
  --muted: #59616B;
  --line: var(--pj-color-sand-200);
  --line-strong: #BFAF96;
  --accent: var(--pj-color-gold-500);
  --accent-strong: var(--pj-color-gold-600);
  --accent-soft: rgba(200, 164, 104, 0.16);
  --blue: #315F86;
  --gold: var(--pj-color-gold-500);
  --danger: #9A3A32;
  --shadow: 0 24px 80px rgba(13, 27, 42, 0.12);
  --shadow-soft: 0 16px 48px rgba(13, 27, 42, 0.09);
  --radius: 8px;
  --radius-sm: 6px;
  --header-height: 78px;
  --container: 1180px;
  --focus: 0 0 0 3px rgba(200, 164, 104, 0.36);
  --font-body: Inter, Manrope, "Source Sans 3", Arial, sans-serif;
  --font-display: "Playfair Display", "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: var(--pj-color-navy-900);
  --bg-elevated: #14263A;
  --surface: #14263A;
  --surface-muted: var(--pj-color-navy-700);
  --ink: var(--pj-color-ivory-50);
  --ink-soft: #E7E0D3;
  --muted: #C9D0D8;
  --line: #38536F;
  --line-strong: #536E8A;
  --accent: var(--pj-color-gold-500);
  --accent-strong: var(--pj-color-gold-300);
  --accent-soft: rgba(200, 164, 104, 0.18);
  --blue: #7EA1C4;
  --gold: var(--pj-color-gold-300);
  --danger: #E59A91;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.24);
  --focus: 0 0 0 3px rgba(226, 201, 143, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: geometricPrecision;
  background:
    radial-gradient(circle at 8% 8%, rgba(200, 164, 104, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg));
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 0.24em;
}

a:hover {
  text-decoration-color: currentColor;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(22px) saturate(160%);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04);
}

.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: var(--radius);
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
  color: var(--ink);
}

.brand-wordmark__main {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-wordmark__sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

[data-theme="dark"] .brand-wordmark__sub {
  color: var(--pj-color-gold-300);
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
  background: var(--surface-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 260ms ease, opacity 260ms ease;
}

body.menu-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.theme-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 11px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.theme-toggle__icon {
  position: relative;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.theme-toggle__icon::after {
  content: "";
  position: absolute;
  inset: -2px -6px -2px 7px;
  border-radius: 50%;
  background: var(--surface);
}

[data-theme="dark"] .theme-toggle__icon::after {
  transform: translateX(-8px);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  text-decoration: none;
  font-weight: 760;
  line-height: 1.2;
  white-space: normal;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn--primary:hover {
  background: var(--pj-color-navy-700);
  border-color: var(--pj-color-navy-700);
}

[data-theme="dark"] .btn--primary {
  background: var(--pj-color-ivory-50);
  color: var(--pj-color-navy-900);
  border-color: var(--pj-color-ivory-50);
}

[data-theme="dark"] .btn--primary:hover {
  background: var(--pj-color-gold-300);
  border-color: var(--pj-color-gold-300);
}

.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: var(--accent);
  background: var(--surface-muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--accent-strong);
  font-weight: 760;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0;
}

.section--tight {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section--contrast {
  width: 100%;
  max-width: none;
  padding: 104px max(20px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(247, 245, 240, 0.14);
  border-bottom: 1px solid rgba(247, 245, 240, 0.14);
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(30, 47, 68, 0.96)),
    var(--pj-color-navy-900);
  color: var(--pj-color-ivory-50);
}

.section--contrast h2,
.section--contrast h3,
.section--contrast .booking__copy p {
  color: var(--pj-color-ivory-50);
}

.section--contrast .section-heading p,
.section--contrast .service-card p {
  color: rgba(247, 245, 240, 0.76);
}

.section--contrast .eyebrow,
.section--contrast .service-card span {
  color: var(--pj-color-gold-300);
}

.section--contrast .service-card {
  border-color: rgba(247, 245, 240, 0.16);
  background: rgba(247, 245, 240, 0.06);
}

.section--contrast .calendar-shell {
  background: var(--pj-color-ivory-50);
  color: var(--pj-color-navy-900);
}

.section--contrast .calendar-placeholder h3 {
  color: var(--pj-color-navy-900);
}

.section--contrast .calendar-placeholder p {
  color: #59616B;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 64px;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
  font-weight: 780;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 760;
}

p {
  color: var(--muted);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 76px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 86px;
}

.hero__content {
  max-width: 780px;
}

.hero__statement {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 76px;
  line-height: 0.98;
  font-weight: 700;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__tags li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 10px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pj-color-navy-900);
  box-shadow: var(--shadow);
  isolation: isolate;
  animation: heroFloat 9s ease-in-out infinite;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 34, 56, 0.02), rgba(20, 34, 56, 0.12));
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.01);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.large-copy {
  color: var(--ink-soft);
  font-size: 28px;
  line-height: 1.35;
}

.principles,
.service-grid,
.method__notes,
.audience__list {
  display: grid;
  gap: 16px;
}

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

.principles article,
.service-card,
.audience__list article,
.method__notes article,
.timeline article,
.legal-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.principles article {
  padding: 24px;
}

.principles span,
.timeline span,
.service-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.service-card p,
.principles p,
.method__notes p,
.audience__list p,
.timeline p {
  margin-bottom: 0;
}

.audience .section-heading,
.booking .booking__copy {
  width: min(760px, 100%);
}

.audience__list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience__list article {
  min-height: 230px;
  padding: 26px;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.method__panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  padding: 42px;
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.54)),
    url("assets/images/paszinger-jozsef-portrait-sm.webp") center 20% / cover;
  color: #ffffff;
  overflow: hidden;
}

.method__panel h2,
.method__panel p,
.method__panel .eyebrow {
  color: #ffffff;
}

.method__panel p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

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

.method__notes article {
  padding: 28px;
}

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

.timeline article {
  min-height: 250px;
  padding: 26px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.booking__copy p {
  font-size: 18px;
}

.calendar-shell {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.calendar-placeholder {
  min-height: 620px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 42px;
}

.calendar-placeholder p {
  max-width: 420px;
}

.calendar-shell.is-loading .calendar-placeholder {
  opacity: 0.72;
}

.calendar-shell .calendly-inline-widget {
  min-width: 320px;
  height: 680px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.84fr);
  gap: 56px;
  align-items: start;
}

.contact__intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.contact__intro h2 {
  max-width: 620px;
}

.contact__intro p {
  max-width: 520px;
  font-size: 18px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  color: var(--accent-strong);
  font-weight: 760;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 730;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: var(--bg-elevated);
  color: var(--ink);
  line-height: 1.35;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: var(--focus);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-strong);
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.form-status.is-error {
  color: var(--danger);
}

.form-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.faq__list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-strong);
  font-weight: 760;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.site-footer p {
  max-width: 460px;
  margin: 14px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-weight: 700;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 0;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: min(680px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(150%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 6px;
  font-size: 18px;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.legal-page .section {
  max-width: 980px;
}

.legal-hero {
  padding-top: 96px;
  padding-bottom: 42px;
}

.legal-hero h1 {
  max-width: 860px;
}

.legal-lead {
  max-width: 740px;
  font-size: 20px;
}

.legal-updated {
  color: var(--gold);
  font-weight: 730;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content article {
  padding: 28px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-table {
  width: 100%;
  margin: 18px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.legal-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table code {
  color: var(--ink);
  font-size: 0.92em;
}

.not-found {
  min-height: calc(100svh - var(--header-height) - 220px);
  display: grid;
  align-items: center;
}

.not-found__inner {
  max-width: 760px;
}

.not-found__inner p:not(.eyebrow) {
  font-size: 20px;
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 900ms ease;
}

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

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    gap: 48px;
  }

  .hero__statement {
    font-size: 62px;
  }

  .hero__media {
    min-height: 500px;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .nav-shell {
    width: min(var(--container), calc(100% - 28px));
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: 46px;
  }

  .nav-actions {
    grid-column: 3;
    justify-self: end;
  }

  .section,
  .section--tight {
    width: min(var(--container), calc(100% - 28px));
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section--contrast {
    width: 100%;
    padding: 82px 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__media {
    width: min(520px, 100%);
    min-height: 0;
    margin: 0 auto;
  }

  .intro__grid,
  .method,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact__intro {
    position: static;
  }

  .method__panel {
    min-height: 460px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .theme-toggle__label,
  .nav-actions .btn {
    display: none;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-wordmark__main {
    font-size: 21px;
  }

  .brand-wordmark__sub {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .section,
  .section--tight {
    width: calc(100% - 24px);
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section--contrast {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero__statement {
    font-size: 44px;
  }

  .hero__lead,
  .legal-lead,
  .not-found__inner p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero__actions,
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .large-copy {
    font-size: 23px;
  }

  .service-grid,
  .audience__list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .audience__list article,
  .timeline article,
  .principles article,
  .method__notes article,
  .legal-content article {
    padding: 22px;
  }

  .method__panel {
    min-height: 420px;
    padding: 26px;
  }

  .calendar-shell,
  .calendar-placeholder {
    min-height: 520px;
  }

  .calendar-placeholder {
    padding: 24px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero__statement {
    font-size: 38px;
  }

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Classic Compass web direction - 2026-07-23 */
.site-header {
  border-bottom-color: rgba(247, 245, 240, 0.14);
  background: rgba(13, 27, 42, 0.9);
  color: var(--pj-color-ivory-50);
  box-shadow: 0 14px 42px rgba(13, 27, 42, 0.18);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(200, 164, 104, 0.28);
  background: rgba(13, 27, 42, 0.94);
  box-shadow: 0 16px 44px rgba(13, 27, 42, 0.22);
}

.site-header .brand,
.site-header .brand-wordmark {
  color: var(--pj-color-ivory-50);
}

.site-header .brand-wordmark__sub {
  color: var(--pj-color-gold-300);
}

.site-header .primary-nav a {
  color: rgba(247, 245, 240, 0.78);
}

.site-header .primary-nav a:hover,
.site-header .primary-nav a:focus-visible {
  color: var(--pj-color-ivory-50);
  background: rgba(247, 245, 240, 0.1);
}

.site-header .theme-toggle,
.site-header .nav-toggle {
  border-color: rgba(247, 245, 240, 0.18);
  background: rgba(247, 245, 240, 0.08);
  color: var(--pj-color-ivory-50);
}

.site-header .theme-toggle__icon::after {
  background: var(--pj-color-navy-900);
}

.brand-symbol {
  border: 1px solid rgba(200, 164, 104, 0.28);
  background: var(--pj-color-navy-900);
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.18);
}

.btn--primary {
  background: linear-gradient(135deg, var(--pj-color-gold-300), var(--pj-color-gold-500) 48%, var(--pj-color-gold-600));
  color: var(--pj-color-navy-900);
  border-color: color-mix(in srgb, var(--pj-color-gold-500) 82%, var(--pj-color-navy-900));
  box-shadow: 0 14px 34px rgba(169, 130, 63, 0.26);
}

.btn--primary:hover,
[data-theme="dark"] .btn--primary:hover {
  background: linear-gradient(135deg, var(--pj-color-gold-500), var(--pj-color-gold-600));
  color: var(--pj-color-navy-900);
  border-color: var(--pj-color-gold-600);
}

[data-theme="dark"] .btn--primary {
  background: linear-gradient(135deg, var(--pj-color-gold-300), var(--pj-color-gold-500));
  color: var(--pj-color-navy-900);
  border-color: var(--pj-color-gold-500);
}

.hero--classic {
  width: 100%;
  max-width: none;
  position: relative;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.56fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(76px, 9vw, 124px) max(20px, calc((100vw - var(--container)) / 2)) clamp(58px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
  color: var(--pj-color-ivory-50);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.98) 0%, rgba(13, 27, 42, 0.9) 42%, rgba(13, 27, 42, 0.46) 100%),
    url("assets/images/pj-classic-hero-landscape.png") center / cover no-repeat,
    var(--pj-color-navy-900);
}

.hero--classic::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 104, 0.48), transparent);
}

.hero--classic .hero__content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero__mark {
  width: min(190px, 52vw);
  margin: 0 0 clamp(22px, 4vw, 36px);
}

.hero--classic h1 {
  color: rgba(247, 245, 240, 0.78);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero--classic .eyebrow {
  color: var(--pj-color-gold-300);
}

.hero--classic .hero__statement {
  max-width: 820px;
  color: var(--pj-color-ivory-50);
  font-size: clamp(48px, 7vw, 84px);
  text-wrap: balance;
}

.hero--classic .hero__lead {
  color: rgba(247, 245, 240, 0.82);
}

.hero--classic .btn--secondary {
  border-color: rgba(247, 245, 240, 0.28);
  background: rgba(247, 245, 240, 0.08);
  color: var(--pj-color-ivory-50);
}

.hero--classic .btn--secondary:hover {
  border-color: var(--pj-color-gold-300);
  background: rgba(247, 245, 240, 0.14);
}

.hero--classic .hero__tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
}

.hero--classic .hero__tags li {
  min-height: 104px;
  display: grid;
  align-content: start;
  gap: 6px;
  border-color: rgba(247, 245, 240, 0.16);
  background: rgba(247, 245, 240, 0.08);
  color: rgba(247, 245, 240, 0.78);
  backdrop-filter: blur(12px);
}

.hero--classic .hero__tags strong {
  color: var(--pj-color-gold-300);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero--classic .hero__tags span {
  font-size: 13px;
  line-height: 1.35;
}

.hero__media--brand {
  aspect-ratio: auto;
  min-height: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(200, 164, 104, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.74), rgba(13, 27, 42, 0.92)),
    rgba(247, 245, 240, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  animation: none;
  text-align: center;
}

.hero__media--brand::before {
  display: none;
}

.hero__media--brand img {
  width: min(260px, 78%);
  height: auto;
  object-fit: contain;
  transform: none;
}

.hero__media--brand p {
  margin: 0;
}

.hero__media--brand .hero__card-title {
  max-width: 360px;
  color: rgba(247, 245, 240, 0.86);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.12;
}

@media (max-width: 1100px) {
  .hero--classic {
    gap: 36px;
  }

  .hero--classic .hero__tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero--classic {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 62px 14px 72px;
    background-position: 58% center;
  }

  .site-header .primary-nav {
    border-color: rgba(247, 245, 240, 0.16);
    background: rgba(13, 27, 42, 0.96);
  }

  .hero__media--brand {
    width: min(460px, 100%);
  }
}

@media (max-width: 680px) {
  .hero--classic {
    padding-top: 52px;
  }

  .hero__mark {
    width: 138px;
  }

  .hero--classic .hero__statement {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero--classic .hero__tags {
    grid-template-columns: 1fr;
  }

  .hero--classic .hero__tags li {
    min-height: 0;
  }
}

/* Classic Compass full website refinement - 2026-07-23 */
body {
  background:
    linear-gradient(180deg, rgba(247, 245, 240, 0.94), rgba(232, 226, 214, 0.72)),
    var(--pj-color-ivory-50);
}

main {
  overflow: hidden;
}

.hero--classic {
  min-height: auto;
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: clamp(38px, 4vw, 58px);
}

.hero--classic .hero__statement {
  max-width: 740px;
  font-size: clamp(42px, 5.3vw, 70px);
  line-height: 1.03;
}

.hero--classic .hero__lead {
  max-width: 670px;
  font-size: clamp(17px, 1.35vw, 20px);
}

.hero--classic .hero__media:not(.hero__media--brand) {
  max-width: 420px;
  justify-self: end;
  border: 1px solid rgba(200, 164, 104, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.hero--classic .hero__media:not(.hero__media--brand) picture {
  width: 100%;
  height: 100%;
}

.hero--classic .hero__media:not(.hero__media--brand) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero__media--brand {
  max-width: 332px;
  justify-self: end;
}

.hero__media--brand img {
  width: min(180px, 68%);
}

.hero__media--brand .hero__card-title {
  font-size: clamp(22px, 2.2vw, 30px);
}

.hero__mark {
  width: min(168px, 48vw);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.hero--classic .hero__tags li {
  min-height: 86px;
  padding: 14px;
}

.hero-value__icon {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: var(--value-icon-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 50px;
}

.brand-essence {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(68px, 7vw, 98px) max(20px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(247, 245, 240, 0.12);
  border-bottom: 1px solid rgba(247, 245, 240, 0.12);
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.99), rgba(20, 38, 58, 0.96)),
    var(--pj-color-navy-900);
  color: var(--pj-color-ivory-50);
}

.brand-essence__inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 72px);
  align-items: start;
}

.brand-essence .eyebrow {
  color: var(--pj-color-gold-300);
}

.brand-essence h2 {
  max-width: 560px;
  color: var(--pj-color-ivory-50);
}

.brand-essence__lead {
  max-width: 560px;
  color: rgba(247, 245, 240, 0.78);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.brand-essence__values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(200, 164, 104, 0.34);
  border-bottom: 1px solid rgba(200, 164, 104, 0.2);
}

.brand-essence__values article {
  min-height: 224px;
  display: grid;
  align-content: start;
  padding: clamp(22px, 2.8vw, 34px);
  border-left: 1px solid rgba(200, 164, 104, 0.26);
}

.brand-essence__values article:first-child {
  border-left: 0;
}

.brand-essence__values h3 {
  margin-bottom: 8px;
  color: var(--pj-color-ivory-50);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-essence__values p {
  margin: 0;
  color: rgba(247, 245, 240, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.brand-value__icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  color: var(--pj-color-gold-300);
  background-color: transparent;
  background-image: var(--value-icon-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56px 56px;
}

.hero-value__icon--direction,
.brand-value__icon--direction {
  --value-icon-url: url("assets/icons/pj-value-direction.svg");
}

.hero-value__icon--awareness,
.brand-value__icon--awareness {
  --value-icon-url: url("assets/icons/pj-value-awareness.svg");
}

.hero-value__icon--growth,
.brand-value__icon--growth {
  --value-icon-url: url("assets/icons/pj-value-growth.svg");
}

.hero-value__icon--trust,
.brand-value__icon--trust {
  --value-icon-url: url("assets/icons/pj-value-trust.svg");
}

.section-heading {
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--pj-color-gold-500), rgba(200, 164, 104, 0));
}

.intro__grid--classic {
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}

.intro__portrait {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 104, 0.26);
  border-radius: 8px;
  background: var(--pj-color-navy-900);
  box-shadow: var(--shadow-soft);
}

.intro__portrait picture,
.intro__portrait img {
  width: 100%;
  height: 100%;
}

.intro__portrait img {
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.92) contrast(1.02);
}

.intro__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.02), rgba(13, 27, 42, 0.7));
  pointer-events: none;
}

.intro__portrait figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 2px;
  color: var(--pj-color-ivory-50);
}

.intro__portrait span {
  color: var(--pj-color-gold-300);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro__portrait strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
}

.large-copy {
  border-left: 2px solid var(--pj-color-gold-500);
  padding-left: clamp(20px, 3vw, 30px);
}

.principles article,
.service-card,
.audience__list article,
.method__notes article,
.timeline article,
.legal-content article,
details,
.contact-form,
.calendar-shell {
  border-color: rgba(191, 175, 150, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 245, 240, 0.9)),
    var(--surface);
  box-shadow: 0 18px 54px rgba(13, 27, 42, 0.08);
}

.principles article,
.service-card,
.timeline article {
  position: relative;
  overflow: hidden;
}

.principles article::before,
.service-card::before,
.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pj-color-gold-300), var(--pj-color-gold-600));
  opacity: 0.82;
}

.principles article,
.service-card,
.timeline article {
  padding-left: calc(28px + 3px);
}

.service-card h3,
.principles h3,
.timeline h3 {
  color: var(--pj-color-navy-900);
}

.service-card span,
.principles span,
.timeline span {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section--contrast {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(13, 27, 42, 0.9)),
    url("assets/images/pj-classic-hero-landscape.png") center / cover no-repeat,
    var(--pj-color-navy-900);
}

.section--contrast .service-card,
.section--contrast .timeline article {
  border-color: rgba(247, 245, 240, 0.16);
  background: rgba(247, 245, 240, 0.075);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.section--contrast .service-card h3,
.section--contrast .timeline h3 {
  color: var(--pj-color-ivory-50);
}

.booking {
  align-items: stretch;
}

.booking__copy {
  display: grid;
  align-content: center;
}

.calendar-shell {
  min-height: 560px;
}

.contact {
  padding-top: clamp(92px, 9vw, 126px);
}

.contact__intro {
  padding-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 253, 248, 0.86);
}

details {
  overflow: hidden;
}

summary {
  min-height: 66px;
}

details[open] {
  border-color: rgba(200, 164, 104, 0.48);
}

.site-footer {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 48px max(20px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(200, 164, 104, 0.24);
  background: var(--pj-color-navy-900);
  color: rgba(247, 245, 240, 0.78);
}

.site-footer .brand,
.site-footer .brand-wordmark,
.site-footer h2 {
  color: var(--pj-color-ivory-50);
}

.site-footer .brand-wordmark__sub,
.site-footer a:hover {
  color: var(--pj-color-gold-300);
}

[data-theme="dark"] body {
  background: var(--pj-color-navy-900);
}

[data-theme="dark"] .principles article,
[data-theme="dark"] .service-card,
[data-theme="dark"] .audience__list article,
[data-theme="dark"] .method__notes article,
[data-theme="dark"] .timeline article,
[data-theme="dark"] .legal-content article,
[data-theme="dark"] details,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .calendar-shell {
  border-color: rgba(200, 164, 104, 0.24);
  background:
    linear-gradient(180deg, rgba(20, 38, 58, 0.96), rgba(13, 27, 42, 0.9)),
    var(--surface);
}

[data-theme="dark"] .service-card h3,
[data-theme="dark"] .principles h3,
[data-theme="dark"] .timeline h3 {
  color: var(--pj-color-ivory-50);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: rgba(13, 27, 42, 0.7);
}

@media (max-width: 1100px) {
  .brand-essence__inner {
    grid-template-columns: 1fr;
  }

  .brand-essence__values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-essence__values article:nth-child(odd) {
    border-left: 0;
  }

  .intro__grid--classic {
    grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1fr);
  }

  .intro__grid--classic .principles {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero--classic {
    min-height: auto;
  }

  .hero__media--brand {
    justify-self: center;
  }

  .brand-essence {
    padding-right: 14px;
    padding-left: 14px;
  }

  .intro__grid--classic {
    grid-template-columns: 1fr;
  }

  .intro__grid--classic .principles {
    grid-template-columns: 1fr;
  }

  .intro__portrait {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .nav-actions {
    display: none;
  }

  .hero--classic {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero--classic .hero__content,
  .hero--classic .hero__media,
  .hero--classic .hero__lead,
  .hero--classic .hero__statement,
  .hero--classic .hero__actions,
  .hero--classic .hero__tags {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero--classic .hero__statement {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.08;
  }

  .hero--classic .hero__lead {
    overflow-wrap: break-word;
  }

  .hero--classic .hero__media {
    justify-self: center;
    max-width: 100%;
  }

  .brand-essence__values {
    grid-template-columns: 1fr;
  }

  .brand-essence__values article,
  .brand-essence__values article:nth-child(odd) {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(200, 164, 104, 0.2);
  }

  .brand-essence__values article:first-child {
    border-top: 0;
  }

  .intro__portrait {
    min-height: 380px;
  }

  .large-copy {
    padding-left: 18px;
  }

  .site-footer {
    padding-right: 12px;
    padding-left: 12px;
  }
}

