:root {
  --ink: #241c13;
  --muted: #756a58;
  --paper: #efe2c4;
  --white: #ffffff;
  --soft: #e5d2a9;
  --deep: #15130d;
  --deep-2: #28331f;
  --teal: #6c9186;
  --green: #77854d;
  --magenta: #8b4a3a;
  --orange: #b8793b;
  --gold: #c6a15e;
  --line: rgba(36, 28, 19, 0.18);
  --shadow: 0 28px 90px rgba(36, 28, 19, 0.22);
  --display-font: "Monotype Corsiva", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --body-font: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --ui-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 161, 94, 0.22), transparent 34%),
    linear-gradient(180deg, #f2e7cb, var(--paper));
  font-family: var(--body-font);
  line-height: 1.5;
}

body.intro-active {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.no-intro-preview .intro-screen {
  display: none;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.hero h2,
.intro-content h1,
.section-heading h2,
.corporate-layout h2,
.contact-copy h2,
.gallery-panel strong,
.package-card h3,
.deliverables-grid h3,
.journey-steps h3,
.formats-grid h3,
.ethics-list h3,
.modal-dossier-grid strong,
.before-panel h2,
.after-panel h2,
.corporate-example-copy h2,
.structure-points h3,
.concierge-panel h2,
.legal-hero h1,
.legal-content h2 {
  font-family: var(--display-font);
  letter-spacing: 0.01em;
}

.nav-links a,
.header-action,
.button,
.intro-enter,
.video-toggle,
.compass-controls button,
.contact-form,
.contact-methods a,
.footer-links a,
.eyebrow,
.intro-kicker,
.quick-facts,
.faq-list summary,
.archive-modal-close {
  font-family: var(--ui-font);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
}

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

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  transition:
    opacity 800ms ease,
    visibility 800ms ease;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.intro-video {
  object-fit: cover;
}

.intro-overlay {
  background:
    radial-gradient(ellipse at 16% 24%, rgba(8, 6, 3, 0.9), transparent 26%),
    radial-gradient(circle at 28% 34%, rgba(198, 161, 94, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(18, 14, 9, 0.82), rgba(18, 14, 9, 0.54)),
    rgba(18, 14, 9, 0.28);
}

.intro-content {
  position: relative;
  z-index: 1;
  width: min(840px, calc(100% - 40px));
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 44px 0;
}

.intro-content img {
  width: min(210px, 48vw);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.intro-kicker,
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-content h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: 0.95;
  font-weight: 500;
}

.intro-enter {
  min-height: 52px;
  margin-top: 12px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.intro-enter:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 150px;
  padding: 14px 5vw;
  background: rgba(239, 226, 196, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links a,
.header-action,
.button,
.contact-methods a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.site-footer img {
  display: block;
  width: 132px;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(36, 28, 19, 0.2));
}

.site-footer img {
  width: 104px;
}

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

.nav-links a,
.header-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.nav-links a:hover,
.header-action:hover {
  background: var(--soft);
}

.header-action {
  color: var(--deep-2);
  border: 1px solid rgba(29, 52, 47, 0.24);
  white-space: nowrap;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 82px 5vw;
  color: var(--white);
  background: var(--deep);
}

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

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

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(ellipse at 17% 22%, rgba(8, 6, 3, 0.92), transparent 25%),
    radial-gradient(circle at 62% 32%, rgba(198, 161, 94, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(18, 14, 9, 0.86), rgba(18, 14, 9, 0.48)),
    linear-gradient(0deg, rgba(18, 14, 9, 0.28), rgba(18, 14, 9, 0.08));
}

.hero-content {
  width: min(760px, 100%);
}

.hero h2 {
  margin: 12px 0 0;
  font-size: 88px;
  line-height: 0.94;
  font-weight: 950;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.25;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--deep-2);
  box-shadow: 0 18px 38px rgba(16, 24, 22, 0.22);
}

.button-primary:hover {
  background: #274942;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.video-toggle {
  position: absolute;
  right: 5vw;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 18, 17, 0.48);
  font-weight: 900;
  cursor: pointer;
}

.statement-band {
  background:
    linear-gradient(90deg, rgba(198, 161, 94, 0.2), transparent 34%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.statement-inner {
  width: min(1160px, calc(100% - 10vw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 38px 0;
}

.statement-inner > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.36;
  color: var(--ink);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.quick-facts div {
  border-left: 4px solid var(--teal);
  padding: 4px 0 4px 14px;
}

.quick-facts div:nth-child(2) {
  border-left-color: var(--green);
}

.quick-facts div:nth-child(3) {
  border-left-color: var(--orange);
}

.quick-facts dt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.section {
  padding: 96px 5vw;
  scroll-margin-top: 96px;
}

.section-light,
.section-packages {
  background: var(--soft);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

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

.section-heading h2,
.corporate-layout h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1.04;
  font-weight: 500;
}

.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.corporate-copy p {
  color: var(--muted);
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 233, 0.76);
  box-shadow: 0 18px 48px rgba(36, 28, 19, 0.08);
}

.service-card-accent {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(216, 58, 138, 0.58), rgba(80, 195, 203, 0.22)),
    var(--deep-2);
}

.service-card-accent p {
  color: rgba(255, 255, 255, 0.86);
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
}

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

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

.section-compass {
  padding-top: 76px;
  background:
    radial-gradient(circle at 78% 18%, rgba(198, 161, 94, 0.18), transparent 30%),
    var(--paper);
}

.compass-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: center;
}

.compass-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(36, 28, 19, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 233, 0.74), rgba(229, 210, 169, 0.82)),
    var(--soft);
  box-shadow: var(--shadow);
}

.compass-rose {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(36, 28, 19, 0.22);
  border-radius: 50%;
  background:
    conic-gradient(from 45deg, transparent 0 20deg, rgba(198, 161, 94, 0.32) 20deg 25deg, transparent 25deg 90deg),
    radial-gradient(circle, rgba(198, 161, 94, 0.22), transparent 64%);
}

.compass-rose::before,
.compass-rose::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(36, 28, 19, 0.22);
  transform: rotate(45deg);
}

