:root {
  --blue: #7aaace;
  --blue-deep: #5f91b8;
  --blue-dark: #3f7198;
  --blue-soft: #e8f2f8;
  --accent: #c8734f;
  --accent-deep: #9d5438;
  --accent-soft: rgba(200, 115, 79, 0.13);
  --leaf: #778b6f;
  --leaf-soft: rgba(119, 139, 111, 0.14);
  --cream: #f5efe4;
  --sand: #ebe0cf;
  --paper: #fffaf2;
  --white: #ffffff;
  --ink: #213845;
  --muted: #5f7480;
  --line: rgba(63, 113, 152, 0.16);
  --shadow: 0 16px 36px rgba(61, 48, 35, 0.12);
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.035) 0 1px, transparent 1px 15px),
    linear-gradient(180deg, #f8f2e8 0%, var(--cream) 45%, #f9f7f1 100%);
  font-family: "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
}

.home-page {
  background:
    repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.035) 0 1px, transparent 1px 15px),
    linear-gradient(145deg, rgba(122, 170, 206, 0.12) 0%, rgba(245, 239, 228, 0.98) 36%, #fffaf2 100%),
    var(--cream);
}

.sub-page {
  background:
    repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.03) 0 1px, transparent 1px 15px),
    linear-gradient(155deg, rgba(119, 139, 111, 0.12) 0%, rgba(245, 239, 228, 0.98) 34%, #fffaf2 100%),
    var(--cream);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 179, 93, 0.9);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  color: var(--ink);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(63, 113, 152, 0.13);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(63, 113, 152, 0.44);
  border-radius: 50%;
  color: var(--blue-dark);
  font-weight: 700;
  background: rgba(122, 170, 206, 0.1);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a,
.header-cta {
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(122, 170, 206, 0.12);
}

.main-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: rgba(122, 170, 206, 0.14);
}

.header-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--accent);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: var(--white);
  background: #2d3f3b;
}

.hero::before,
.hero::after,
.chooser-hero::before,
.platform-story::before,
.latest-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero::before {
  right: max(28px, calc((100vw - 1120px) / 2));
  top: clamp(88px, 14vw, 154px);
  z-index: 1;
  width: clamp(72px, 10vw, 132px);
  aspect-ratio: 1;
  border: 2px solid rgba(122, 170, 206, 0.55);
}

.hero::after {
  right: max(86px, calc((100vw - 960px) / 2));
  top: clamp(130px, 19vw, 226px);
  z-index: 1;
  width: clamp(22px, 3vw, 40px);
  aspect-ratio: 1;
  background: var(--accent);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  background: repeating-linear-gradient(135deg, rgba(255, 250, 242, 0.18) 0 2px, transparent 2px 16px);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(42, 55, 48, 0.9) 0%, rgba(60, 77, 65, 0.66) 48%, rgba(63, 113, 152, 0.22) 100%),
    linear-gradient(0deg, rgba(42, 55, 48, 0.66) 0%, rgba(42, 55, 48, 0) 52%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  align-self: center;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) 0 clamp(128px, 16vw, 172px);
}

.eyebrow,
.section-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 18px;
  height: 10px;
  border-radius: 999px 0 999px 999px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  transform: rotate(-18deg);
}

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

.hero h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6.2vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
}

.button-light {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(120, 67, 43, 0.18);
}

.button-outline {
  color: var(--white);
  border-color: rgba(122, 170, 206, 0.54);
  background: rgba(122, 170, 206, 0.14);
}

.button-outline-dark {
  color: var(--blue-dark);
  border-color: rgba(63, 113, 152, 0.32);
  background: rgba(255, 255, 255, 0.64);
}

.button:hover,
.header-cta:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.booking-card {
  position: absolute;
  right: max(16px, calc((100vw - 1120px) / 2));
  bottom: 34px;
  z-index: 2;
  width: min(360px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-top: 2px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.15;
}

.booking-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: var(--container);
  margin: -1px auto 0;
  border: 1px solid rgba(63, 113, 152, 0.14);
  background: rgba(63, 113, 152, 0.14);
}

.quick-points article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.88);
}

.quick-points article::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 170, 206, 0.5);
  border-radius: 50%;
}

.quick-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.quick-points span {
  color: var(--muted);
  line-height: 1.55;
}

