:root {
  --ink: #1d2c25;
  --ink-2: #2b4036;
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --sand: #e7dcc8;
  --gold: #c69a63;
  --wine: #6c2e3c;
  --sage: #9aac99;
  --text: #26342d;
  --muted: #6d766f;
  --line: rgba(29, 44, 37, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(25, 39, 32, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}
.narrow {
  width: min(760px, 100%);
}
.section {
  padding: 120px 0;
}
.eyebrow {
  margin: 0 0 22px;
  color: #7c684d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #d9c39f;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
h1 {
  font-size: clamp(3.6rem, 7.4vw, 7rem);
}
h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}
h3 {
  line-height: 1.2;
}
em {
  font-weight: 500;
  color: #856743;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  transition: 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--ink-2);
  box-shadow: 0 12px 30px rgba(29, 44, 37, 0.18);
}
.button-small {
  min-height: 44px;
  padding: 0 19px;
  font-size: 0.88rem;
}
.button-light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}
.button-light:hover {
  background: #fff;
}
.button-outline {
  background: transparent;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
}
.text-link span,
.service-arrow {
  transition: transform 0.2s;
}
.text-link:hover span,
.service-row:hover .service-arrow {
  transform: translate(4px, -2px);
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}
.wordmark-main {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.16em;
}
.wordmark-sub {
  margin-top: 5px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: #536158;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--ink);
  transition: 0.25s;
}
.nav-link:hover:after,
.nav-link.active:after {
  right: 0;
}
.nav-link.active {
  color: var(--ink);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 7px auto;
}
.mobile-menu {
  display: none;
}
.hero {
  padding-top: 88px;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 83% 20%,
      rgba(198, 154, 99, 0.17),
      transparent 29%
    ),
    linear-gradient(135deg, #fffdf8 0%, #f4eddf 100%);
  overflow: hidden;
}
.hero-grid {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  padding-top: 50px;
  padding-bottom: 54px;
}
.hero h1 {
  margin-bottom: 28px;
  max-width: 760px;
}
.hero-lead {
  max-width: 670px;
  font-size: 1.16rem;
  color: #526057;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-proof strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ink);
}
.hero-proof span {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--muted);
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-frame {
  position: relative;
  width: min(450px, 100%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 230px 230px 32px 32px;
  box-shadow: var(--shadow);
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 1/1.16;
  object-fit: cover;
  object-position: center;
  border-radius: 210px 210px 22px 22px;
}
.floating-note {
  position: absolute;
  padding: 13px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(29, 44, 37, 0.16);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}
.note-top {
  top: 16%;
  left: -22%;
}
.note-bottom {
  right: -21%;
  bottom: 13%;
  background: var(--ink);
  color: #fff;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #8da17e;
  border-radius: 50%;
  margin-right: 8px;
}
.hero-marquee {
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 52px;
  padding: 20px 0;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #7d867f;
}
.marquee-track span:after {
  content: "•";
  margin-left: 52px;
  color: var(--gold);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.intro-section {
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: start;
}
.intro-grid h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.5rem);
}
.intro-copy {
  font-size: 1.1rem;
  color: #59645d;
}
.accent-text {
  font-family: var(--serif);
  font-size: 1.65rem !important;
  line-height: 1.25;
  color: var(--ink) !important;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pain-card {
  padding: 42px 38px;
  min-height: 300px;
  border-right: 1px solid var(--line);
}
.pain-card:last-child {
  border-right: 0;
}
.pain-card > span,
.detail-index,
.values-grid article > span {
  font-family: var(--serif);
  font-size: 2rem;
  color: #9a8060;
}
.pain-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 56px 0 14px;
}
.pain-card p {
  color: var(--muted);
}
.services-preview {
  background: var(--ivory);
}
.section-heading {
  max-width: 790px;
  margin-bottom: 62px;
}
.section-heading > p:last-child {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading.split > div {
  max-width: 780px;
}
.section-heading.split > div > p:last-child {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 190px 50px;
  gap: 25px;
  align-items: center;
  padding: 36px 6px;
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}
.service-row:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.52);
}
.service-number {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: #9a8060;
}
.service-row h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 7px;
}
.service-row p {
  margin: 0;
  color: var(--muted);
}
.service-price {
  text-align: right;
  font-weight: 600;
}
.service-arrow {
  font-size: 1.5rem;
  text-align: right;
}
.manifesto {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 760px;
  background: var(--ink);
}
.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manifesto-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(48px, 7vw, 110px);
  color: #fff;
}
.manifesto-panel blockquote {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  line-height: 1.02;
}
.manifesto-panel > p:not(.eyebrow) {
  color: #cdd4cf;
  max-width: 590px;
}
.manifesto-panel .button {
  align-self: flex-start;
  margin-top: 25px;
}
.projects-section {
  background: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 28px;
}
.project-card {
  position: relative;
}
.project-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(29, 44, 37, 0.08);
  transition: 0.45s;
}
.project-card:hover img {
  transform: translateY(-7px);
  box-shadow: 0 25px 65px rgba(29, 44, 37, 0.15);
}
.project-large {
  grid-column: span 2;
}
.project-large img {
  aspect-ratio: 2.2/1;
}
.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  padding: 20px 8px;
}
.project-meta span,
.case-tags,
.archive-card span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8a765d;
}
.project-meta h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 7px 0 0;
}
.project-meta p {
  margin: 0;
  color: var(--muted);
}
.status-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.process-section {
  background: var(--ivory);
}
.process-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}
.process-heading {
  position: sticky;
  top: 150px;
  align-self: start;
}
.process-heading p:last-child {
  color: var(--muted);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li > span {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #9a8060;
}
.process-list h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 8px;
}
.process-list p {
  margin: 0;
  color: var(--muted);
}
.resources-teaser {
  background: #fff;
}
.resource-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  background: var(--wine);
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
}
.resource-panel h2 {
  font-size: clamp(2.8rem, 4.7vw, 4.7rem);
}
.resource-panel p:not(.eyebrow) {
  color: #eadde0;
  max-width: 560px;
}
.resource-stack {
  position: relative;
  height: 430px;
}
.mini-book {
  position: absolute;
  width: 260px;
  height: 350px;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-book span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.mini-book strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}