.compass-rose::after {
  inset: 76px;
  border-radius: 50%;
  transform: none;
  background: var(--deep-2);
}

.compass-rose span {
  position: absolute;
  z-index: 1;
  color: var(--gold);
  font-weight: 950;
}

.compass-rose span:nth-child(1) {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.compass-rose span:nth-child(2) {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.compass-rose span:nth-child(3) {
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.compass-rose span:nth-child(4) {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

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

.compass-controls button {
  min-height: 64px;
  border: 1px solid rgba(36, 28, 19, 0.22);
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 249, 233, 0.58);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.compass-controls button:hover,
.compass-controls button.is-active {
  color: #f8edcf;
  background: var(--deep-2);
}

.compass-result {
  grid-column: 2;
  display: grid;
  gap: 8px;
  margin-top: -96px;
  align-self: end;
  padding: 20px;
  border-radius: 8px;
  color: #f8edcf;
  background:
    radial-gradient(circle at 16% 0%, rgba(198, 161, 94, 0.2), transparent 32%),
    var(--deep);
}

.compass-result span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.compass-result strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.compass-result p {
  margin: 0;
  color: rgba(248, 237, 207, 0.82);
}

.section-archive {
  background:
    linear-gradient(115deg, rgba(21, 19, 13, 0.96), rgba(40, 51, 31, 0.92)),
    var(--deep);
  color: #f8edcf;
}

.section-archive .section-heading p:not(.eyebrow) {
  color: rgba(248, 237, 207, 0.78);
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.film-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.film-card {
  min-height: 360px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 94, 0.36);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.film-card-tall {
  transform: translateY(34px);
}

.film-card video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  filter: sepia(0.22) saturate(0.82) contrast(1.08);
}

.film-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 4, 0.82), transparent 38%),
    linear-gradient(180deg, transparent 35%, rgba(10, 8, 4, 0.86)),
    radial-gradient(ellipse at 18% 22%, rgba(8, 6, 3, 0.78), transparent 26%);
}

.film-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.film-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.film-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.package-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(36, 28, 19, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 233, 0.86), rgba(229, 210, 169, 0.68)),
    var(--paper);
  box-shadow: 0 18px 58px rgba(36, 28, 19, 0.1);
}

