:root {
  --bg: #f7f5f2;
  --paper: #fbfaf8;
  --paper-deep: #ece6df;
  --blush: #e8cfcb;
  --blush-deep: #c9877c;
  --taupe: #9e9489;
  --ink: #191919;
  --ink-soft: #4c4742;
  --line: rgba(25, 25, 25, 0.1);
  --line-soft: rgba(25, 25, 25, 0.06);
  --shadow-lg: 0 35px 80px -35px rgba(25, 25, 25, 0.36);
  --shadow-md: 0 24px 50px -30px rgba(25, 25, 25, 0.28);
  --shell: 1320px;
  --pad: clamp(1.25rem, 4vw, 2.75rem);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--ink-soft);
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.shell {
  width: min(var(--shell), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

.kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--blush-deep);
}

.kicker--light {
  color: rgba(255, 255, 255, 0.72);
}

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

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading__title {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.section-heading__copy {
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.page-loader__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--ink);
  transition: transform 0.7s var(--ease);
}

.page-loader__panel--left {
  left: 0;
}

.page-loader__panel--right {
  right: 0;
}

.page-loader__mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  color: white;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: opacity 0.35s var(--ease);
}

.page-loader__mark span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
}

.page-loader__mark em {
  font-style: italic;
  font-size: 0.55em;
  letter-spacing: -0.01em;
  color: var(--blush-deep);
  font-weight: 400;
}

.page-loader.is-done .page-loader__panel--left {
  transform: translateX(-100%);
}

.page-loader.is-done .page-loader__panel--right {
  transform: translateX(100%);
}

.page-loader.is-done .page-loader__mark {
  opacity: 0;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blush-deep), var(--blush));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  padding: 1.35rem 0;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease), padding 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled {
  padding: 0.9rem 0;
  background: rgba(247, 245, 242, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  border-color: var(--line-soft);
  color: var(--ink);
}

.site-header__inner {
  width: min(var(--shell), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  align-items: baseline;
}

.brand-link__title {
  font-family: var(--serif);
  font-size: 1.95rem;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
}

.brand-link__title em {
  font-style: italic;
  font-size: 0.55em;
  letter-spacing: -0.01em;
  color: var(--blush-deep);
  font-weight: 400;
}

.site-header.is-scrolled .brand-link__title em {
  color: var(--blush-deep);
}

.site-nav {
  display: flex;
  gap: 2.2rem;
}

.site-nav a {
  position: relative;
  font-size: 0.77rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: currentColor;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pill-btn:hover {
  transform: translateY(-2px);
}

.pill-btn--dark {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-md);
}

.pill-btn--dark:hover {
  background: #2c2c2c;
}

.pill-btn--blush {
  background: var(--blush);
  color: var(--ink);
}

.pill-btn--blush:hover {
  background: var(--blush-deep);
  color: white;
}

.pill-btn--light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pill-btn--light:hover {
  background: white;
  color: var(--ink);
}

.pill-btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

.pill-btn--outline:hover {
  background: white;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 0.35rem;
}

.menu-toggle span {
  display: block;
  width: 1.55rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), width 0.35s var(--ease);
}

.menu-toggle span:last-child {
  width: 1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(8rem, 14vw, 11rem) 0 2rem;
  color: white;
  overflow: hidden;
  background: #151515;
}

.hero__backdrop,
.hero__backdrop img,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.96) brightness(0.62);
}

.hero__wash {
  background:
    linear-gradient(110deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.68) 45%, rgba(10, 10, 10, 0.34) 100%),
    radial-gradient(circle at 80% 22%, rgba(232, 207, 203, 0.22), transparent 26%),
    radial-gradient(circle at 10% 80%, rgba(201, 135, 124, 0.14), transparent 24%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 10rem);
}

.hero__intro {
  max-width: 38rem;
}

.hero__title {
  display: grid;
  margin-top: 1.2rem;
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  line-height: 0.88;
}

.hero__line {
  overflow: hidden;
}

.hero__line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.05s var(--ease);
}

html.is-ready .hero__line span {
  transform: translateY(0);
}

.hero__line:nth-child(2) span {
  transition-delay: 0.12s;
}

.hero__line:nth-child(3) span {
  transition-delay: 0.24s;
}

.hero__line--accent {
  color: var(--blush);
  font-style: italic;
}