.book-1 {
  left: 10%;
  top: 8%;
  background: #f1e7d6;
  color: var(--ink);
  transform: rotate(-8deg);
}
.book-2 {
  left: 36%;
  top: 3%;
  background: #21382e;
  color: #fff;
  transform: rotate(4deg);
}
.book-3 {
  left: 58%;
  top: 13%;
  background: #c69a63;
  color: #291e15;
  transform: rotate(10deg);
}
.final-cta {
  padding: 130px 0;
  background: var(--ink);
  color: #fff;
}
.final-cta .container {
  max-width: 1000px;
}
.final-cta h2 {
  max-width: 930px;
}
.final-cta > div > p:not(.eyebrow) {
  max-width: 670px;
  color: #cbd2cd;
  font-size: 1.08rem;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.email-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 6px;
}
.site-footer {
  padding: 80px 0 30px;
  background: #132019;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1fr 0.7fr;
  gap: 55px;
}
.wordmark-light {
  color: #fff;
}
.footer-note {
  max-width: 340px;
  color: #9eaaa3;
  margin-top: 25px;
}
.footer-title {
  color: #cdb28d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a {
  color: #dce1de;
  font-size: 0.9rem;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  color: #8f9a94;
}
.page-hero {
  padding: 190px 0 105px;
  background: var(--ivory);
}
.page-hero .container {
  max-width: 1100px;
}
.page-hero h1 {
  max-width: 1050px;
}
.page-hero .container > p:last-child {
  max-width: 730px;
  font-size: 1.16rem;
  color: var(--muted);
}
.page-hero.compact {
  padding-bottom: 70px;
}
.page-hero.compact h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}
.service-detail {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 85px;
}
.service-detail.alt {
  background: var(--ivory);
}
.detail-grid {
  display: grid;
  grid-template-columns: 100px 1fr 0.9fr;
  gap: 70px;
}
.detail-index {
  font-size: 2.5rem;
}
.detail-grid h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}
.large-copy {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.28;
  color: #526057;
}
.price-block {
  display: inline-flex;
  flex-direction: column;
  margin-top: 35px;
  padding: 24px 30px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.55);
}
.price-block span,
.price-block small {
  font-size: 0.75rem;
  color: var(--muted);
}
.price-block strong {
  font-family: var(--serif);
  font-size: 2.6rem;
}
.detail-list {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}
.detail-list h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
}
.detail-list ul,
.check-list {
  list-style: none;
  padding: 0;
}
.detail-list li,
.check-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--line);
}
.detail-list li:before,
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8b754f;
}
.detail-list p {
  color: var(--muted);
}
.complementary {
  background: #fff;
}
.complementary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.complementary-grid article {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.complementary-grid h3 {
  font-family: var(--serif);
  font-size: 2rem;
}
.complementary-grid p {
  color: var(--muted);
}
.cases {
  background: #fff;
}
.cases-grid {
  display: grid;
  gap: 90px;
}
.case-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 65px;
  align-items: center;
  scroll-margin-top: 110px;
}
.case-card:nth-child(even) {
  grid-template-columns: 0.85fr 1.15fr;
}
.case-card:nth-child(even) .case-visual {
  order: 2;
}
.case-card:nth-child(even) .case-content {
  order: 1;
}
.case-visual {
  position: relative;
}
.case-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.case-content {
  max-width: 500px;
}
.case-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: #9a8060;
}
.case-content h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  margin: 10px 0 20px;
}
.case-content > p:not(.case-tags) {
  color: var(--muted);
  font-size: 1.04rem;
}
.case-link {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.case-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 16px;
}
.case-links .case-link {
  margin-top: 0;
}
.case-private {
  margin: 15px 0 0 !important;
  color: #8a765d !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.archive-section {
  background: var(--ivory);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.archive-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.archive-card img {
  width: 100%;
  aspect-ratio: 1.55/1;
  object-fit: cover;
}
.archive-card div {
  padding: 26px;
}
.archive-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 7px 0;
}
.archive-card p {
  color: var(--muted);
}
.confidential-note {
  padding: 85px 0;
  background: var(--wine);
  color: #fff;
}
.confidential-note .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.confidential-note h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.5rem);
}
.confidential-note > div > p {
  color: #eadde0;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.resource-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.resource-cover {
  min-height: 370px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.resource-cover span,
.resource-cover small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.resource-cover strong {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.cover-1 {
  background: #20362c;
  color: #fff;
}
.cover-2 {
  background: #e9dcc5;
  color: var(--ink);
}
.cover-3 {
  background: #6c2e3c;
  color: #fff;
}
.resource-body {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.resource-body p {
  color: var(--muted);
}
.resource-advice {
  padding: 115px 0;
  background: var(--wine);
  color: #fff;
}
.resource-advice .container {
  max-width: 900px;
}
.resource-advice h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}
.resource-advice p:not(.eyebrow) {
  color: #eadde0;
  max-width: 650px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 80px;
  align-items: center;
}
.portrait-wrap {
  border-radius: 250px 250px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.portrait-wrap img {
  width: 100%;
  aspect-ratio: 0.72/1;
  object-fit: cover;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.story-copy {
  font-size: 1.08rem;
  color: var(--muted);
}
.values-section {
  padding: 0 0 120px;
  background: #fff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-grid article {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
}
.values-grid article:last-child {
  border-right: 0;
}
.values-grid h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 45px 0 12px;
}
.values-grid p {
  color: var(--muted);
}
.expertise-story {
  background: var(--ivory);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expertise-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 22px;
}
.quote-band {
  padding: 120px 0;
  background: #fff;
}
.quote-band blockquote {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  color: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}
.contact-info {
  padding-top: 35px;
}
.contact-info h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
}
.direct-contact {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.direct-contact span {
  font-size: 0.75rem;
  color: var(--muted);
}
.direct-contact a {
  font-family: var(--serif);
  font-size: 1.55rem;
}
.calendly-card {
  background: var(--ivory);
  border-radius: 24px;
  overflow: hidden;
  min-height: 720px;
}
.legal h2 {
  font-size: 2.3rem;
  margin-top: 50px;
}
.legal a {
  text-decoration: underline;
}
.simple-message {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
}
.simple-message h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  max-width: 800px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-cta {
    margin-left: auto;
  }
  .mobile-menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    padding: 25px 24px 35px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-130%);
    transition: 0.35s;
    z-index: -1;
  }
  .mobile-menu.open {
    transform: none;
  }
  .mobile-menu .nav-link {
    font-family: var(--serif);
    font-size: 2rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 35px;
  }
  .note-top {
    left: -10%;
  }
  .note-bottom {
    right: -8%;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
  .detail-grid {
    grid-template-columns: 60px 1fr;
  }
  .detail-list {
    grid-column: 2;
  }
  .resource-panel {
    padding: 50px;
  }
  .resource-stack {
    transform: scale(0.82);
    transform-origin: center;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid article:nth-child(2) {
    border-right: 0;
  }
  .values-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1200px);
  }
  .section {
    padding: 82px 0;
  }
  .header-inner {
    height: 74px;
  }
  .mobile-menu {
    top: 74px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    padding-top: 74px;
  }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }
  .hero-visual {
    margin-top: 25px;
  }
  .hero-frame {
    width: 85%;
  }
  .note-top {
    left: -10%;
    top: 13%;
  }
  .note-bottom {
    right: -5%;
    bottom: 10%;
  }
  .floating-note {
    font-size: 0.68rem;
    padding: 10px 12px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }
  .intro-grid,
  .process-grid,
  .resource-panel,
  .manifesto,
  .about-hero-grid,
  .story-grid,
  .expertise-grid,
  .contact-grid,
  .confidential-note .container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .pain-grid,
  .complementary-grid,
  .archive-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .pain-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pain-card:last-child {
    border-bottom: 0;
  }
  .service-row {
    grid-template-columns: 45px 1fr 35px;
  }
  .service-price {
    grid-column: 2;
    text-align: left;
  }
  .manifesto-image {
    min-height: 420px;
  }
  .manifesto-panel {
    padding: 70px 24px;
  }
  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-large {
    grid-column: auto;
  }
  .project-large img,
  .project-card img {
    aspect-ratio: 1.35/1;
  }
  .project-meta {
    grid-template-columns: 1fr;
  }
  .process-heading {
    position: static;
  }
  .resource-panel {
    padding: 45px 25px;
  }
  .resource-stack {
    height: 330px;
    transform: scale(0.65);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .page-hero {
    padding: 145px 0 75px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .detail-list {
    grid-column: auto;
  }
  .detail-index {
    font-size: 1.7rem;
  }
  .case-card,
  .case-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-card:nth-child(even) .case-visual,
  .case-card:nth-child(even) .case-content {
    order: initial;
  }
  .resource-card {
    grid-template-columns: 1fr;
  }
  .resource-cover {
    min-height: 300px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .values-grid article:last-child {
    border-bottom: 0;
  }
  .about-hero-grid {
    gap: 50px;
  }
  .portrait-wrap {
    width: 85%;
    margin: auto;
  }
  .cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-section {
    padding-top: 70px;
  }
  .direct-contact a {
    font-size: 1.2rem;
    word-break: break-word;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Conversion & premium motion upgrade */
.nav-commercial {
  padding: 9px 14px;
  border: 1px solid rgba(29, 44, 37, 0.18);
  border-radius: 999px;
}
.nav-commercial:after {
  display: none;
}
.nav-commercial:hover {
  background: var(--ink);
  color: #fff;
}
.trust-scene {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: #111a16;
  overflow: hidden;
}
.trust-scene-image {
  min-height: 720px;
}
.trust-scene-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.trust-scene-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 40%,
    rgba(17, 26, 22, 0.16) 72%,
    #111a16 100%
  );
}
.trust-scene-card {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-left: -120px;
  padding: 65px;
  background: rgba(17, 26, 22, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}
.trust-scene-card h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.5rem);
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.trust-chips span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.conversion-heading {
  max-width: 950px;
}
.conversion-heading > p:last-child {
  max-width: 720px;
  font-size: 1.12rem;
  color: var(--muted);
}
.conversion-pains {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 58px;
}
.conversion-pains .pain-card {
  min-height: 330px;
  border-bottom: 1px solid var(--line);
}
.conversion-pains .pain-card:nth-child(2) {
  border-right: 0;
}
.conversion-pains .pain-card h3 {
  font-size: 2.15rem;
  margin-top: 38px;
}
.result-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  margin-top: 38px;
  padding: 22px 28px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}
.result-bar span {
  position: relative;
  color: #d9e0dc;
}
.result-bar span:before {
  content: "✓";
  margin-right: 8px;
  color: #d8b47c;
}
.project-card {
  perspective: 1000px;
}
.project-card img {
  background: #f2ecdf;
  border: 1px solid rgba(29, 44, 37, 0.08);
}
.project-card:hover img {
  transform: translateY(-9px) scale(1.012) rotateX(1deg);
}
.project-card:after {
  content: "Voir le projet";
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s;
}
.project-card:hover:after {
  opacity: 1;
  transform: none;
}
.project-status:after {
  content: "Découvrir le projet en cours";
}
.resource-body .button-outline {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.resource-body .button-outline:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  box-shadow: 0 12px 30px rgba(108, 46, 60, 0.2);
}
.reveal {
  transform: translateY(36px) scale(0.985);
  filter: blur(3px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s;
}
.reveal.visible {
  filter: none;
}
.hero-frame {
  animation: heroFloat 7s ease-in-out infinite;
}
.floating-note {
  animation: noteFloat 5s ease-in-out infinite;
}
.note-bottom {
  animation-delay: -2s;
}
@keyframes heroFloat {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes noteFloat {
  50% {
    transform: translateY(-7px);
  }
}
@media (max-width: 1050px) {
  .nav-commercial {
    border: 0;
    padding: 0;
  }
  .trust-scene {
    grid-template-columns: 1fr;
  }
  .trust-scene-image {
    min-height: 560px;
  }
  .trust-scene-card {
    margin: -110px 30px 50px;
    padding: 48px;
  }
  .trust-scene-image:after {
    background: linear-gradient(0deg, #111a16 0%, transparent 45%);
  }
}
@media (max-width: 760px) {
  .trust-scene {
    min-height: auto;
  }
  .trust-scene-image {
    min-height: 440px;
  }
  .trust-scene-card {
    margin: -70px 15px 35px;
    padding: 34px 25px;
  }
  .conversion-pains {
    grid-template-columns: 1fr;
  }
  .conversion-pains .pain-card {
    border-right: 0;
  }
  .result-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .project-card:after {
    display: none;
  }
}

/* v3 — robust reassurance section and logo-led portfolio */
.trust-scene {
  min-height: auto;
  padding: 110px 0;
  background: #111a16;
  overflow: hidden;
}
.trust-scene-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 0;
}
.trust-scene-image {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.trust-scene-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(17, 26, 22, 0.38));
  pointer-events: none;
}
.trust-scene-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
}
.trust-scene-card {
  position: relative;
  z-index: 2;
  margin-left: -85px;
  padding: 58px;
  background: rgba(22, 34, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
}
.trust-scene-card h2 {
  font-size: clamp(2.6rem, 4vw, 4.35rem);
  margin-bottom: 24px;
}
.trust-scene-card > p:not(.eyebrow) {
  color: #ced6d1;
  font-size: 1.05rem;
}
.project-logo-card > img,
.logo-visual img {
  object-fit: contain !important;
  padding: clamp(38px, 6vw, 84px);
  background: linear-gradient(145deg, #fffdf8, #eee4d2) !important;
}
.project-logo-card:hover > img {
  transform: translateY(-7px) scale(1.01) !important;
}
.logo-visual {
  background: linear-gradient(145deg, #fffdf8, #eee4d2);
  border-radius: 22px;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.logo-visual img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
}
.archive-logo-card > img {
  object-fit: contain !important;
  padding: 42px;
  background: linear-gradient(145deg, #fffdf8, #eee4d2);
}
@media (max-width: 1050px) {
  .trust-scene {
    padding: 80px 0;
  }
  .trust-scene-grid {
    grid-template-columns: 1fr;
  }
  .trust-scene-image {
    min-height: 520px;
  }
  .trust-scene-image img {
    height: 520px;
  }
  .trust-scene-image:after {
    background: linear-gradient(0deg, rgba(17, 26, 22, 0.65), transparent 48%);
  }
  .trust-scene-card {
    margin: -90px 35px 0;
    padding: 48px;
  }
}
@media (max-width: 760px) {
  .trust-scene {
    padding: 55px 0;
  }
  .trust-scene-image {
    min-height: 410px;
    border-radius: 20px;
  }
  .trust-scene-image img {
    height: 410px;
  }
  .trust-scene-card {
    margin: -55px 14px 0;
    padding: 32px 24px;
  }
  .logo-visual {
    min-height: 290px;
    padding: 34px;
  }
  .project-logo-card > img {
    padding: 42px !important;
  }
}

/* v4 — conversion, layout and portfolio corrections */
.section-heading {
  text-align: left;
}
.services-preview .section-heading {
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.services-preview .section-heading > p:last-child {
  margin-left: auto;
  margin-right: auto;
  font-size: 1.12rem;
}
.conversion-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.conversion-heading > p:last-child {
  margin-left: auto;
  margin-right: auto;
}
.conversion-pains {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  border: 0;
}
.conversion-pains .pain-card {
  border: 1px solid var(--line) !important;
  border-radius: 22px;
  min-height: 290px;
  background: #fff;
  padding: 36px;
  box-shadow: 0 12px 35px rgba(29, 44, 37, 0.05);
}
.conversion-pains .pain-card h3 {
  margin: 28px 0 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}
.outcomes {
  margin-top: 34px;
  padding: 34px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
}
.outcomes-title {
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9c39f;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.outcomes-grid > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.outcomes-grid > div:first-child {
  padding-left: 0;
}
.outcomes-grid > div:last-child {
  border-right: 0;
}
.outcomes-grid strong {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: #d9c39f;
  letter-spacing: 0.12em;
}
.outcomes-grid span {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}
.proof-photo {
  padding: 105px 0;
  background: #14211b;
  color: #fff;
}
.proof-photo-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 0;
  align-items: center;
}
.proof-photo-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.proof-photo-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
}
.proof-photo-copy {
  margin-left: -64px;
  padding: 58px;
  background: #21342b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}
.proof-photo-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  margin-bottom: 24px;
}
.proof-photo-copy > p:not(.eyebrow) {
  color: #d0d9d3;
}
.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.proof-points span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.project-logo-card > img {
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain !important;
  padding: clamp(44px, 7vw, 92px);
  background: linear-gradient(145deg, #fffdf8, #eee4d2) !important;
}
.project-large.project-logo-card > img {
  aspect-ratio: 2.2/1;
}
.logo-visual {
  min-height: 390px;
}
.logo-visual img {
  max-width: 72%;
  max-height: 210px;
  object-fit: contain !important;
}
.archive-logo-card > img {
  height: 230px;
  object-fit: contain !important;
  padding: 48px;
  background: linear-gradient(145deg, #fffdf8, #eee4d2);
}
/* Services page: clearer premium cards */
.page-hero-services {
  text-align: center;
}
.page-hero-services .container > p:last-child {
  margin-left: auto;
  margin-right: auto;
}
.service-detail {
  padding: 78px 0;
  border: 0;
  background: #fff;
}
.service-detail.alt {
  background: var(--ivory);
}
.detail-grid {
  grid-template-columns: 72px minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(29, 44, 37, 0.06);
}
.service-detail.alt .detail-grid {
  background: #fff;
}
.detail-grid h2 {
  font-size: clamp(2.65rem, 4.3vw, 4.45rem);
}
.detail-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
}
.price-block {
  border-left: 0;
  border-radius: 16px;
  background: var(--ivory);
  padding: 20px 24px;
}
.price-block strong {
  font-family: var(--sans);
  font-size: 2.1rem;
}
.detail-list {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
}
.manifesto-panel blockquote,
.quote-band blockquote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}
@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .outcomes-grid > div:nth-child(2) {
    border-right: 0;
  }
  .proof-photo-grid {
    grid-template-columns: 1fr;
  }
  .proof-photo-copy {
    margin: -70px 28px 0;
  }
  .detail-grid {
    grid-template-columns: 54px 1fr;
  }
  .detail-list {
    grid-column: 2;
  }
}
@media (max-width: 760px) {
  .conversion-pains {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
  }
  .outcomes-grid > div:last-child {
    border-bottom: 0;
  }
  .proof-photo {
    padding: 70px 0;
  }
  .proof-photo-image img {
    height: 400px;
  }
  .proof-photo-copy {
    margin: -45px 12px 0;
    padding: 32px 24px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .detail-list {
    grid-column: auto;
  }
  .project-logo-card > img,
  .project-large.project-logo-card > img {
    aspect-ratio: 1.5/1;
    padding: 44px;
  }
  .logo-visual {
    min-height: 280px;
  }
}

/* v5 — viewport, image reliability and hero refinements */
.hero h1 {
  font-size: clamp(3rem, 5.25vw, 5.35rem);
  line-height: 1.02;
  max-width: 700px;
}
.hero-grid {
  min-height: calc(100svh - 148px);
  padding-top: 30px;
  padding-bottom: 34px;
  gap: 54px;
}
.hero-lead {
  font-size: 1.08rem;
  line-height: 1.58;
}
.hero-actions {
  margin-top: 28px;
}
.hero-proof {
  margin-top: 38px;
}
.project-logo-card > img,
.logo-visual img,
.archive-logo-card > img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.project-logo-card > img {
  max-width: 100%;
  width: 100%;
}
@media (max-height: 850px) and (min-width: 901px) {
  .hero h1 {
    font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  }
  .hero-grid {
    padding-top: 18px;
    padding-bottom: 24px;
  }
  .hero-proof {
    margin-top: 26px;
  }
  .hero-actions {
    margin-top: 22px;
  }
  .hero-frame {
    max-width: 390px;
  }
  .hero-lead {
    font-size: 1rem;
  }
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .hero-grid {
    padding-top: 54px;
  }
  .hero-proof {
    margin-top: 34px;
  }
}