.section-nav {
  position: sticky;
  top: 78px;
  z-index: 12;
  display: flex;
  gap: 8px;
  width: var(--container);
  margin: 20px auto clamp(34px, 5vw, 58px);
  padding: 10px;
  overflow-x: auto;
  border: 1px solid rgba(63, 113, 152, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(15, 38, 54, 0.08);
  backdrop-filter: blur(14px);
}

.section-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 750;
}

.section-nav a:hover {
  background: rgba(122, 170, 206, 0.14);
}

.section,
.image-section,
.cta-band,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(72px, 10vw, 128px) 0;
}

.sub-page main > .section::before,
.sub-page main > .hair-ai-section::before,
.sub-page main > .image-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid rgba(63, 113, 152, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.52), rgba(245, 239, 228, 0.2)),
    repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.026) 0 1px, transparent 1px 14px);
}

.sub-page main > .section:nth-of-type(even)::before,
.sub-page main > .image-section::before {
  background:
    linear-gradient(180deg, rgba(235, 224, 207, 0.34), rgba(255, 250, 242, 0.08)),
    repeating-linear-gradient(135deg, rgba(119, 139, 111, 0.032) 0 1px, transparent 1px 14px);
}

.section::after,
.image-section::after,
.hair-ai-section::after,
.content-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.section-label {
  color: rgba(255, 255, 255, 0.68);
}

h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.check-list p,
.check-list li,
.services p,
.about p,
.plain-list li,
.image-section p,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.check-list ul,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(127, 162, 118, 0.14);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 700px;
}

.services {
  display: block;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.service-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 170, 206, 0.38);
  border-radius: 50%;
}

.service-grid span {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
}

.color-selector-section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0;
  color: var(--white);
}

.color-selector-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.color-selector-heading h2 {
  margin-bottom: 18px;
}

.color-selector-heading p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  line-height: 1.75;
}