.hero__lede {
  margin-top: 1.8rem;
  max-width: 33rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero__composition {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 2rem 0;
}

.hero-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card {
  width: min(34rem, 100%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card__media {
  aspect-ratio: 1.5;
}

.hero-card__media img,
.standard-row__detail img,
.service-card__media img,
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.hero-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-card__body h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.02;
}

.hero-card__body p:last-child {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.services {
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -32px rgba(25, 25, 25, 0.42);
}

.service-card__media {
  aspect-ratio: 0.92;
}

.service-card__body {
  padding: 1.3rem;
}

.service-card__index {
  display: inline-flex;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

.service-card h3 {
  font-size: 1.7rem;
}

.service-card p {
  margin-top: 0.75rem;
  line-height: 1.75;
}

.standard {
  background: var(--paper-deep);
}

.standard__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
}

.standard__intro {
  position: sticky;
  top: 8rem;
  align-self: start;
  display: grid;
  gap: 1rem;
}

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

.standard__intro p {
  max-width: 24rem;
  line-height: 1.75;
}

.standard__list {
  display: grid;
  gap: 1rem;
}

.standard-row {
  display: grid;
  grid-template-columns: 5rem 1fr 16rem;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.standard-row__number {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--blush-deep);
}

.standard-row__copy h3 {
  font-size: 1.7rem;
}

.standard-row__copy p {
  margin-top: 0.45rem;
  line-height: 1.7;
}

.standard-row__detail {
  height: 10rem;
  border-radius: 1rem;
  overflow: hidden;
}

.founder {
  background: var(--bg);
}

.founder__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.founder__layout--simple {
  grid-template-columns: 0.95fr 0.9fr;
}

.founder__statement {
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 1.6rem;
  background: white;
  box-shadow: var(--shadow-md);
}

.founder__statement h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  line-height: 0.98;
}

.founder__statement p {
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 34rem;
}

.founder__signature {
  display: grid;
  gap: 0.15rem;
  margin-top: 1.5rem;
}

.founder__signature span {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}

.founder__signature small {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.founder__visual {
  position: relative;
}

.founder__portrait {
  aspect-ratio: 0.78;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.founder__portrait img {
  object-position: center 22%;
}

.process {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: white;
  box-shadow: var(--shadow-md);
}

.process-card__index {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

.process-card h3 {
  margin-top: 1rem;
  font-size: 1.9rem;
}

.process-card p {
  margin-top: 0.75rem;
  line-height: 1.75;
}

.testimonials {
  background: var(--ink);
  color: white;
}

.testimonials .section-heading__title,
.testimonials .kicker,
.testimonials .section-heading__copy {
  color: white;
}

.testimonials .kicker::before {
  background: var(--blush);
}

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

.testimonial {
  margin: 0;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.testimonial p {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.45;
  color: white;
}

.testimonial footer {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.5rem;
}

.testimonial footer span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
}

.final-cta {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: linear-gradient(135deg, #211f1e 0%, #181717 56%, #392d29 100%);
  color: white;
}

.final-cta__inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.final-cta__inner h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.final-cta__inner p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.site-footer {
  padding: 3rem 0;
  background: var(--paper);
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
}

.site-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.site-footer__brand em {
  font-size: 0.4em;
  color: var(--blush-deep);
  font-style: italic;
}

.site-footer__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.site-footer__meta h3 {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.site-footer__meta p {
  margin-top: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.media-reveal {
  position: relative;
  overflow: hidden;
}

.media-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s var(--ease-soft);
}

.media-reveal img {
  transform: scale(1.08);
  transition: transform 1.25s var(--ease);
}

.media-reveal.is-visible::after {
  transform: scaleX(0);
}

.media-reveal.is-visible img {
  transform: scale(1);
}

@media (max-width: 1080px) {
  .hero__content,
  .standard__layout,
  .founder__layout {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: auto;
  }

  .standard__intro {
    position: static;
  }

  .service-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 860px) {
  .site-nav,
  .site-header .pill-btn--dark {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .site-nav {
    position: fixed;
    top: 4.8rem;
    left: var(--pad);
    right: var(--pad);
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(247, 245, 242, 0.95);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
  }

  .site-header.is-open .site-nav a {
    font-size: 1rem;
  }

  .hero__composition,
  .service-grid,
  .testimonial-grid,
  .process-grid,
  .site-footer__meta {
    grid-template-columns: 1fr;
  }

  .hero__composition {
    justify-content: stretch;
  }

  .hero-card {
    width: 100%;
  }

  .standard-row {
    grid-template-columns: 1fr;
  }

  .standard-row__detail {
    height: 14rem;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .hero__line span,
  .media-reveal img {
    opacity: 1 !important;
    transform: none !important;
  }

  .media-reveal::after,
  .page-loader {
    display: none;
  }
}