.package-featured {
  color: #f8edcf;
  background:
    radial-gradient(circle at 22% 14%, rgba(198, 161, 94, 0.22), transparent 28%),
    linear-gradient(160deg, rgba(73, 52, 31, 0.98), rgba(21, 19, 13, 0.98));
}

.package-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 500;
}

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

.package-featured p {
  color: rgba(248, 237, 207, 0.78);
}

.package-featured li {
  color: rgba(248, 237, 207, 0.92);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  color: var(--muted);
  font-size: 15px;
}

.package-card li::before {
  content: "— ";
  color: var(--gold);
}

.package-card a {
  margin-top: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.package-card:not(.package-featured) a {
  color: var(--deep);
}

.section-deliverables {
  background:
    linear-gradient(180deg, rgba(255, 249, 233, 0.52), rgba(229, 210, 169, 0.78)),
    var(--paper);
}

.deliverables-layout,
.journey-layout,
.ethics-layout,
.faq-layout,
.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: start;
}

.deliverables-grid,
.journey-steps,
.formats-grid,
.ethics-list,
.modal-dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.deliverables-grid article,
.journey-steps article,
.formats-grid article,
.ethics-list article,
.modal-dossier-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(36, 28, 19, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 249, 233, 0.86), rgba(229, 210, 169, 0.62)),
    var(--soft);
  box-shadow: 0 18px 48px rgba(36, 28, 19, 0.08);
}

.modal-dossier-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.deliverables-grid h3,
.journey-steps h3,
.formats-grid h3,
.ethics-list h3,
.modal-dossier-grid strong {
  display: block;
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.04;
  font-weight: 500;
}

.deliverables-grid p,
.journey-steps p,
.formats-grid p,
.ethics-list p,
.modal-dossier-grid p {
  margin: 0;
  color: var(--muted);
}

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

.journey-steps article {
  position: relative;
  overflow: hidden;
}

.journey-steps article::before,
.formats-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--gold);
  opacity: 0.72;
  pointer-events: none;
}

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

.gallery-panel {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
  position: relative;
  background-size: auto 106%;
  background-position: center;
  box-shadow: 0 18px 42px rgba(36, 28, 19, 0.18);
  transform: translateY(18px) scale(0.985);
  transition:
    background-size 900ms ease,
    box-shadow 900ms ease,
    filter 900ms ease,
    transform 900ms ease;
  filter: saturate(0.92) brightness(0.94);
}

.gallery-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  transition:
    opacity 900ms ease,
    background 900ms ease;
}

.panel-map {
  background-image: url("assets/geneo-cartography-art.png");
}

.panel-document {
  background-image: url("assets/geneo-documents-art.png");
}

.panel-portrait {
  background-image: url("assets/geneo-portraits-art.png");
}

.panel-manuscript {
  background-image: url("assets/geneo-manuscript-art.png");
}

.panel-map::before,
.panel-document::before,
.panel-portrait::before,
.panel-manuscript::before {
  background:
    linear-gradient(180deg, rgba(8, 6, 3, 0.08), rgba(8, 6, 3, 0.64)),
    linear-gradient(90deg, rgba(8, 6, 3, 0.38), transparent 62%);
}

.gallery-panel.is-lit,
.gallery-panel:hover,
.gallery-panel:focus-within {
  background-size: auto 116%;
  filter: saturate(1.08) brightness(1.16);
  transform: translateY(0) scale(1.025);
  box-shadow:
    0 28px 70px rgba(36, 28, 19, 0.28),
    0 0 0 1px rgba(198, 161, 94, 0.38);
}

.gallery-panel.is-lit::before,
.gallery-panel:hover::before,
.gallery-panel:focus-within::before {
  background:
    linear-gradient(180deg, rgba(8, 6, 3, 0), rgba(8, 6, 3, 0.48)),
    linear-gradient(90deg, rgba(8, 6, 3, 0.24), transparent 64%);
}

.gallery-panel span,
.gallery-panel strong {
  position: relative;
  z-index: 1;
}

