:root {
  --ink: #17263c;
  --ink-soft: #3b4b61;
  --paper: #fbf7ef;
  --paper-deep: #efe6d9;
  --white: #ffffff;
  --saffron: #d88b2b;
  --accent-text: #9e3f4b;
  --gold: #d5b16f;
  --sky: #dde7ef;
  --muted: #596978;
  --line: rgba(23, 38, 60, 0.15);
  --shadow: 0 24px 70px rgba(23, 38, 60, 0.12);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 42px;
  --shell: min(1180px, calc(100vw - 40px));
  --transition: 220ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  box-shadow: 0 0 0 6px var(--white);
  outline: 3px solid var(--accent-text);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

p {
  margin: 0 0 1.3em;
}

.shell {
  margin-inline: auto;
  width: var(--shell);
}

.section {
  padding-block: clamp(72px, 9vw, 132px);
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.74rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--saffron);
  border-radius: 999px;
  content: "";
  height: 7px;
  width: 7px;
}

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

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 18px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  z-index: 99999;
}

.skip-link:focus {
  top: 18px;
}

.button,
.wp-element-button,
button[type="submit"] {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 750;
  gap: 12px;
  justify-content: center;
  line-height: 1;
  min-height: 52px;
  padding: 0 24px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(216, 139, 43, 0.24);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.button--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.91rem;
  font-weight: 750;
  gap: 9px;
  text-decoration: none;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

/* Header */
.site-header {
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid transparent;
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  transition: border-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  z-index: 1000;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 38, 60, 0.06);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  text-decoration: none;
}

.brand__mark {
  align-items: center;
  background: var(--ink);
  border-radius: 12px 12px 12px 2px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 850;
  height: 38px;
  justify-content: center;
  position: relative;
  transform: rotate(-4deg);
  width: 38px;
}

.brand__mark::after {
  background: var(--saffron);
  border: 3px solid var(--paper);
  border-radius: 50%;
  content: "";
  height: 12px;
  position: absolute;
  right: -5px;
  top: -4px;
  width: 12px;
}

.brand__word {
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.brand__word span {
  color: var(--accent-text);
}

.custom-logo-link img {
  max-height: 54px;
  width: auto;
}

.primary-nav,
.primary-nav .menu {
  align-items: center;
  display: flex;
}

.primary-nav {
  gap: 30px;
}

.primary-nav .menu {
  gap: clamp(16px, 2vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu-item {
  position: relative;
}

.primary-nav .menu a {
  display: block;
  font-size: 0.88rem;
  font-weight: 680;
  padding-block: 14px;
  text-decoration: none;
}

.primary-nav .menu a::after {
  background: var(--saffron);
  bottom: 9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  width: 100%;
}

.primary-nav .menu a:hover::after,
.primary-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .sub-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  left: -18px;
  list-style: none;
  min-width: 220px;
  padding: 10px 18px;
  position: absolute;
  top: 100%;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  display: block;
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  margin-block: 6px;
  transition: transform var(--transition);
  width: 24px;
}

/* Hero */
.hero {
  overflow: clip;
  padding-top: clamp(62px, 7vw, 104px);
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, rgba(216, 139, 43, 0.14) 0 2px, transparent 2.5px);
  background-size: 24px 24px;
  content: "";
  height: 210px;
  opacity: 0.5;
  position: absolute;
  right: -30px;
  top: 60px;
  width: 260px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6vw, 84px);
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__lead {
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  line-height: 1.65;
  max-width: 660px;
}

.hero .button-row {
  margin-top: 34px;
}

.proof-strip {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  padding-top: 24px;
}

.proof-strip div {
  display: flex;
  flex-direction: column;
}

.proof-strip strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.77rem;
}

.hero-art {
  min-height: 620px;
  position: relative;
}

.route-line {
  align-items: center;
  display: flex;
  font-size: 0.68rem;
  font-weight: 850;
  gap: 9px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 20px;
  top: 14px;
  transform: rotate(5deg);
  z-index: 3;
}

.route-line i {
  border-top: 1px dashed var(--ink);
  display: block;
  position: relative;
  width: 72px;
}

.route-line i::after {
  background: var(--saffron);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 48%;
  position: absolute;
  top: -3px;
  width: 6px;
}

.editorial-card {
  position: absolute;
}

.editorial-card--main {
  background: var(--ink);
  border-radius: 34px 34px 34px 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  left: 15px;
  min-height: 535px;
  overflow: hidden;
  padding: 34px;
  top: 50px;
  transform: rotate(-2deg);
  width: min(430px, calc(100% - 35px));
}

