/* ----------------------------------------------------------
   Radó Viktória — Master Nail Designer
   Editorial luxe homepage
---------------------------------------------------------- */

:root {
  /* Canvas */
  --porcelain: #faf7f2;
  --porcelain-2: #f3ece2;
  --bone: #ece4d6;

  /* Ink */
  --onyx: #1a1a1a;
  --onyx-soft: #2a2622;
  --ink-60: rgba(26, 26, 26, 0.82);
  --ink-40: rgba(26, 26, 26, 0.64);
  --ink-20: rgba(26, 26, 26, 0.18);
  --ink-10: rgba(26, 26, 26, 0.1);
  --ink-rule: rgba(26, 26, 26, 0.14);

  /* Warm */
  --almond: #d4b5a0;
  --almond-soft: #e2c9b6;
  --tan: #8c6a55;
  --clay: #6e4f3e;

  /* Imagery accents */
  --ice: #c9d3d9;

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --script: "Pinyon Script", "Dancing Script", cursive;

  /* Scale */
  --pad-x: clamp(24px, 5vw, 96px);
  --rule: 1px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--porcelain);
  color: var(--onyx);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

/* ----- TYPE ----- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--tan);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--onyx);
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--clay);
}

.body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--onyx-soft);
  text-wrap: pretty;
}

.script {
  font-family: var(--script);
  font-weight: 400;
}

/* ----- LAYOUT PRIMITIVES ----- */
.wrap {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.rule {
  height: var(--rule);
  background: var(--ink-rule);
  width: 100%;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--almond);
  display: inline-block;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  background: var(--onyx);
  color: var(--porcelain);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn:hover {
  background: var(--clay);
}
.btn .arrow {
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.2s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 30px; }

.btn-ghost {
  background: transparent;
  color: var(--onyx);
  border: 1px solid var(--onyx);
  padding: 17px 25px;
}
.btn-ghost:hover {
  background: var(--onyx);
  color: var(--porcelain);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--onyx);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--onyx);
  transition: gap 0.2s ease;
}
.btn-text:hover { gap: 18px; }

/* ----- NAV ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--pad-x);
  background: color-mix(in srgb, var(--porcelain) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-rule);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-center {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.nav-center small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--ink-60);
  margin-top: 4px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-end;
}
.nav-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--onyx-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--clay); }
.nav-cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 1px solid var(--onyx);
  background: var(--onyx);
  color: var(--porcelain);
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--clay); border-color: var(--clay); }

.lang {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-60);
  padding: 4px 8px;
  border: 1px solid var(--ink-20);
}

/* ----- HERO ----- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 80px);
  border-bottom: 1px solid var(--ink-rule);
}
.hero-left {
  padding: 80px var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 10vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin: 48px 0 0;
}
.hero-title .it {
  font-style: italic;
  font-weight: 300;
  color: var(--clay);
}
.hero-title .amp {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--almond);
}
.hero-sig {
  font-family: var(--script);
  font-size: clamp(40px, 5.5vw, 86px);
  line-height: 1;
  color: var(--clay);
  margin-top: 8px;
  display: inline-block;
  transform: translateX(-4px);
}
.hero-sub {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  margin-top: 56px;
}
.hero-sub p {
  max-width: 420px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--onyx-soft);
  margin: 0;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px 32px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-rule);
}
@media (max-width: 1280px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-meta-num { font-size: 30px; }
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-meta-num em { font-style: italic; color: var(--clay); }
.hero-meta-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.hero-right {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}
.hero-img-tag {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  filter: contrast(1.04) saturate(0.95);
  display: block;
}
.hero-img-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 42%,
      rgba(0,0,0,0.6) 55%,
      rgba(0,0,0,0) 70%,
      rgba(0,0,0,0) 82%,
      rgba(0,0,0,0.45) 100%);
}
.hero-fig {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-fig em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.95);
  margin-left: 10px;
}
.hero-corner-mark {
  position: absolute;
  right: 32px;
  top: 32px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-corner-mark::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

/* ----- MARQUEE ----- */
.marquee {
  border-bottom: 1px solid var(--ink-rule);
  overflow: hidden;
  padding: 18px 0;
  background: var(--porcelain);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: var(--onyx);
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-track .sep {
  width: 6px;
  height: 6px;
  background: var(--almond);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- SECTION HEADER ----- */
.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--ink-rule);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  padding: 0 var(--pad-x);
  margin-bottom: 80px;
  align-items: end;
}
.section-head-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-head h2 em {
  font-style: italic;
  color: var(--clay);
}
.section-head-right {
  font-size: 15px;
  line-height: 1.65;
  color: var(--onyx-soft);
  max-width: 540px;
  margin-left: auto;
}