.gallery-panel span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.gallery-panel strong {
  max-width: 260px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 500;
}

.section-split,
.section-timeline {
  background: var(--white);
}

.section-before-after {
  background:
    radial-gradient(circle at 18% 30%, rgba(198, 161, 94, 0.2), transparent 30%),
    var(--paper);
}

.trust-band {
  padding: 34px 5vw;
  background:
    linear-gradient(90deg, rgba(21, 19, 13, 0.94), rgba(40, 51, 31, 0.9)),
    var(--deep);
  color: #f8edcf;
}

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

.trust-grid article {
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 249, 233, 0.06);
}

.trust-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.trust-grid p {
  margin: 0;
  color: rgba(248, 237, 207, 0.78);
}

.before-after-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.before-panel,
.after-panel {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: #f8edcf;
  background: var(--deep);
  background-size: 106% auto;
  background-position: center;
  box-shadow: 0 20px 52px rgba(36, 28, 19, 0.18);
  transform: translateY(14px) scale(0.99);
  transition:
    background-size 900ms ease,
    box-shadow 900ms ease,
    filter 900ms ease,
    transform 900ms ease;
  filter: saturate(0.94) brightness(0.96);
}

.before-panel::before,
.after-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition:
    opacity 900ms ease,
    background 900ms ease;
}

.before-panel::before {
  background:
    linear-gradient(180deg, rgba(21, 19, 13, 0.04), rgba(21, 19, 13, 0.68)),
    linear-gradient(90deg, rgba(21, 19, 13, 0.34), transparent 64%);
}

.after-panel::before {
  background:
    linear-gradient(180deg, rgba(21, 19, 13, 0.02), rgba(21, 19, 13, 0.66)),
    linear-gradient(90deg, rgba(21, 19, 13, 0.32), transparent 64%);
}

.before-panel.is-lit,
.after-panel.is-lit,
.before-panel:hover,
.after-panel:hover,
.before-panel:focus-within,
.after-panel:focus-within {
  background-size: 112% auto;
  filter: saturate(1.08) brightness(1.14);
  transform: translateY(0) scale(1.015);
  box-shadow:
    0 30px 76px rgba(36, 28, 19, 0.3),
    0 0 0 1px rgba(198, 161, 94, 0.34);
}

.before-panel.is-lit::before,
.after-panel.is-lit::before,
.before-panel:hover::before,
.after-panel:hover::before,
.before-panel:focus-within::before,
.after-panel:focus-within::before {
  opacity: 0.78;
  background:
    linear-gradient(180deg, rgba(21, 19, 13, 0), rgba(21, 19, 13, 0.5)),
    linear-gradient(90deg, rgba(21, 19, 13, 0.2), transparent 66%);
}

.before-panel {
  background-image: url("assets/geneo-documents-art.png");
}

.after-panel {
  background-image: url("assets/geneo-cartography-art.png");
}

.before-panel > *,
.after-panel > * {
  position: relative;
  z-index: 1;
}

.before-panel h2,
.after-panel h2 {
  max-width: 520px;
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.02;
  font-weight: 500;
}

.before-panel p:not(.eyebrow),
.after-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(248, 237, 207, 0.84);
  font-size: 18px;
}

.split-layout,
.corporate-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 0 0 30px 58px;
  border-left: 2px solid rgba(29, 52, 47, 0.18);
  counter-increment: steps;
}

.process-list li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.process-list li::before {
  content: counter(steps);
  position: absolute;
  left: -19px;
  top: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-2);
  font-weight: 950;
}

.process-list strong {
  font-size: 21px;
}

.process-list span {
  color: var(--muted);
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(198, 161, 94, 0.18));
}

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 233, 0.74);
}

.timeline-list span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.timeline-list strong {
  font-size: 18px;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 24, 22, 0.96), rgba(29, 52, 47, 0.84)),
    linear-gradient(90deg, rgba(16, 24, 22, 0.96), rgba(16, 24, 22, 0.52)),
    url("assets/geneo-corporate-art.png") center / cover,
    var(--deep);
}

