:root {
  --ink: #11100e;
  --charcoal: #201d1a;
  --ivory: #f7f2ea;
  --stone: #ded3c2;
  --mist: #ebe5dc;
  --wine: #5a1f2d;
  --moss: #384036;
  --brass: #a8844b;
  --muted: #776d62;
  --line: rgba(17, 16, 14, 0.16);
  --white-line: rgba(247, 242, 234, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 14;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 17px clamp(20px, 4vw, 56px) 15px;
  border-bottom: 1px solid rgba(17, 16, 14, 0.1);
  color: var(--ink);
  background: rgba(247, 242, 234, 0.96);
  box-shadow: 0 10px 28px rgba(17, 16, 14, 0.05);
  backdrop-filter: blur(18px);
}

.brand-wordmark {
  display: flex;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.8vw, 44px);
  width: 100%;
  max-width: 900px;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: block;
  padding: 4px 0 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  border-bottom-color: currentColor;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 236px;
  padding: 14px 0;
  transform: translate(-50%, 8px);
  border: 1px solid rgba(17, 16, 14, 0.12);
  background: rgba(247, 242, 234, 0.98);
  box-shadow: 0 20px 44px rgba(17, 16, 14, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 12px 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: rgba(17, 16, 14, 0.05);
  color: var(--wine);
  outline: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.78) 0%, rgba(11, 10, 9, 0.48) 42%, rgba(11, 10, 9, 0.06) 100%),
    linear-gradient(0deg, rgba(11, 10, 9, 0.22), rgba(11, 10, 9, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 40px));
  padding: 22vh 0 16vh clamp(20px, 8vw, 112px);
  color: var(--ivory);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(54px, 9vw, 118px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 5.2vw, 72px);
}

h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(247, 242, 234, 0.82);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.contact-form button {
  min-height: 48px;
  border: 1px solid transparent;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.contact-form button {
  background: var(--ivory);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(247, 242, 234, 0.46);
  color: var(--ivory);
}

.intro-section,
.section,
.split-section,
.footer {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 6vw, 96px);
  padding-top: 82px;
  padding-bottom: 82px;
  border-bottom: 1px solid var(--line);
}

.intro-statement p {
  max-width: 840px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
}

.metrics {
  display: grid;
  gap: 18px;
  align-content: end;
}

.metrics div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.metrics span {
  display: block;
  margin-bottom: 4px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.metrics p,
.service-card p,
.timeline-item p,
.vision-inner p,
.footer p {
  color: var(--muted);
}

.section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 52px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-card {
  position: relative;
  min-height: 440px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.editorial-card:hover {
  transform: translateY(-4px);
}

.editorial-card span,
.transformation-grid span,
.principle-grid span {
  display: block;
  margin-bottom: 96px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-card p {
  color: inherit;
  opacity: 0.72;
}

.dark-card {
  background: var(--ink);
  color: var(--ivory);
}

.light-card {
  background: #f1eadf;
  color: var(--ink);
}

.image-card {
  display: grid;
  align-content: end;
  min-height: 440px;
  color: var(--ivory);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.08);
}

.image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(17, 16, 14, 0.84), rgba(17, 16, 14, 0.12));
}

.image-card div {
  position: relative;
  z-index: 1;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: 96px clamp(20px, 5vw, 72px);
  background: #fffaf2;
}

.reverse-story {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
}

.reverse-story img {
  order: 2;
}

.image-story img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
}

.image-story h2 {
  margin-bottom: 24px;
}

.image-story p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.service-card {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}

.service-card span {
  display: block;
  margin-bottom: 86px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 116px);
  padding-top: 112px;
  padding-bottom: 112px;
  background: var(--charcoal);
  color: var(--ivory);
}

.timeline {
  border-top: 1px solid var(--white-line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--white-line);
}

.timeline-item span {
  color: var(--stone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.timeline-item p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(247, 242, 234, 0.72);
}

.vision-section {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 96px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(rgba(247, 242, 234, 0.84), rgba(247, 242, 234, 0.84)),
    linear-gradient(135deg, var(--mist), #d9cbb7 52%, #c8b185);
}

.vision-inner {
  max-width: 980px;
  text-align: center;
}

.vision-inner p {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 18px;
}

.transformations-section {
  background: #f7f2ea;
}

.transformation-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.transformation-grid div,
.principle-grid article {
  min-height: 300px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
}

.transformation-grid p,
.principle-grid p,
.detail-list p,
.page-hero p,
.service-hero p {
  color: var(--muted);
}

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

.insights-section {
  background: #11100e;
  color: var(--ivory);
}

.insights-section h2 {
  color: var(--ivory);
}

.insight-grid,
.module-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--white-line);
  border-left: 1px solid var(--white-line);
}

.insight-grid article,
.module-card {
  min-height: 280px;
  border-right: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
  padding: 30px;
}