/* ----- ABOUT ----- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  padding: 0 var(--pad-x);
}
.about-img {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  background: var(--bone);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(0.15);
}
.about-img .caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 640px;
}
.about-content p {
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
  color: var(--onyx-soft);
}
.about-content .lead {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  line-height: 1.35;
  color: var(--onyx);
}
.about-content .lead .drop {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 84px;
  line-height: 0.8;
  float: left;
  margin: 8px 14px 0 0;
  color: var(--clay);
}
.pullquote {
  border-top: 1px solid var(--onyx);
  border-bottom: 1px solid var(--ink-rule);
  padding: 36px 0;
  margin: 16px 0;
}
.pullquote q {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--onyx);
  display: block;
  quotes: none;
}
.pullquote q::before { content: "\201E"; color: var(--almond); margin-right: 4px; }
.pullquote q::after { content: "\201D"; color: var(--almond); }
.pullquote .cite {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.about-sig {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 24px;
  gap: 32px;
}
.about-sig .sigmark {
  font-family: var(--script);
  font-size: 56px;
  line-height: 0.8;
  color: var(--clay);
}

/* ----- PATHS (Válaszd ki az utad) ----- */
.paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 var(--pad-x);
}
.path-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.path-card:hover { transform: translateY(-6px); }
.path-img {
  aspect-ratio: 3/4;
  background: var(--bone);
  overflow: hidden;
  position: relative;
}
.path-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.path-card:hover .path-img img { transform: scale(1.06); }
.path-img .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--porcelain);
  padding: 6px 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.path-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--ink-rule);
  padding-bottom: 10px;
}
.path-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--tan);
}
.path-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.path-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.path-title em { font-style: italic; color: var(--clay); }
.path-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--onyx-soft);
  margin: 0;
}
.path-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ----- SERVICES MENU ----- */
.services {
  padding: 0 var(--pad-x);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}
.svc {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--ink-rule);
  align-items: baseline;
}
.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--tan);
}
.svc-body { display: flex; flex-direction: column; gap: 6px; }
.svc-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.005em;
}
.svc-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-60);
  margin: 0;
  max-width: 360px;
}
.svc-duration {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 4px;
}
.svc-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  white-space: nowrap;
  color: var(--onyx);
}
.svc-price em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-left: 6px;
}
.services-note {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--onyx);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.services-note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 460px;
}

/* ----- PORTFOLIO ----- */
.portfolio {
  padding: 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 14px;
  padding: 0 var(--pad-x);
}
.pf {
  background: var(--bone);
  overflow: hidden;
  position: relative;
}
.pf img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.pf:hover img { transform: scale(1.05); }
.pf .pf-cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  backdrop-filter: blur(8px);
}
.pf-a { grid-column: 1 / span 5; grid-row: span 7; }
.pf-b { grid-column: 6 / span 4; grid-row: span 4; }
.pf-c { grid-column: 10 / span 3; grid-row: span 4; }
.pf-d { grid-column: 6 / span 3; grid-row: span 3; }
.pf-e { grid-column: 9 / span 4; grid-row: span 3; }
.pf-text {
  grid-column: 6 / span 7;
  grid-row: span 3;
  background: transparent;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ----- MENTOR (DARK SECTION) ----- */
.mentor {
  background: var(--onyx);
  color: var(--porcelain);
  border-bottom: none;
  padding: 140px 0;
}
.mentor .section-head h2 { color: var(--porcelain); }
.mentor .section-head h2 em { color: var(--almond); }
.mentor .section-head-right { color: rgba(250, 247, 242, 0.7); }
.mentor .eyebrow { color: rgba(250, 247, 242, 0.55); }
.mentor .num { color: var(--almond); }
.mentor-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 var(--pad-x);
  align-items: start;
}
.mentor-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
  align-items: baseline;
}
.pillar:first-child { border-top: 1px solid rgba(250, 247, 242, 0.3); }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--almond);
}
.pillar h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.pillar p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: rgba(250, 247, 242, 0.65);
  max-width: 420px;
}
.mentor-visual {
  position: sticky;
  top: 100px;
}
.mentor-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.mentor-photo img { width: 100%; height: 100%; object-fit: cover; }
.mentor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0,0,0,0.55) 100%);
}
.mentor-photo .quote-on-img {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
  color: var(--porcelain);
}
.mentor-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.mentor .btn {
  background: var(--porcelain);
  color: var(--onyx);
}
.mentor .btn:hover { background: var(--almond); }
.mentor .btn-ghost {
  background: transparent;
  border-color: var(--porcelain);
  color: var(--porcelain);
}
.mentor .btn-ghost:hover {
  background: var(--porcelain);
  color: var(--onyx);
}