.color-selector {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.color-controls {
  display: grid;
  gap: 30px;
}

.color-control {
  display: grid;
  gap: 14px;
}

.color-control-label,
.color-result-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.color-option-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.color-option {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 54px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.color-option span {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.72;
}

.color-option:hover,
.color-option.is-active {
  color: #263843;
  border-color: rgba(242, 179, 93, 0.82);
  background: var(--accent);
}

.tone-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.tone-head strong {
  color: var(--white);
  font-size: 1.25rem;
}

.tone-slider {
  --tone-color: #7b563d;
  width: 100%;
  accent-color: var(--tone-color);
}

.tone-scale {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.color-result {
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 100%;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.color-result-label {
  display: block;
  margin: 0 0 6px;
}

.color-result-value {
  display: block;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.5;
}

.color-swatch {
  width: min(100%, 240px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: #73543e;
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(15, 38, 54, 0.14);
}

.color-result strong {
  display: block;
  margin: 8px 0 12px;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.color-result span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.color-disclaimer {
  max-width: 860px;
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(242, 179, 93, 0.36);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.hair-ai-section {
  position: relative;
  isolation: isolate;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px) 0;
  color: var(--white);
}

.hair-ai-heading {
  max-width: 760px;
  margin-bottom: clamp(14px, 2.4vw, 22px);
}

.hair-ai-heading h2 {
  margin-bottom: 8px;
}

.hair-ai-heading p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hair-ai-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: clamp(12px, 2.5vw, 20px);
  align-items: start;
}

.hair-ai-tool {
  display: grid;
  gap: 10px;
  align-items: start;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hair-ai-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
}

.hair-ai-step > span,
.hair-ai-empty > span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #263843;
  background: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
}

.hair-ai-step h3,
.hair-ai-output h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.98rem;
}

.hair-ai-step p,
.hair-ai-output p,
.hair-ai-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.hair-ai-upload {
  display: grid;
  gap: 8px;
}

.hair-ai-dropzone {
  display: grid;
  gap: 8px;
  min-height: 82px;
  align-content: center;
  padding: 14px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hair-ai-dropzone span {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #263843;
  background: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.hair-ai-dropzone small {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.4;
}

.hair-ai-upload input[type="file"] {
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
}

.hair-ai-preview {
  width: min(100%, 240px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hair-ai-color-control {
  display: grid;
  gap: 8px;
}

.hair-ai-color-control span {
  color: var(--white);
  font-weight: 700;
}

.hair-ai-color-control select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.hair-ai-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.38;
}

.hair-ai-consent input {
  margin-top: 0.35em;
  accent-color: var(--accent);
}

.hair-ai-submit {
  width: 100%;
}

.hair-ai-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hair-ai-results {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.hair-ai-results article {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.hair-ai-results img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.hair-ai-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: clamp(14px, 2.4vw, 20px);
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-radius: 8px;
  background: var(--blue-dark);
}

.hair-ai-output {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid rgba(63, 113, 152, 0.16);
  border-top: 2px solid var(--accent);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 38, 54, 0.08);
}

.hair-ai-empty {
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: center;
  justify-items: center;
  padding: 22px;
  border: 1px dashed rgba(63, 113, 152, 0.24);
  border-radius: 12px;
  text-align: center;
  background: rgba(122, 170, 206, 0.08);
}

.hair-ai-cta p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.16;
}

.image-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: 0 0 clamp(72px, 10vw, 128px);
}

.image-section::after {
  right: 8px;
  top: 12px;
  width: 62px;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 115, 79, 0.28);
}

.image-section img,
.portrait-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-section img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  border-bottom: 2px solid rgba(242, 179, 93, 0.72);
}

.about {
  align-items: center;
}

.portrait-wrap img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 18%;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
  padding: clamp(32px, 5vw, 56px);
  color: var(--white);
  border: 1px solid rgba(122, 170, 206, 0.26);
  border-top: 2px solid var(--blue);
  border-radius: 8px;
  background: #33453e;
  box-shadow: var(--shadow);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 24px;
  width: 74px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 170, 206, 0.42);
  border-radius: 50%;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.contact-actions {
  justify-content: flex-end;
  min-width: min(100%, 320px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 700;
}

.page-hero,
.price-section {
  width: var(--container);
  margin: 0 auto;
}

.page-hero {
  display: grid;
  align-items: end;
  min-height: 56vh;
  padding: clamp(72px, 10vw, 128px) 0 clamp(48px, 8vw, 90px);
  color: var(--white);
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 5.5vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.price-section {
  padding: 0 0 clamp(72px, 10vw, 128px);
}

.price-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 32px;
}

.price-intro h2 {
  margin-bottom: 0;
}

.price-intro p:last-child {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(15, 38, 54, 0.1);
}

.price-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  opacity: 0.36;
  background: repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.22) 0 1px, transparent 1px 7px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  pointer-events: none;
}

.price-card-wide {
  grid-column: span 2;
}

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

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

.price-row span {
  line-height: 1.45;
}

.price-row strong {
  color: var(--white);
  font-size: 1.08rem;
  white-space: nowrap;
}

.price-row strong::after {
  content: " DKK";
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav-simple {
  margin-left: auto;
}

.chooser-hero,
.content-page {
  width: var(--container);
  margin: 0 auto;
  color: var(--ink);
}

.chooser-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 78px);
  display: grid;
  align-content: center;
  gap: clamp(28px, 5vw, 54px);
  padding: clamp(42px, 8vw, 86px) 0;
}

.chooser-hero::before {
  z-index: 0;
  right: -34px;
  top: 70px;
  width: clamp(96px, 16vw, 180px);
  aspect-ratio: 1;
  border: 2px solid rgba(122, 170, 206, 0.34);
}

.chooser-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: clamp(190px, 30vw, 340px);
  bottom: clamp(210px, 22vw, 300px);
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(235, 224, 207, 0.48), rgba(255, 250, 242, 0.1)),
    repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.035) 0 1px, transparent 1px 14px);
  border-top: 1px solid rgba(63, 113, 152, 0.08);
  border-bottom: 1px solid rgba(63, 113, 152, 0.08);
}

.chooser-copy,
.pathway-grid,
.platform-story,
.latest-section {
  position: relative;
  z-index: 1;
}

.chooser-copy {
  max-width: 780px;
}

.chooser-copy h1,
.content-page h1 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 650;
}

.chooser-copy p,
.content-page p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.9vw, 1.24rem);
  line-height: 1.65;
}

.chooser-hero .eyebrow {
  color: var(--blue-dark);
}