.editorial-card--main::before {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
  height: 320px;
  position: absolute;
  right: -130px;
  top: 170px;
  width: 320px;
}

.card-kicker {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.editorial-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 340px;
  position: relative;
  z-index: 1;
}

.portrait-placeholder {
  background:
    linear-gradient(145deg, rgba(217, 232, 231, 0.95), rgba(214, 168, 95, 0.88)),
    var(--sky);
  border-radius: 50% 50% 20px 20px;
  bottom: 0;
  height: 255px;
  left: 46px;
  overflow: hidden;
  position: absolute;
  right: 46px;
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  border: 2px solid rgba(23, 38, 60, 0.16);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.portrait-placeholder::before {
  height: 134px;
  left: calc(50% - 67px);
  top: 44px;
  width: 134px;
}

.portrait-placeholder::after {
  border-radius: 60% 60% 0 0;
  bottom: -60px;
  height: 180px;
  left: calc(50% - 105px);
  width: 210px;
}

.portrait-placeholder span {
  color: rgba(23, 38, 60, 0.66);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  position: absolute;
  top: 20px;
}

.portrait-placeholder span:first-child { left: 25px; }
.portrait-placeholder span:last-child { right: 25px; }

.scribble {
  bottom: 14px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
  left: 62px;
  position: absolute;
  transform: rotate(-4deg);
  z-index: 2;
}

.editorial-card--note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px 18px 5px 18px;
  bottom: 20px;
  box-shadow: 0 18px 45px rgba(23, 38, 60, 0.14);
  padding: 18px;
  right: -12px;
  transform: rotate(5deg);
  width: 215px;
  z-index: 3;
}

.editorial-card--note strong {
  font-size: 0.82rem;
}

.editorial-card--note p {
  font-family: Georgia, serif;
  font-size: 0.93rem;
  line-height: 1.35;
  margin: 4px 0 0;
}

.pulse {
  background: var(--saffron);
  border-radius: 50%;
  display: inline-block;
  height: 7px;
  margin-right: 6px;
  width: 7px;
}

.roundel {
  align-items: center;
  background: var(--saffron);
  border: 7px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 0.54rem;
  font-weight: 850;
  height: 83px;
  justify-content: center;
  letter-spacing: 0.15em;
  line-height: 1.4;
  position: absolute;
  right: -10px;
  text-align: center;
  top: 115px;
  transform: rotate(9deg);
  width: 83px;
  z-index: 4;
}

/* Shared headings and cards */
.section-heading {
  align-items: end;
  display: flex;
  gap: 38px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  margin: 0 0 4px;
  max-width: 410px;
}

.guide-paths {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.path-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.path-card {
  min-height: 325px;
  padding: 30px 26px 28px;
  position: relative;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.path-card + .path-card {
  border-left: 1px solid var(--line);
}

.path-card:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-8px);
}

.path-card::before {
  background: var(--saffron);
  border-radius: 999px;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 62px;
  transition: background var(--transition), width var(--transition);
  width: 34px;
}

.path-card:hover::before {
  background: var(--gold);
  width: 52px;
}

.path-card h2,
.path-card h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  max-width: 180px;
}

.path-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.path-card:hover p { color: rgba(255, 255, 255, 0.72); }

.path-card__arrow {
  bottom: 25px;
  font-size: 1.2rem;
  opacity: 0;
  position: absolute;
  right: 25px;
  transform: translate(-5px, 5px);
  transition: opacity var(--transition), transform var(--transition);
}

.path-card:hover .path-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.latest-guides {
  background: var(--white);
}

.post-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.post-card {
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
  border-color: var(--line);
  box-shadow: 0 18px 46px rgba(23, 38, 60, 0.1);
  transform: translateY(-6px);
}

.post-card__image {
  aspect-ratio: 1.35;
  background: linear-gradient(145deg, var(--sky), var(--gold));
  overflow: hidden;
  position: relative;
}

.post-card__image::after {
  border: 1px solid rgba(23, 38, 60, 0.2);
  border-radius: 50%;
  content: "";
  height: 160px;
  position: absolute;
  right: -50px;
  top: -40px;
  width: 160px;
}

.post-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__image > span {
  bottom: 22px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  left: 22px;
  letter-spacing: 0.18em;
  position: absolute;
  z-index: 1;
}

.post-card__body {
  padding: 25px;
}

.post-card__body h3 {
  font-size: 1.36rem;
  line-height: 1.18;
}

.post-card__body h3 a {
  text-decoration: none;
}