.section-dark .eyebrow {
  color: #8be0da;
}

.corporate-copy p {
  color: rgba(255, 255, 255, 0.82);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 18px 0 0 var(--green);
}

.section-corporate-example {
  background:
    radial-gradient(circle at 12% 16%, rgba(198, 161, 94, 0.18), transparent 30%),
    linear-gradient(180deg, #fff7df, var(--paper));
}

.corporate-example-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 44px;
  align-items: center;
}

.corporate-map-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 19, 0.22);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.corporate-map-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.corporate-example-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 500;
}

.corporate-example-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.structure-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.structure-points article {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 249, 233, 0.72);
  box-shadow: 0 12px 34px rgba(36, 28, 19, 0.07);
}

.structure-points h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.structure-points p {
  margin: 0;
  color: var(--muted);
}

.section-ethics {
  background:
    linear-gradient(135deg, rgba(40, 51, 31, 0.96), rgba(21, 19, 13, 0.9)),
    linear-gradient(90deg, rgba(21, 19, 13, 0.92), rgba(21, 19, 13, 0.5)),
    url("assets/geneo-ethics-art.png") center / cover,
    var(--deep);
  color: #f8edcf;
}

.section-studio {
  background:
    linear-gradient(180deg, rgba(255, 249, 233, 0.72), rgba(229, 210, 169, 0.7)),
    var(--paper);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 54px;
  align-items: center;
}

.studio-image {
  min-height: 420px;
  border-radius: 8px;
  border: 1px solid rgba(36, 28, 19, 0.2);
  background:
    linear-gradient(180deg, rgba(21, 19, 13, 0.04), rgba(21, 19, 13, 0.32)),
    url("assets/geneo-legacy-art.png") center / cover;
  box-shadow: var(--shadow);
}

.section-ethics .section-heading p:not(.eyebrow) {
  color: rgba(248, 237, 207, 0.78);
}

.ethics-list article {
  min-height: 170px;
  border-color: rgba(198, 161, 94, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 161, 94, 0.16), transparent 30%),
    rgba(255, 249, 233, 0.08);
}

.ethics-list h3 {
  color: #f8edcf;
}

.ethics-list p {
  color: rgba(248, 237, 207, 0.78);
}

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

.section-formats {
  background:
    linear-gradient(180deg, rgba(239, 226, 196, 0.76), rgba(255, 249, 233, 0.86)),
    var(--paper);
}

.formats-grid {
  margin-top: 42px;
}

.formats-grid article {
  min-height: 170px;
}

.archive-preview-button {
  min-height: 180px;
  width: 100%;
  align-self: stretch;
  border: 1px solid rgba(36, 28, 19, 0.22);
  border-radius: 8px;
  color: #f8edcf;
  background:
    linear-gradient(135deg, rgba(21, 19, 13, 0.34), rgba(21, 19, 13, 0.9)),
    url("assets/geneo-corporate-art.png") center / cover,
    var(--deep-2);
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.archive-preview-button:hover {
  filter: brightness(1.08);
}

.section-concierge {
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    linear-gradient(90deg, rgba(239, 226, 196, 0.96), rgba(239, 226, 196, 0.7)),
    url("assets/geneo-legacy-art.png") center / cover;
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(36, 28, 19, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 249, 233, 0.86), rgba(229, 210, 169, 0.5)),
    var(--paper);
  box-shadow: 0 12px 34px rgba(36, 28, 19, 0.07);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.concierge-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(36, 28, 19, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 18%, rgba(198, 161, 94, 0.22), transparent 28%),
    rgba(255, 249, 233, 0.84);
  backdrop-filter: blur(2px);
  box-shadow: 0 18px 58px rgba(36, 28, 19, 0.12);
}

.concierge-panel h2 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.04;
  font-weight: 500;
}

.archive-modal[hidden] {
  display: none;
}

.archive-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.archive-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 19, 13, 0.72);
  backdrop-filter: blur(8px);
}

.archive-modal-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(198, 161, 94, 0.4);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(198, 161, 94, 0.22), transparent 30%),
    var(--paper);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
}

.archive-modal-panel h2 {
  margin: 8px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
}