.home-page .section-label,
.home-page .hero-text {
  color: var(--blue-dark);
}

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

.pathway-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 390px;
  padding: 14px;
  border: 1px solid rgba(63, 113, 152, 0.16);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 18px 42px rgba(15, 38, 54, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.pathway-card::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 170, 206, 0.38);
  border-radius: 50%;
}

.pathway-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 170, 206, 0.72);
  box-shadow: 0 24px 54px rgba(15, 38, 54, 0.14);
}

.pathway-card-primary {
  border-color: rgba(122, 170, 206, 0.42);
}

.pathway-card-volunteer {
  background:
    linear-gradient(135deg, rgba(119, 139, 111, 0.16), rgba(255, 250, 242, 0.94)),
    var(--paper);
}

.pathway-card-volunteer::before {
  content: "";
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(119, 139, 111, 0.22), rgba(200, 115, 79, 0.14)),
    linear-gradient(180deg, rgba(255, 250, 242, 0.56), rgba(255, 250, 242, 0));
}

.pathway-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: var(--blue-soft);
}

.pathway-card-book img {
  object-position: center 20%;
}

.pathway-card span {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(122, 170, 206, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
}

.pathway-card:nth-child(2) span,
.pathway-card:nth-child(2)::after {
  color: #516749;
  border-color: rgba(119, 139, 111, 0.38);
  background-color: rgba(119, 139, 111, 0.12);
}

.pathway-card:nth-child(3) span,
.pathway-card:nth-child(3)::after {
  color: var(--accent-deep);
  border-color: rgba(200, 115, 79, 0.38);
  background-color: rgba(200, 115, 79, 0.1);
}

.pathway-card:nth-child(4) span,
.pathway-card:nth-child(4)::after {
  color: var(--blue-dark);
  border-color: rgba(122, 170, 206, 0.38);
  background-color: rgba(122, 170, 206, 0.12);
}

.pathway-card h2 {
  margin: 14px 0 10px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
  font-weight: 650;
}

.pathway-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pathway-card strong {
  display: inline-flex;
  align-self: end;
  width: fit-content;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 700;
  border-bottom: 2px solid rgba(242, 179, 93, 0.9);
}

.platform-story,
.latest-section {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(63, 113, 152, 0.14);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 18px 42px rgba(15, 38, 54, 0.08);
}

.platform-story::before,
.latest-section::before {
  right: 28px;
  top: 28px;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 170, 206, 0.32);
}

.platform-story::after,
.latest-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 86px;
  height: 86px;
  opacity: 0.48;
  background: repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.22) 0 1px, transparent 1px 7px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  pointer-events: none;
}

.platform-story {
  max-width: 940px;
}

.platform-story h2,
.latest-section h2 {
  color: var(--ink);
}

.platform-story p:last-child {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.latest-grid,
.theme-grid,
.journey-grid {
  display: grid;
  gap: 16px;
}

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

.latest-grid article,
.theme-grid article,
.journey-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(15, 38, 54, 0.08);
}

.latest-grid article::after,
.theme-grid article::after,
.journey-grid article::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 170, 206, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.home-page .latest-grid article {
  border-color: rgba(63, 113, 152, 0.14);
  background: rgba(255, 250, 242, 0.9);
}

.latest-grid span,
.theme-grid span,
.journey-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.latest-grid h3,
.theme-grid h3 {
  color: var(--white);
}

.home-page .latest-grid h3 {
  color: var(--ink);
}

.latest-grid p,
.theme-grid p,
.journey-grid p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.home-page .latest-grid p {
  color: var(--muted);
}

.latest-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--accent);
}

.content-page {
  min-height: calc(100vh - 78px);
  padding: clamp(72px, 10vw, 128px) 0;
}

@media (max-width: 1080px) {
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  margin-top: 36px;
}