.insight-grid span,
.module-card span,
.contact-notes span {
  display: block;
  margin-bottom: 60px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insight-grid p {
  color: rgba(247, 242, 234, 0.68);
}

.module-section {
  background: #f7f2ea;
  border-color: var(--line);
}

.module-card {
  border-color: var(--line);
}

.module-card p {
  color: var(--muted);
}

.quote-section {
  display: grid;
  min-height: 42vh;
  place-items: center;
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}

.quote-section p {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1.04;
}

.contact-notes {
  display: grid;
  gap: 16px;
  max-width: 620px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-notes p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  color: var(--muted);
}

.contact-notes span {
  margin-bottom: 4px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero,
.service-hero,
.page-cta {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.page-hero {
  padding-top: 132px;
  padding-bottom: 86px;
  background: #f1eadf;
}

.page-hero h1 {
  max-width: 1040px;
  color: var(--ink);
  font-size: clamp(52px, 8vw, 112px);
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 26px;
  font-size: 20px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: end;
  padding-top: 128px;
  padding-bottom: 76px;
  background: var(--ink);
  color: var(--ivory);
}

.service-hero h1 {
  font-size: clamp(54px, 9vw, 120px);
}

.service-hero p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(247, 242, 234, 0.72);
  font-size: 22px;
}

.service-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

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

.detail-list p {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  font-size: 20px;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 76px;
  padding-bottom: 76px;
  background: #f1eadf;
}

.page-cta .button.primary {
  background: var(--ink);
  color: var(--ivory);
}

.page-process {
  padding-top: 132px;
}

.page-contact {
  min-height: calc(100vh - 96px);
  padding-top: 132px;
}

.founder-hero img {
  aspect-ratio: 5 / 4;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: 150px clamp(20px, 5vw, 72px) 82px;
  background: #fffaf2;
}

.founder-profile h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(54px, 8vw, 108px);
}

.founder-profile-copy {
  max-width: 820px;
}

.founder-profile-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.founder-profile-copy .founder-lede {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.22;
}

.founder-profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.founder-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin: 32px 0 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.founder-credentials span {
  min-height: 68px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-profile .button.primary {
  display: inline-block;
  background: var(--ink);
  color: var(--ivory);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  background: #fffaf2;
}

.founder-copy {
  display: grid;
  gap: 22px;
}

.founder-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.founder-principles {
  background: #f7f2ea;
}

.offer-hero img {
  aspect-ratio: 5 / 4;
}

.package-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.package-card {
  min-height: 520px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  background: #f7f2ea;
}

.package-card:first-child {
  border-left: 1px solid var(--line);
}

.package-card h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.6vw, 52px);
}

.package-card .price {
  display: block;
  margin-bottom: 26px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.package-card p:not(.eyebrow) {
  color: var(--muted);
}

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

.package-card li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--ink);
}

.featured-package {
  background: var(--ink);
  color: var(--ivory);
}

.featured-package p:not(.eyebrow),
.featured-package li {
  color: rgba(247, 242, 234, 0.72);
}

.featured-package li {
  border-top-color: var(--white-line);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 0.85fr);
  gap: clamp(40px, 8vw, 112px);
  background: #f0e8dc;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 16, 14, 0.32);
  border-radius: 0;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--wine);
}

.contact-form button {
  justify-self: start;
  margin-top: 8px;
  background: var(--ink);
  color: var(--ivory);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
  background: var(--ink);
  color: var(--ivory);
}

.footer p {
  margin: 0;
  color: rgba(247, 242, 234, 0.72);
}

@media (max-width: 980px) {
  .nav-links {
    gap: 22px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-trigger {
    font-size: 11px;
  }

  .nav-dropdown {
    min-width: 210px;
  }

  .intro-section,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .editorial-grid,
  .transformation-grid,
  .large-grid,
  .principle-grid,
  .insight-grid,
  .module-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero,
  .image-story,
  .reverse-story,
  .detail-section,
  .founder-section,
  .founder-profile,
  .package-section {
    grid-template-columns: 1fr;
  }

  .reverse-story img {
    order: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 14px 16px 12px;
  }

  .brand-wordmark {
    font-size: 27px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 18px;
    padding: 0 0 4px;
  }

  .nav-trigger {
    padding-bottom: 8px;
    font-size: 10px;
  }

  .nav-dropdown {
    left: 0;
    min-width: 196px;
    transform: translate(0, 8px);
  }

  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    transform: translate(0, 0);
  }

  .hero {
    min-height: 96vh;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 10, 9, 0.84), rgba(11, 10, 9, 0.34));
  }

  .hero-content {
    width: 100%;
    padding: 190px 20px 72px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

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

  .button {
    text-align: center;
  }

  .section,
  .split-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

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

  .editorial-grid,
  .transformation-grid,
  .large-grid,
  .principle-grid,
  .insight-grid,
  .module-section {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .image-card {
    min-height: 340px;
  }

  .editorial-card span,
  .transformation-grid span,
  .principle-grid span {
    margin-bottom: 58px;
  }

  .page-hero,
  .service-hero,
  .image-story,
  .founder-profile,
  .page-process,
  .page-contact {
    padding-top: 118px;
  }

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

  .image-story {
    padding-bottom: 72px;
  }

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

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

  .service-card span {
    margin-bottom: 48px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