.archive-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(36, 28, 19, 0.22);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 249, 233, 0.9);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

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

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-methods a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--deep-2);
  font-weight: 900;
}

.contact-methods a:hover {
  background: var(--soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 23, 21, 0.2);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(80, 195, 203, 0.28);
  border-color: var(--teal);
}

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

.form-button {
  width: 100%;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 900;
}

.form-status.is-success {
  color: #123b28;
  background: rgba(114, 189, 85, 0.18);
}

.form-status.is-error {
  color: #6c203f;
  background: rgba(216, 58, 138, 0.14);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--soft);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(36, 28, 19, 0.18);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 0%, rgba(198, 161, 94, 0.18), transparent 32%),
    var(--paper);
}

.legal-hero,
.legal-content {
  width: min(900px, calc(100% - 10vw));
  margin: 0 auto;
}

.legal-hero {
  padding: 84px 0 36px;
}

.legal-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
}

.legal-content {
  padding: 0 0 90px;
}

.legal-content h2 {
  margin: 34px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.legal-content p {
  color: var(--muted);
  font-size: 18px;
}

.legal-content a {
  color: var(--deep-2);
  font-weight: 900;
}

.legal-note {
  margin-top: 42px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 249, 233, 0.6);
}

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

  .intro-screen {
    position: static;
    min-height: 420px;
  }

  .intro-video,
  .hero-video {
    display: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-height: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 560px;
  }

  .hero h2,
  .intro-content h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 24px;
  }

  .statement-inner,
  .archive-layout,
  .deliverables-layout,
  .journey-layout,
  .timeline-layout,
  .compass-layout,
  .ethics-layout,
  .studio-layout,
  .corporate-example-layout,
  .faq-layout,
  .preview-layout,
  .split-layout,
  .corporate-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .gallery-layout,
  .package-grid,
  .deliverables-grid,
  .journey-steps,
  .formats-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .film-card-tall {
    transform: none;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 20px;
  }

  .brand img {
    width: 104px;
  }

  .nav-links a,
  .header-action {
    padding: 7px 9px;
    font-size: 14px;
  }

  .intro-content h1 {
    font-size: 42px;
  }

  .intro-content img {
    width: 168px;
  }

  .hero {
    min-height: 470px;
    padding: 54px 20px 72px;
  }

  .hero h2 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 21px;
  }

  .hero-actions,
  .contact-methods {
    flex-direction: column;
  }

  .button,
  .contact-methods a {
    width: 100%;
  }

  .video-toggle {
    right: 20px;
    bottom: 20px;
  }

  .statement-inner {
    width: calc(100% - 40px);
  }

  .statement-inner > p {
    font-size: 21px;
  }

  .quick-facts,
  .services-grid,
  .gallery-layout,
  .package-grid,
  .deliverables-grid,
  .journey-steps,
  .formats-grid,
  .ethics-list,
  .trust-grid,
  .before-after-layout,
  .modal-dossier-grid,
  .film-grid,
  .compass-panel,
  .compass-controls,
  .contact-form,
  .concierge-panel {
    grid-template-columns: 1fr;
  }

  .compass-result {
    grid-column: auto;
    margin-top: 0;
  }

  .section {
    padding: 68px 20px;
  }

  .section-heading h2,
  .corporate-layout h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .gallery-panel {
    min-height: 260px;
  }

  .package-card {
    min-height: auto;
  }

  .studio-image {
    min-height: 300px;
  }

  .before-panel,
  .after-panel {
    min-height: 300px;
    padding: 24px;
  }

  .before-panel h2,
  .after-panel h2,
  .corporate-example-copy h2,
  .concierge-panel h2 {
    font-size: 32px;
  }

  .archive-preview-button {
    min-height: 140px;
    font-size: 28px;
  }

  .archive-modal-panel {
    padding: 26px 20px;
  }

  .archive-modal-panel h2 {
    font-size: 38px;
  }

  .timeline-list::before {
    left: 28px;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 56px;
  }

  .contact-form {
    padding: 20px;
    box-shadow: 0 16px 42px rgba(16, 24, 22, 0.12);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }
}
