:root {
  --ink: #1b2724;
  --muted: #68736e;
  --line: #dfe6e1;
  --cream: #f8f4ee;
  --mist: #eef5f2;
  --sage: #6d8178;
  --sage-dark: #3d5b51;
  --rose: #c89180;
  --white: #fff;
  --shadow: 0 24px 60px rgba(35, 52, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.face-detail-image {
  object-position: center 36%;
}

.object-detail-image {
  object-position: center 42%;
}

.skin-hair-image {
  object-position: center 36%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(248, 244, 238, 0.84);
  border-bottom: 1px solid rgba(223, 230, 225, 0.7);
  backdrop-filter: blur(18px);
}

.site-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.site-toggle a {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-toggle a:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(27, 39, 36, 0.08);
}

.site-toggle a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.site-toggle a[aria-current="page"]:hover {
  background: var(--sage-dark, var(--ink));
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.contact-lines a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.contact-lines a:hover {
  color: var(--sage-dark);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 4vw, 56px) 44px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.92) 0%, rgba(248, 244, 238, 0.55) 40%, rgba(248, 244, 238, 0.04) 75%),
    linear-gradient(0deg, rgba(27, 39, 36, 0.32), rgba(27, 39, 36, 0));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-bottom: clamp(24px, 7vh, 74px);
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8.6vw, 116px);
}

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

h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 450;
  line-height: 1.04;
}

.lead {
  max-width: 650px;
  color: #40504b;
  font-size: clamp(18px, 2vw, 23px);
}

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

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stat {
  min-height: 210px;
  padding: clamp(26px, 4vw, 52px);
  background: var(--mist);
}

.stat span {
  display: block;
  margin-bottom: 26px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 26px;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.stat p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: start;
  margin-bottom: clamp(42px, 7vw, 94px);
}

.section-heading.compact {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.feature {
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(44px, 8vw, 96px);
}

.feature:last-child {
  margin-bottom: 0;
}

.feature-split {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.45fr);
}

.feature-wide {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
}

.feature-wide.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.1fr);
}

.feature-copy {
  max-width: 620px;
}

.feature-copy p:not(.label) {
  color: var(--muted);
  font-size: 17px;
}

.feature-image {
  min-height: 480px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.feature-image.portrait {
  aspect-ratio: 3 / 4;
  min-height: 600px;
}

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

.service-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
  color: #34443f;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.approach {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(44px, 6vw, 76px);
  background: var(--line);
  border: 1px solid var(--line);
}

.process-grid div {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.team {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: end;
  background: var(--sage-dark);
  color: var(--white);
}

.team .eyebrow {
  color: #d7c2b8;
}

.team p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 24px);
}

.testimonials {
  background: var(--mist);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.testimonial-grid figure {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(18px, 2.6vw, 28px);
  background: var(--mist);
}

.testimonial-image {
  aspect-ratio: 16 / 9;
  margin-bottom: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
}

.testimonial-image img {
  object-position: center 43%;
}

.testimonial-grid blockquote {
  margin: 0;
  color: #2f3f3a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

.testimonial-grid figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 34px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.testimonial-grid figcaption strong {
  color: var(--ink);
}

.testimonial-grid figcaption span {
  color: var(--rose);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  min-height: 720px;
  padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 56px);
  background: var(--cream);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.98) 0%, rgba(248, 244, 238, 0.9) 34%, rgba(248, 244, 238, 0.5) 56%, rgba(248, 244, 238, 0.08) 86%),
    linear-gradient(0deg, rgba(248, 244, 238, 0.9) 0%, rgba(248, 244, 238, 0.18) 32%, rgba(248, 244, 238, 0) 72%);
  pointer-events: none;
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
}

.contact-visual {
  position: absolute;
  inset: 0 0 0 30%;
  z-index: 0;
  overflow: hidden;
}

.contact-visual img {
  transform: none;
  object-position: center 28%;
}

.contact-card {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(35, 52, 47, 0.1);
}

.cta-portrait-layout .contact-section {
  min-height: 820px;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.42fr);
}

.cta-portrait-layout .contact-section::before {
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 1) 0%, rgba(248, 244, 238, 0.94) 30%, rgba(248, 244, 238, 0.58) 52%, rgba(248, 244, 238, 0.12) 82%),
    linear-gradient(0deg, rgba(248, 244, 238, 0.94) 0%, rgba(248, 244, 238, 0.16) 42%, rgba(248, 244, 238, 0) 76%);
}

.cta-portrait-layout .contact-visual {
  inset: 0 0 0 18%;
}

.cta-portrait-layout .contact-visual img {
  object-position: center 34%;
}

.cta-portrait-layout .contact-copy {
  max-width: 840px;
}

.contact-left-layout .contact-section {
  grid-template-columns: minmax(0, 0.78fr);
}

.contact-left-layout .contact-copy {
  max-width: 820px;
}

.contact-left-layout .contact-copy > p:not(.eyebrow) {
  max-width: 610px;
}

.contact-left-layout .contact-card {
  width: min(100%, 520px);
  margin-top: 34px;
}

.contact-left-plain .contact-card {
  width: min(100%, 640px);
  padding: 30px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(61, 91, 81, 0.26);
  border-radius: 0;
  box-shadow: none;
}

.contact-left-plain address {
  grid-template-columns: 1fr;
}