.content-grid .plain-list {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.page-actions {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.content-grid .plain-list::after,
.page-actions::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  opacity: 0.36;
  background: repeating-linear-gradient(135deg, rgba(63, 113, 152, 0.22) 0 1px, transparent 1px 7px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  pointer-events: none;
}

.theme-section {
  margin-top: clamp(42px, 7vw, 86px);
}

.theme-section .section-heading {
  margin-bottom: 24px;
}

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

.theme-grid article {
  min-height: 220px;
}

.journey-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 22px;
}

.journey-grid article {
  min-height: 190px;
}

.journey-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.journey-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.journey-grid-compact article {
  min-height: auto;
  padding: 12px 14px;
}

.journey-grid-compact span {
  margin-bottom: 6px;
  font-size: 0.68rem;
}

.journey-grid-compact strong {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.journey-grid-compact p {
  font-size: 0.84rem;
  line-height: 1.36;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(42px, 7vw, 86px);
}

.role-card,
.source-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 2px solid rgba(242, 179, 93, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 28px rgba(15, 38, 54, 0.1);
}

.role-card::after,
.source-panel::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 28px;
  height: 16px;
  border: 0;
  border-radius: 999px 0 999px 999px;
  background: rgba(127, 162, 118, 0.2);
  transform: rotate(-18deg);
}

.role-card-wide {
  grid-column: span 2;
}

.role-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.role-card p,
.source-panel p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.72;
}

.source-panel {
  margin-top: 16px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.source-links a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(242, 179, 93, 0.5);
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
}

.sub-page .summerhouse-gallery img {
  border: 1px solid rgba(63, 113, 152, 0.14);
  border-bottom: 2px solid var(--accent);
  border-radius: 18px;
}

.sub-page .book-feature-next {
  border-top-color: rgba(63, 113, 152, 0.18);
}

.salon-page .quick-points,
.salon-page .section,
.salon-page .image-section,
.salon-page .color-selector-section,
.salon-page .hair-ai-section,
.salon-page .cta-band {
  color: var(--ink);
}

.salon-page .quick-points {
  border-color: rgba(63, 113, 152, 0.14);
  background: rgba(63, 113, 152, 0.12);
}

.salon-page .section,
.salon-page .hair-ai-section {
  position: relative;
}

.salon-page .section::after {
  right: 2px;
  top: clamp(44px, 7vw, 84px);
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 170, 206, 0.28);
}

.salon-page .hair-ai-section::after {
  right: 12px;
  top: 30px;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 115, 79, 0.24);
}

.salon-page .quick-points article,
.salon-page .service-grid article,
.salon-page .color-selector,
.salon-page .color-result,
.salon-page .hair-ai-tool,
.salon-page .hair-ai-output,
.salon-page .hair-ai-results article,
.salon-page .hair-ai-cta {
  border-color: rgba(63, 113, 152, 0.16);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 18px 42px rgba(61, 48, 35, 0.08);
}

.salon-page .service-grid article:nth-child(1) {
  border-top-color: rgba(122, 170, 206, 0.72);
}

.salon-page .service-grid article:nth-child(2) {
  border-top-color: rgba(200, 115, 79, 0.72);
}

.salon-page .service-grid article:nth-child(3) {
  border-top-color: rgba(119, 139, 111, 0.72);
}

.salon-page .quick-points strong,
.salon-page .service-grid h3,
.salon-page .section h2,
.salon-page .image-section h2,
.salon-page .color-selector-heading h2,
.salon-page .hair-ai-heading h2,
.salon-page .cta-band h2 {
  color: var(--ink);
}

.salon-page .quick-points span,
.salon-page .check-list p,
.salon-page .check-list li,
.salon-page .services p,
.salon-page .about p,
.salon-page .plain-list li,
.salon-page .image-section p,
.salon-page .color-selector-heading p,
.salon-page .hair-ai-heading p,
.salon-page .hair-ai-consent,
.salon-page .hair-ai-status,
.salon-page .hair-ai-step p,
.salon-page .hair-ai-output p,
.salon-page .hair-ai-empty p,
.salon-page .cta-band p {
  color: var(--muted);
}

.salon-page .section-label,
.salon-page .color-control-label,
.salon-page .color-result-label,
.salon-page .hair-ai-color-control span {
  color: var(--blue-dark);
}

.salon-page .color-option {
  color: var(--ink);
  border-color: rgba(63, 113, 152, 0.18);
  background: rgba(122, 170, 206, 0.08);
}

.salon-page .color-option.is-active {
  border-color: rgba(200, 115, 79, 0.76);
  background: rgba(200, 115, 79, 0.12);
}

.salon-page .journey-grid article {
  border-color: rgba(63, 113, 152, 0.16);
  background: rgba(255, 250, 242, 0.88);
}