.post-card__body > p:not(.post-meta) {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.post-meta {
  color: var(--accent-text);
  font-size: 0.67rem;
  font-weight: 830;
  letter-spacing: 0.11em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Social */
.social-section {
  background: var(--ink);
  color: var(--white);
}

.social-section .section-heading > p {
  color: rgba(255, 255, 255, 0.64);
}

.social-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.04fr 0.96fr;
}

.video-feature,
.video-shell {
  min-height: 570px;
}

.video-shell {
  background: linear-gradient(145deg, #153b38, #0c2524);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.video-shell__pattern {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.08) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,.08) 50%, transparent 50.5%);
  background-size: 68px 68px;
  inset: 0;
  opacity: 0.5;
  position: absolute;
  transform: rotate(8deg) scale(1.2);
}

.video-shell__pattern::after {
  background: var(--saffron);
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  height: 260px;
  position: absolute;
  right: 35px;
  top: 100px;
  width: 260px;
}

.video-shell__content {
  bottom: 36px;
  left: 36px;
  position: absolute;
  right: 36px;
  z-index: 1;
}

.platform-label {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-shell h3 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  margin: 15px 0 28px;
  max-width: 520px;
}

.play-button {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  height: 68px;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
  width: 68px;
}

.play-button:hover {
  background: var(--gold);
  transform: scale(1.07);
}

.video-shell iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 4;
}

.social-previews {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.social-tile {
  border-radius: 18px;
  min-height: 276px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.social-tile:first-child {
  grid-row: span 2;
}

.social-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.social-tile:hover img { transform: scale(1.04); }

.social-tile__placeholder {
  align-items: center;
  background: linear-gradient(145deg, #d5b16f, #d88b2b 50%, #9e3f4b);
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: inherit;
  overflow: hidden;
}

.social-tile--2 .social-tile__placeholder { background: linear-gradient(145deg, #dde7ef, #7b8da3); }
.social-tile--3 .social-tile__placeholder { background: linear-gradient(145deg, #eee3d5, #bd8f63); }

.social-tile__placeholder span {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.social-tile__placeholder i {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  height: 180px;
  position: absolute;
  transform: rotate(20deg);
  width: 180px;
}

.social-tile__caption {
  align-items: center;
  background: linear-gradient(transparent, rgba(10, 30, 29, 0.9));
  bottom: 0;
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: space-between;
  left: 0;
  padding: 40px 18px 16px;
  position: absolute;
  right: 0;
}

.social-tile__caption i {
  font-style: normal;
}

/* Story and commercial */
.story-section {
  background: var(--paper-deep);
}

.story-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 0.9fr 1.1fr;
}

.story-visual {
  align-items: center;
  background:
    linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%) 0 0 / 34px 34px,
    var(--saffron);
  border-radius: 42px 42px 10px 42px;
  display: flex;
  justify-content: center;
  min-height: 470px;
  padding: 50px;
  position: relative;
  transform: rotate(-1deg);
}

.story-visual__stamp {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 0.72rem;
  font-weight: 850;
  height: 85px;
  justify-content: center;
  left: -20px;
  line-height: 1.2;
  position: absolute;
  text-align: center;
  top: 32px;
  transform: rotate(-12deg);
  width: 85px;
}

.story-visual__route {
  align-items: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  gap: 20px;
  letter-spacing: 0.12em;
  text-align: center;
}

.story-visual__route i {
  border-left: 2px dashed rgba(255, 255, 255, 0.7);
  display: block;
  height: 110px;
  position: relative;
}

.story-visual__route i::after {
  background: var(--gold);
  border: 5px solid var(--saffron);
  border-radius: 50%;
  content: "";
  height: 20px;
  left: -11px;
  position: absolute;
  top: calc(50% - 10px);
  width: 20px;
}

.story-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.07rem;
  max-width: 620px;
}

.commercial-section {
  background: var(--white);
}

.commercial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.88fr 1.12fr;
}

.commercial-card {
  border-radius: 28px;
  min-height: 440px;
  padding: clamp(34px, 4vw, 58px);
}

.commercial-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.commercial-card p:not(.eyebrow) {
  max-width: 570px;
}

.commercial-card--recommend {
  background: var(--ink);
  color: var(--white);
}

.commercial-card--recommend p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.commercial-card--collab {
  background:
    radial-gradient(circle at 88% 15%, rgba(255,255,255,.4) 0 6px, transparent 7px) 0 0 / 28px 28px,
    var(--sky);
  color: var(--ink);
}

.commercial-card .button-row {
  margin-top: 30px;
}

/* Newsletter and consultation */
.newsletter-section {
  padding-bottom: 0;
}

.newsletter {
  align-items: center;
  background: var(--gold);
  border-radius: 32px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 0.8fr;
  padding: clamp(34px, 5vw, 70px);
}

.newsletter h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.newsletter p:not(.eyebrow) {
  margin-bottom: 0;
  max-width: 620px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid transparent;
  border-radius: 999px;
  flex: 1 1 240px;
  min-height: 54px;
  padding: 0 20px;
}

.newsletter-consent {
  flex-basis: 100%;
  font-size: 0.74rem;
  line-height: 1.45;
  margin: 5px 8px 0;
}

.consultation-section {
  background: var(--paper);
}

.consultation-grid {
  align-items: start;
  display: grid;
  gap: clamp(45px, 8vw, 110px);
  grid-template-columns: 0.9fr 1.1fr;
}

.consultation-copy {
  padding-top: 25px;
  position: sticky;
  top: 120px;
}

.consultation-copy > p:not(.eyebrow):not(.legal-note) {
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.tick-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.tick-list li {
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 13px 0 13px 30px;
  position: relative;
}

.tick-list li:last-child { border-bottom: 1px solid var(--line); }

.tick-list li::before {
  color: var(--saffron);
  content: "✓";
  font-weight: 900;
  left: 2px;
  position: absolute;
}

.legal-note {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.consultation-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 52px);
}

.consultation-form-card h3 {
  margin-bottom: 8px;
}

.ukshuke-form__intro {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label,
.form-legend {
  font-size: 0.78rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.form-field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--saffron);
  outline: 2px solid rgba(216, 139, 43, 0.18);
}

.form-checkbox {
  align-items: flex-start;
  display: flex;
  font-size: 0.76rem;
  gap: 9px;
  line-height: 1.45;
}

.form-checkbox input {
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.form-honeypot {
  left: -10000px;
  position: absolute;
}

.form-message {
  border-radius: 10px;
  font-size: 0.86rem;
  margin-bottom: 20px;
  padding: 12px 14px;
}

.form-message--success { background: #e4f2e8; color: #174c27; }
.form-message--error { background: #f9e5df; color: #7a2e1a; }

/* Inner pages and editorial content */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(70px, 9vw, 130px);
}

.page-hero--light {
  background: var(--paper-deep);
  color: var(--ink);
}

.page-hero__inner {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.page-hero__lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 720px;
}

.page-hero--light .page-hero__lead { color: var(--ink-soft); }

.content-shell {
  margin-inline: auto;
  max-width: 760px;
  width: min(760px, calc(100vw - 40px));
}

.entry-content {
  font-size: 1.04rem;
}

.entry-content > * + * {
  margin-top: 1.4em;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
}

.entry-content a {
  color: #9e3f4b;
}

.entry-content blockquote {
  border-left: 4px solid var(--saffron);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  margin-inline: 0;
  padding-left: 24px;
}

.entry-content img {
  border-radius: 18px;
}

.entry-content .alignwide {
  margin-left: 50%;
  max-width: var(--shell);
  transform: translateX(-50%);
  width: var(--shell);
}

.entry-content .alignfull {
  margin-left: 50%;
  max-width: 100vw;
  transform: translateX(-50%);
  width: 100vw;
}

.article-header {
  padding-bottom: 42px;
}

.article-header .post-meta { margin-bottom: 20px; }

.article-header h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.article-deck {
  color: var(--ink-soft);
  font-size: 1.22rem;
  max-width: 760px;
}

.article-byline {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.82rem;
  gap: 12px;
  margin-top: 32px;
  padding-top: 18px;
}

.featured-image {
  border-radius: 28px;
  margin-bottom: 55px;
  max-height: 680px;
  object-fit: cover;
  width: 100%;
}

.archive-header {
  padding-bottom: 55px;
}

.archive-header h1 { font-size: clamp(3rem, 6vw, 5.5rem); }

.pagination {
  margin-top: 55px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pagination .page-numbers {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 44px;
  justify-content: center;
  text-decoration: none;
  width: 44px;
}

.pagination .current,
.pagination a:hover {
  background: var(--ink);
  color: var(--white);
}

.notice-box {
  background: var(--sky);
  border-radius: 16px;
  font-size: 0.88rem;
  margin-block: 35px;
  padding: 20px 22px;
}

.media-stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 50px;
  overflow: hidden;
}

.media-stat {
  background: var(--white);
  padding: 30px;
  text-align: center;
}

.media-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
}

.media-stat span { color: var(--muted); font-size: 0.82rem; }

.service-grid,
.recommendation-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.recommendation-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.service-card::before {
  background: var(--saffron);
  border-radius: 999px;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 32px;
  width: 34px;
}

.recommendation-card__image {
  aspect-ratio: 1.25;
  background: var(--sky);
  border-radius: 12px;
  margin: -15px -15px 22px;
  overflow: hidden;
}

.recommendation-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.affiliate-label {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.empty-state {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #111e31;
  color: var(--white);
  padding-top: 72px;
}

.site-footer__grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.1fr;
  padding-bottom: 60px;
}

.site-footer .brand__mark::after { border-color: #111e31; }

.site-footer__brand > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  margin-top: 24px;
  max-width: 290px;
}

.footer-heading {
  color: var(--gold);
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.site-footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .menu a {
  color: rgba(255, 255, 255, 0.72);
  display: inline-block;
  font-size: 0.85rem;
  padding-block: 5px;
  text-decoration: none;
}

.site-footer .menu a:hover { color: var(--white); }

.footer-small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  font-size: 0.63rem;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  width: 38px;
}

.social-links a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
  padding-block: 20px;
}

.site-footer__bottom p { margin: 0; }

/* Reveal enhancement */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1050px) {
  .hero__grid { grid-template-columns: 1fr 0.85fr; }
  .hero-art { min-height: 540px; }
  .editorial-card--main { min-height: 470px; }
  .portrait-placeholder { height: 215px; }
  .path-grid { grid-template-columns: 1fr 1fr; }
  .path-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .path-card:nth-child(4) { border-top: 1px solid var(--line); }
  .social-grid { grid-template-columns: 1fr; }
  .video-feature, .video-shell { min-height: 520px; }
  .social-previews { grid-template-columns: repeat(3, 1fr); }
  .social-tile:first-child { grid-row: auto; }
  .site-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .admin-bar .site-header { top: 46px; }
  .nav-toggle { display: block; }
  .primary-nav {
    align-items: stretch;
    background: var(--paper);
    flex-direction: column;
    gap: 20px;
    height: calc(100vh - 78px);
    left: 0;
    opacity: 0;
    padding: 30px 20px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 78px;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .admin-bar .primary-nav { top: 124px; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav .menu { align-items: stretch; flex-direction: column; gap: 0; }
  .primary-nav .menu a { border-bottom: 1px solid var(--line); font-size: 1.2rem; padding-block: 16px; }
  .primary-nav .menu a::after { display: none; }
  .primary-nav .sub-menu { background: transparent; border: 0; box-shadow: none; display: block; padding-left: 16px; position: static; }
  .nav-cta { align-self: flex-start; }
  .nav-open .nav-toggle span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 720px; }
  .hero-art { margin-inline: auto; max-width: 560px; min-height: 580px; width: 100%; }
  .post-grid, .service-grid, .recommendation-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .consultation-grid, .newsletter, .commercial-grid { grid-template-columns: 1fr; }
  .story-visual { min-height: 390px; }
  .consultation-copy { position: static; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section { padding-block: 68px; }
  .site-header__inner { min-height: 74px; }
  h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.2rem); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 20px; margin-bottom: 34px; }
  .proof-strip { gap: 12px; grid-template-columns: 1fr; }
  .proof-strip div { border-bottom: 1px solid var(--line); padding-bottom: 10px; }
  .hero-art { min-height: 515px; }
  .editorial-card--main { left: 0; min-height: 450px; padding: 27px; width: calc(100% - 18px); }
  .portrait-placeholder { left: 25px; right: 25px; }
  .editorial-card--note { right: 0; }
  .roundel { right: -5px; top: 110px; }
  .path-grid, .post-grid, .service-grid, .recommendation-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 260px; }
  .path-card + .path-card { border-left: 0; border-top: 1px solid var(--line); }
  .path-card::before { margin-bottom: 42px; }
  .video-feature, .video-shell { min-height: 450px; }
  .video-shell__content { bottom: 25px; left: 25px; right: 25px; }
  .social-previews { grid-template-columns: 1fr 1fr; }
  .social-tile { min-height: 230px; }
  .social-tile:first-child { grid-column: 1 / -1; min-height: 330px; }
  .story-visual { min-height: 330px; padding: 30px; }
  .story-visual__route { font-size: 1.2rem; }
  .commercial-card { min-height: auto; }
  .newsletter { border-radius: 22px; padding: 28px 22px; width: calc(100% - 20px); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .media-stats { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 5px; }
  .entry-content .alignwide { width: calc(100vw - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .button, .newsletter-section, .consultation-section { display: none !important; }
  body { background: #fff; color: #000; }
  a { text-decoration: underline; }
}