.contact-left-plain address strong {
  font-size: 24px;
}

.contact-left-plain .contact-lines {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-block: 22px;
}

.cta-editorial-layout .contact-section {
  min-height: 680px;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.68fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 56px);
}

.cta-editorial-layout .contact-section::before {
  background: linear-gradient(90deg, rgba(248, 244, 238, 1) 0%, rgba(248, 244, 238, 0.96) 38%, rgba(248, 244, 238, 0.72) 63%, rgba(248, 244, 238, 0.28) 100%);
}

.cta-editorial-layout .contact-visual {
  position: relative;
  inset: auto;
  z-index: 2;
  aspect-ratio: 1.45 / 1;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.cta-editorial-layout .contact-visual img {
  object-position: center 48%;
}

address {
  display: grid;
  gap: 4px;
  margin-bottom: 28px;
  font-style: normal;
}

address strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 450;
}

.contact-lines {
  display: grid;
  gap: 14px;
  padding-block: 26px;
  border-block: 1px solid var(--line);
  color: var(--sage-dark);
  font-weight: 700;
}

.contact-lines .contact-consult-button {
  width: fit-content;
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.intake-page {
  background: var(--cream);
}

.intake-shell {
  padding: 84px 0 clamp(72px, 9vw, 120px);
}

.intake-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  padding: 92px clamp(18px, 4vw, 56px) 160px;
  margin-bottom: clamp(-130px, -9vw, -84px);
}

.intake-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 244, 238, 0.98) 0%, rgba(248, 244, 238, 0.86) 38%, rgba(248, 244, 238, 0.46) 64%, rgba(248, 244, 238, 0.08) 100%),
    linear-gradient(0deg, rgba(248, 244, 238, 0.9) 0%, rgba(248, 244, 238, 0.12) 46%, rgba(248, 244, 238, 0) 100%);
  pointer-events: none;
}

.intake-hero-media {
  position: absolute;
  inset: 0;
}

.intake-hero-media img {
  object-position: center 42%;
}

.intake-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.intake-copy h1 {
  font-size: clamp(46px, 7vw, 94px);
}

.intake-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin-inline: auto;
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(35, 52, 47, 0.1);
}

.intake-form {
  display: grid;
  gap: 22px;
}

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

.intake-form label,
.intake-form fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-form span,
.intake-form legend {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.intake-form textarea {
  min-height: 110px;
  resize: vertical;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 2px solid rgba(61, 91, 81, 0.22);
  border-color: var(--sage);
}

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

.check-grid label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}

.check-grid input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.hp {
  position: absolute;
  left: -10000px;
}

.form-status {
  display: none;
  margin: 0;
  color: #8a3b2e;
  font-weight: 700;
}

.form-status.is-shown {
  display: block;
}

.intake-submit {
  border: 0;
  cursor: pointer;
}

.intake-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.intake-success {
  display: none;
  padding: clamp(26px, 4vw, 42px);
  background: var(--mist);
  border-radius: 6px;
}

.intake-success.is-shown {
  display: block;
}

.intake-success h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
}

.logo-options-shell {
  min-height: 100svh;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.logo-options-shell h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 84px);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.logo-grid figure {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.logo-grid img {
  height: 280px;
  object-fit: contain;
  background: var(--cream);
}

.logo-grid figcaption {
  margin-top: 16px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(248, 244, 238, 0.94) 0%, rgba(248, 244, 238, 0.82) 42%, rgba(248, 244, 238, 0.1) 100%),
      linear-gradient(0deg, rgba(27, 39, 36, 0.24), rgba(27, 39, 36, 0));
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .intro-band,
  .process-grid,
  .testimonial-grid,
  .section-heading,
  .feature,
  .feature-split,
  .feature-wide,
  .feature-wide.reverse,
  .team,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .feature-image.portrait {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-visual {
    position: relative;
    inset: auto;
    z-index: 2;
    order: 2;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .contact-copy {
    order: 1;
  }

  .contact-card {
    order: 3;
  }

  .contact-section {
    min-height: 0;
  }

  .intake-hero,
  .intake-panel,
  .field-row,
  .check-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .intake-shell {
    padding-top: 64px;
  }

  .intake-hero {
    min-height: 650px;
    padding-bottom: 116px;
    margin-bottom: -74px;
  }

  .intake-hero::after {
    background:
      linear-gradient(0deg, rgba(248, 244, 238, 0.98) 0%, rgba(248, 244, 238, 0.82) 48%, rgba(248, 244, 238, 0.16) 100%),
      linear-gradient(90deg, rgba(248, 244, 238, 0.72), rgba(248, 244, 238, 0.2));
  }

  .cta-portrait-layout .contact-section,
  .cta-editorial-layout .contact-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .cta-portrait-layout .contact-visual,
  .cta-editorial-layout .contact-visual {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-section::before {
    background: linear-gradient(0deg, rgba(248, 244, 238, 0.24), rgba(248, 244, 238, 0.24));
  }

  .feature-split .feature-image {
    order: -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .site-toggle {
    justify-self: end;
    padding: 2px;
  }

  .site-toggle a {
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding: 92px 16px 28px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .stat {
    min-height: auto;
  }

  .section,
  .contact-section {
    padding-inline: 16px;
  }

  .site-footer {
    display: grid;
  }
}