.salon-page .journey-grid p {
  color: var(--muted);
}

.salon-page .hair-ai-step h3,
.salon-page .hair-ai-output h3 {
  color: var(--ink);
}

.salon-page .hair-ai-dropzone {
  border-color: rgba(63, 113, 152, 0.28);
  background: rgba(122, 170, 206, 0.08);
}

.salon-page .hair-ai-dropzone span,
.salon-page .hair-ai-cta p {
  color: var(--ink);
}

.salon-page .hair-ai-dropzone span {
  color: #263843;
}

.salon-page .hair-ai-dropzone small,
.salon-page .hair-ai-upload input[type="file"] {
  color: var(--muted);
}

.sub-page .content-page,
.sub-page .page-hero,
.sub-page .price-section {
  color: var(--ink);
}

.sub-page .content-page .eyebrow,
.sub-page .page-hero .eyebrow,
.sub-page .section-label {
  color: var(--blue-dark);
}

.sub-page .content-page h1,
.sub-page .content-page h2,
.sub-page .content-page h3,
.sub-page .page-hero h1,
.sub-page .price-section h2,
.sub-page .price-section h3,
.sub-page .cta-band h2 {
  color: var(--ink);
}

.sub-page .content-page p,
.sub-page .page-hero p,
.sub-page .content-grid .plain-list li,
.sub-page .theme-grid p,
.sub-page .role-card p,
.sub-page .source-panel p,
.sub-page .book-copy p,
.sub-page .book-notes p,
.sub-page .download-panel p,
.sub-page .sneakpeek-copy p,
.sub-page .back-cover-text p,
.sub-page .price-row,
.sub-page .price-intro p,
.sub-page .cta-band p {
  color: var(--muted);
}

.sub-page .content-grid .plain-list,
.sub-page .page-actions,
.sub-page .theme-grid article,
.sub-page .role-card,
.sub-page .source-panel,
.sub-page .book-cover-wrap,
.sub-page .download-panel,
.sub-page .sneakpeek-panel,
.sub-page .back-cover-text,
.sub-page .price-card,
.sub-page .cta-band {
  border-color: rgba(63, 113, 152, 0.16);
  border-top-color: rgba(242, 179, 93, 0.82);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 38, 54, 0.08);
}

.sub-page .theme-grid h3,
.sub-page .role-card h2,
.sub-page .source-panel h2,
.sub-page .journey-grid strong {
  color: var(--ink);
}

.sub-page .source-links a,
.sub-page .button-outline {
  color: var(--blue-dark);
  border-color: rgba(63, 113, 152, 0.28);
  background: rgba(255, 255, 255, 0.62);
}

.sub-page .price-row {
  border-top-color: rgba(63, 113, 152, 0.14);
}

.sub-page .price-row strong,
.sub-page .price-row strong::after {
  color: var(--blue-dark);
}

@media (max-width: 1080px) {
  .theme-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.summerhouse-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  margin-top: clamp(42px, 7vw, 86px);
}

.summerhouse-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 12px 28px rgba(15, 38, 54, 0.12);
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  margin-top: clamp(36px, 6vw, 72px);
}

.book-cover-wrap {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(15, 38, 54, 0.14);
}

.book-cover-wrap::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 24px;
  width: 16px;
  height: 46px;
  border-radius: 999px 0 999px 999px;
  background: var(--leaf);
  transform: rotate(-12deg);
}

.book-cover-wrap img {
  width: 100%;
  border-radius: 6px;
}

.book-cover-fallback {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 28px;
  border-radius: 6px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(180deg, rgba(9, 25, 34, 0.92), rgba(9, 25, 34, 0.68));
}

.book-cover-fallback strong,
.book-cover-fallback small {
  display: block;
}