/* ----- OKTATÁS ----- */
.courses {
  padding: 0 var(--pad-x);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.course {
  display: flex;
  flex-direction: column;
  background: var(--porcelain-2);
  padding: 32px 32px 36px;
  position: relative;
  min-height: 380px;
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.course:hover {
  background: var(--bone);
  border-color: var(--ink-20);
}
.course-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
}
.course h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  margin: 16px 0 14px;
  letter-spacing: -0.01em;
}
.course h3 em { font-style: italic; color: var(--clay); }
.course p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--onyx-soft);
  margin: 0 0 24px;
}
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--ink-rule);
}
.course-meta-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--onyx-soft);
}
.course-meta-row .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.course-cta {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ----- LEAD MAGNET ----- */
.lead-magnet {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  border-bottom: 1px solid var(--ink-rule);
}
.lead-magnet-text {
  padding: 120px var(--pad-x) 120px;
  background: var(--porcelain-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.lead-magnet-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  margin: 0;
  letter-spacing: -0.018em;
}
.lead-magnet-text h2 em { font-style: italic; color: var(--clay); }
.lead-magnet-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--onyx-soft);
  max-width: 460px;
  margin: 0;
}
.lead-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  border-bottom: 1px solid var(--onyx);
}
.lead-form input {
  flex: 1;
  padding: 14px 0;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--onyx);
  outline: none;
}
.lead-form input::placeholder { color: var(--ink-40); }
.lead-form button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 0 14px 20px;
  cursor: pointer;
}
.lead-magnet-img {
  background-color: var(--bone);
  background-size: cover;
  background-position: center;
  position: relative;
}
.lead-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-checklist li {
  font-family: var(--sans);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--onyx-soft);
}
.lead-checklist li::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--almond);
  border-radius: 50%;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  padding: 0 var(--pad-x);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stars {
  display: flex;
  gap: 4px;
  color: var(--almond);
  font-family: var(--serif);
  font-size: 18px;
}
.testimonial q {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--onyx);
  quotes: none;
  margin: 0;
}
.testimonial q::before { content: "\201E"; color: var(--almond); }
.testimonial q::after { content: "\201D"; color: var(--almond); }
.testimonial-by {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--ink-rule);
}
.testimonial-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--onyx);
}
.testimonial-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ----- BOOK / CTA ----- */
.book {
  background: var(--onyx);
  color: var(--porcelain);
  padding: 140px 0;
  text-align: center;
  border-bottom: none;
}
.book h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: var(--porcelain);
}
.book h2 em { font-style: italic; color: var(--almond); }
.book .script {
  font-family: var(--script);
  font-size: clamp(48px, 6vw, 88px);
  color: var(--almond);
  line-height: 1;
  display: block;
  margin: -8px 0 8px;
}
.book p {
  max-width: 540px;
  margin: 0 auto 56px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.7);
}
.book .btn {
  background: var(--porcelain);
  color: var(--onyx);
}
.book .btn:hover { background: var(--almond); }
.book-contact {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
}
.book-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.book-contact-item .lbl {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
}
.book-contact-item .val {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  color: var(--porcelain);
  font-style: italic;
}

/* ----- FOOTER ----- */
footer {
  background: var(--onyx);
  color: rgba(250, 247, 242, 0.7);
  padding: 56px var(--pad-x) 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}
.footer-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .script {
  font-family: var(--script);
  font-size: 44px;
  color: var(--porcelain);
  line-height: 1;
}
.footer-brand small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}
.footer-col h5 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: rgba(250, 247, 242, 0.5);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(250, 247, 242, 0.85);
}
.footer-col a:hover { color: var(--almond); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 242, 0.45);
}

/* ----- RESPONSIVE ----- */
/* tablet/landscape: tighten the nav before it can clip */
@media (max-width: 1240px) {
  .nav { padding: 20px 32px; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 11px; letter-spacing: 0.1em; }
  .nav-center { font-size: 16px; letter-spacing: 0.14em; }
  .nav-center small { font-size: 8px; letter-spacing: 0.26em; }
  .nav-cta { padding: 10px 14px; font-size: 10px; letter-spacing: 0.16em; }
}

/* below this, drop the centered wordmark + nav links — keep CTA + menu */
@media (max-width: 1080px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-center { display: none; }
  .nav-links { gap: 0; }
  .nav-links .nav-link { display: none; }
  .nav-links .nav-cta { display: inline-block; }
}

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { aspect-ratio: 3/4; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about-img { position: relative; }
  .paths { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .mentor-body { grid-template-columns: 1fr; }
  .mentor-visual { position: static; }
  .courses-grid { grid-template-columns: 1fr; }
  .lead-magnet { grid-template-columns: 1fr; }
  .lead-magnet-img { min-height: 360px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-row { grid-template-columns: 1fr 1fr; }
  .book-contact { flex-direction: column; gap: 24px; }
  .portfolio-grid { grid-auto-rows: 60px; }
}
