﻿:root {
  --bg: #f3eee7;
  --bg-soft: #f8f5f0;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #161311;
  --text: #171412;
  --text-soft: #5f5952;
  --text-faint: #8f877e;
  --text-inverse: #f4eee7;
  --line: rgba(23, 20, 18, 0.12);
  --line-strong: rgba(23, 20, 18, 0.2);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #b08a58;
  --accent-deep: #957149;
  --shadow-soft: 0 18px 40px rgba(18, 14, 12, 0.08);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

::selection {
  background: rgba(176, 138, 88, 0.22);
}

.layout {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.topline {
  background: rgba(248, 245, 240, 0.95);
  border-bottom: 1px solid var(--line);
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topline-inner p {
  margin: 0;
}

.topline-inner a {
  text-decoration: none;
  transition: color 0.25s ease;
}

.topline-inner a:hover,
.topline-inner a:focus-visible {
  color: var(--accent-deep);
}

.header {
  position: relative;
  background: rgba(248, 245, 240, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 2.7rem 0 1.8rem;
}

.brand img {
  width: clamp(260px, 36vw, 700px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.8rem;
}

.nav a {
  position: relative;
  padding: 0.2rem 0;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.75);
  transform-origin: center;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: clamp(720px, 88vh, 980px);
  background:
    linear-gradient(180deg, rgba(17, 14, 12, 0.22), rgba(17, 14, 12, 0.5)),
    url("./assets/hero-paris.svg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, 0.54), rgba(15, 13, 11, 0.16) 46%, rgba(15, 13, 11, 0.38)),
    linear-gradient(180deg, rgba(15, 13, 11, 0.1), rgba(15, 13, 11, 0.26));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: clamp(6.5rem, 10vh, 8rem) 0 clamp(3rem, 7vh, 5rem);
}

.hero-panel {
  width: min(100%, 760px);
  padding: clamp(1.6rem, 3vw, 3rem);
  border: 1px solid var(--line-light);
  background: rgba(15, 13, 11, 0.42);
  color: var(--text-inverse);
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #d2b588;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.7rem, 8vw, 7.4rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-copy {
  max-width: 39rem;
  margin: 1.55rem 0 0;
  color: rgba(244, 238, 231, 0.9);
  font-size: 1.08rem;
}

.hero-actions,
.support-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 2.15rem;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: 1.5rem;
  color: rgba(244, 238, 231, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signature span {
  position: relative;
}

.hero-signature span + span::before {
  content: "";
  position: absolute;
  left: -0.82rem;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(244, 238, 231, 0.42);
  transform: translateY(-50%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background-color 0.26s ease,
    border-color 0.26s ease,
    color 0.26s ease,
    transform 0.26s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.68;
}

.button-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #171311;
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.button-outline-light {
  border-color: rgba(244, 238, 231, 0.34);
  color: var(--text-inverse);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: rgba(244, 238, 231, 0.72);
}

.button-dark {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: var(--text-inverse);
}

.button-outline-dark {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}

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

.section-dark {
  background: var(--surface-dark);
  color: var(--text-inverse);
}

.intro-grid,
.transformation-grid,
.support-shell {
  display: grid;
  gap: 2.6rem;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
}

.intro-grid-wide {
  margin-bottom: 2.4rem;
}

.intro-copy {
  max-width: 36rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.intro-copy-rich {
  max-width: 42rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 1.3rem;
}

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

.founder-card {
  min-height: 260px;
  padding: 1.65rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.founder-card h3 {
  margin-top: 0.15rem;
  font-size: 1.32rem;
}

.founder-card p:not(.eyebrow) {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
}

.founder-list {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.founder-list li + li {
  margin-top: 0.65rem;
}

.founder-list li::before {
  content: "-";
  margin-right: 0.55rem;
  color: var(--accent);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2.8rem;
}

.section-heading p {
  margin: 1.05rem 0 0;
  max-width: 40rem;
  color: var(--text-soft);
}

.section-heading-narrow {
  max-width: 50rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.service-index {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-body p {
  max-width: 46rem;
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.transformation-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.transformation-copy p:not(.eyebrow) {
  max-width: 30rem;
  margin-top: 1.15rem;
  color: rgba(244, 238, 231, 0.74);
}

.transformation-figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.figure-card,
.profile-card,
.access-card {
  border: 1px solid var(--line);
  background: var(--surface);
}

.figure-card {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.figure-card figcaption {
  padding: 1.05rem 1.25rem 1.3rem;
  color: rgba(244, 238, 231, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.profile-card {
  min-height: 200px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.65);
}

.profile-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
}

.profile-card p {
  margin: 0;
  color: var(--text-soft);
}

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

.access-card {
  min-height: 330px;
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.72);
}

.access-card h3 {
  margin-top: 0.2rem;
}

.access-card p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
}

.access-card .button {
  width: 100%;
  margin-top: 1.5rem;
}

.support {
  background: linear-gradient(180deg, rgba(248, 245, 240, 0.98), rgba(243, 238, 231, 1));
}

.support-shell {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-copy p:not(.eyebrow) {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--text-soft);
}

.support-contact {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.support-contact a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(149, 113, 73, 0.28);
}

.support-contact a:hover,
.support-contact a:focus-visible {
  border-bottom-color: var(--accent-deep);
}

.site-footer {
  background: #12100f;
  color: rgba(244, 238, 231, 0.76);
  padding: 2.6rem 0 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.5rem;
  align-items: end;
}

.footer-brand img {
  width: clamp(180px, 18vw, 320px);
  margin-bottom: 0.75rem;
}

.footer-brand p,
.footer-meta p {
  margin: 0.2rem 0;
}

.footer-links {
  justify-content: flex-end;
  align-items: center;
}

.footer-links a {
  color: rgba(244, 238, 231, 0.86);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

a:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

  .button,
  .nav a::after,
  .topline-inner a {
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .intro-grid,
  .transformation-grid,
  .support-shell {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .layout {
    width: min(calc(100% - 1.4rem), var(--max));
  }

  .topline-inner {
    flex-direction: column;
    justify-content: center;
    min-height: 58px;
    padding: 0.55rem 0;
    text-align: center;
  }

  .header-inner {
    gap: 1.2rem;
    padding: 2rem 0 1.35rem;
  }

  .brand img {
    width: min(100%, 520px);
  }

  .nav {
    gap: 0.7rem 1rem;
  }

  .nav a {
    font-size: 0.76rem;
  }

  .hero {
    min-height: 700px;
    background-position: 40% center;
  }

  .hero-panel {
    width: 100%;
    padding: 1.45rem;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-actions,
  .support-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .transformation-figures,
  .profiles-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .profile-card,
    .access-card {
    min-height: auto;
  }
}