.book-cover-fallback strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.book-cover-fallback small {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-cover-wrap-dark {
  background: rgba(9, 25, 34, 0.34);
}

.book-copy h2,
.back-cover-text h2 {
  margin-bottom: 20px;
}

.book-feature-next {
  margin-top: clamp(56px, 9vw, 112px);
  padding-top: clamp(42px, 7vw, 86px);
  border-top: 1px solid rgba(242, 179, 93, 0.34);
}

.download-panel {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-left: 2px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.download-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-panel p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.sneakpeek-panel {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-left: 2px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.sneakpeek-panel summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}

.sneakpeek-copy {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sneakpeek-copy p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.back-cover-text {
  margin-top: clamp(56px, 9vw, 112px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(242, 179, 93, 0.34);
  border-top: 2px solid var(--accent);
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(15, 38, 54, 0.12);
}

.back-cover-text p {
  max-width: 820px;
}

.book-notes {
  margin-top: clamp(42px, 7vw, 86px);
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 20px;
  }

  .brand {
    width: 100%;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    text-align: center;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-content {
    padding: 56px 0 220px;
  }

  .booking-card {
    left: 16px;
    right: 16px;
  }

  .quick-points,
  .service-grid,
  .section,
  .image-section,
  .color-selector,
  .hair-ai-workspace,
  .hair-ai-tool,
  .summerhouse-gallery,
  .price-intro,
  .price-grid,
  .pathway-grid,
  .content-grid,
  .role-grid,
  .book-feature {
    grid-template-columns: 1fr;
  }

  .chooser-hero,
  .content-page {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .chooser-hero {
    align-content: start;
    gap: 34px;
  }

  .chooser-copy h1,
  .content-page h1 {
    font-size: clamp(2.35rem, 10vw, 4rem);
    line-height: 1.04;
  }

  .chooser-copy p,
  .content-page p,
  .page-hero p {
    font-size: 1.04rem;
    line-height: 1.72;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .section {
    gap: 24px;
    padding: 58px 0;
  }

  .quick-points article,
  .service-grid article {
    min-height: auto;
  }

  .image-section {
    padding-top: 18px;
  }

  .price-card-wide {
    grid-column: auto;
  }

  .pathway-card {
    min-height: auto;
    padding: 26px;
  }

  .pathway-card h2 {
    margin-top: 22px;
  }

  .pathway-grid,
  .latest-grid,
  .theme-grid,
  .journey-grid,
  .role-grid,
  .service-grid,
  .price-grid,
  .summerhouse-gallery {
    gap: 18px;
  }

  .latest-grid,
  .theme-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    gap: 28px;
    margin-top: 28px;
  }

  .color-selector-section {
    padding-bottom: 72px;
  }

  .hair-ai-section {
    padding-bottom: 38px;
  }

  .journey-grid-compact {
    gap: 8px;
    margin-bottom: 12px;
  }

  .journey-grid-compact article {
    padding: 12px 14px;
  }

  .section-nav {
    position: static;
    border-radius: 18px;
  }

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

  .color-result {
    min-height: auto;
  }

  .role-card-wide {
    grid-column: auto;
  }

  .role-card,
  .source-panel,
  .content-grid .plain-list,
  .download-panel,
  .sneakpeek-panel,
  .back-cover-text {
    padding: 24px;
  }

  .book-feature {
    gap: 28px;
    align-items: start;
  }

  .book-feature-next,
  .back-cover-text,
  .book-notes {
    margin-top: 54px;
  }

  .book-cover-wrap {
    max-width: 360px;
  }

  .summerhouse-gallery img {
    min-height: 240px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
    padding: 16px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    max-width: 170px;
  }

  .header-cta {
    width: 100%;
    padding-inline: 14px;
  }

  .main-nav a {
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
    line-height: 1.04;
  }

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

  .quick-points {
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .section,
  .image-section,
  .color-selector-section,
  .hair-ai-section,
  .page-hero,
  .price-section,
  .chooser-hero,
  .content-page,
  .cta-band,
  .site-footer {
    width: calc(100vw - 40px);
  }

  .pathway-card,
  .role-card,
  .source-panel,
  .color-selector,
  .color-result,
  .hair-ai-tool,
  .hair-ai-cta,
  .content-grid .plain-list,
  .download-panel,
  .sneakpeek-panel,
  .back-cover-text {
    padding: 22px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .color-option-grid {
    grid-template-columns: 1fr;
  }

  .color-swatch {
    width: 100%;
    max-width: none;
  }

  .hair-ai-results {
    grid-template-columns: 1fr;
  }

  .hair-ai-preview {
    width: 100%;
  }

  .summerhouse-gallery img {
    min-height: 220px;
  }
}
