:root {
  --navy: #0f3145;
  --cream: #fff6e5;
  --sage: #8fa99c;
  --paper: var(--cream);
  --line-navy: rgba(15, 49, 69, 0.2);
  --line-cream: rgba(255, 246, 229, 0.22);
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
  --page: min(1180px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 14px max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line-navy);
  background: rgba(255, 246, 229, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(9, 37, 54, 0.08);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-decoration: none;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-detail {
  margin-top: 5px;
  color: rgba(15, 49, 69, 0.72);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--sage);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta {
  justify-self: end;
  padding: 10px 19px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--navy);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--navy);
  transition: transform 180ms ease;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--sage);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: var(--page);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 80px 0;
}

.hero-copy h1,
.section-heading h2,
.brand-copy h2,
.process-header h2,
.founder-story h2,
.offer-copy h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 770px;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
}

.hero-intro {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(15, 49, 69, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(440px, 100%);
  margin-top: 38px;
}

.hero-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: var(--cream);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sage);
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.creator-section {
  padding: 112px max(32px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 30px 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(3rem, 5.4vw, 5.5rem);
}

.section-heading > p:last-child {
  margin: 0 0 8px;
  color: rgba(255, 246, 229, 0.7);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line-cream);
  border-left: 1px solid var(--line-cream);
}

.service-card {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
}

.service-number,
.process-step > span,
.form-heading > span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}

.service-card h3 {
  margin: 43px 0 10px;
  font-size: 0.95rem;
  font-weight: 650;
}

.service-card p {
  margin: 0;
  color: rgba(255, 246, 229, 0.62);
  font-size: 0.86rem;
  line-height: 1.55;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 10vw;
  align-items: center;
  width: var(--page);
  margin: 0 auto;
  padding: 128px 0;
}

.brand-mark {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50% 50% 12px 50%;
  background: var(--sage);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 246, 229, 0.36);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.brand-mark::before {
  width: 74%;
  height: 74%;
}

.brand-mark::after {
  width: 42%;
  height: 42%;
  background: var(--navy);
  border-color: var(--navy);
}

.brand-mark span:nth-child(1) {
  width: 11%;
  height: 11%;
  z-index: 2;
  background: var(--cream);
  border-color: var(--cream);
}

.brand-mark span:nth-child(2) {
  width: 1px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(255, 246, 229, 0.3);
}

.brand-mark span:nth-child(3) {
  width: 100%;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 246, 229, 0.3);
}

.brand-copy h2 {
  max-width: 780px;
  font-size: clamp(3.2rem, 5.5vw, 5.6rem);
}

.brand-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0;
  color: rgba(15, 49, 69, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}

.process-section {
  padding: 112px max(32px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: var(--cream);
}

.process-header {
  display: block;
}

.process-header .eyebrow {
  margin-bottom: 32px;
}

.process-header h2 {
  max-width: 1120px;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 76px;
}

.process-step {
  min-height: 250px;
  padding: 12px 30px 0;
  border-right: 1px solid var(--line-cream);
}

.process-step:first-child {
  padding-left: 12px;
}

.process-step:last-child {
  padding-right: 12px;
  border-right: 0;
}

.process-step > span {
  font-size: 2.1rem;
}

.process-step p {
  margin: 24px 0 0;
  color: rgba(255, 246, 229, 0.78);
  font-size: 0.88rem;
  line-height: 1.6;
}

.founder-section {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 10vw;
  width: var(--page);
  margin: 0 auto;
  padding: 128px 0;
}

.founder-name {
  margin: 0;
  font-weight: 650;
}

.founder-story h2 {
  max-width: 850px;
  font-size: clamp(3.2rem, 5.5vw, 5.7rem);
}

.founder-story p {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(15, 49, 69, 0.72);
  line-height: 1.72;
}

.offer-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding: 104px max(32px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: var(--cream);
}

.offer-copy h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.offer-copy > p:not(.eyebrow):not(.offer-note) {
  max-width: 800px;
  margin: 28px 0 0;
  color: rgba(255, 246, 229, 0.76);
  line-height: 1.72;
}

.offer-note {
  margin: 22px 0 0;
  color: rgba(255, 246, 229, 0.48);
  font-size: 0.72rem;
}

.button-light {
  flex-shrink: 0;
  background: var(--cream);
  color: var(--navy);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--sage);
}

.contact-section {
  padding: 116px max(32px, calc((100vw - 1180px) / 2)) 78px;
  background: var(--cream);
  color: var(--navy);
}

.contact-heading {
  max-width: 900px;
}

.contact-heading h2 {
  font-size: clamp(3rem, 5.5vw, 5.6rem);
}

.contact-heading > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(15, 49, 69, 0.72);
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 70px;
}

.inquiry-form {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-navy);
  background: rgba(15, 49, 69, 0.025);
}

.form-heading {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  min-height: 112px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-navy);
}

.form-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.form-heading p {
  margin: 10px 0 0;
  color: rgba(15, 49, 69, 0.62);
  font-size: 0.8rem;
  line-height: 1.45;
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form label > span {
  color: rgba(15, 49, 69, 0.76);
  font-size: 0.7rem;
  font-weight: 600;
}

.inquiry-form label em {
  color: rgba(15, 49, 69, 0.46);
  font-style: normal;
  font-weight: 400;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line-navy);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.28);
  color: var(--navy);
  transition: border-color 180ms ease, background 180ms ease;
}

.inquiry-form input {
  height: 48px;
  padding: 0 13px;
}

.inquiry-form textarea {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--sage);
  background: rgba(143, 169, 156, 0.1);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(15, 49, 69, 0.38);
}

.form-button {
  width: 100%;
  margin-top: 8px;
  background: var(--navy);
  color: var(--cream);
}

.form-button:hover,
.form-button:focus-visible {
  background: var(--sage);
  color: var(--navy);
}

.direct-email {
  margin: 42px 0 0;
  color: rgba(15, 49, 69, 0.62);
  font-size: 0.78rem;
  text-align: center;
}

.direct-email a {
  color: var(--navy);
  text-underline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px max(32px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line-cream);
  background: var(--navy);
  color: var(--cream);
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 246, 229, 0.72);
  font-size: 0.68rem;
}

.site-footer .brand-detail {
  color: rgba(255, 246, 229, 0.7);
}

.site-footer > p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  :root {
    --page: min(100% - 48px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 24px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line-navy);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-navy);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
  }

  .site-nav a::after,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 86px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    max-width: 620px;
  }

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

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

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    min-height: 260px;
    padding: 30px;
    border-right: 1px solid var(--line-cream);
    border-bottom: 1px solid var(--line-cream);
  }

  .brand-section {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 7vw;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .offer-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 36px);
  }

  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .site-nav {
    top: 70px;
    padding-inline: 18px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-detail {
    font-size: 0.5rem;
  }

  .hero {
    padding: 56px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .creator-section,
  .process-section,
  .offer-section,
  .contact-section {
    padding: 82px 18px;
  }

  .section-heading h2,
  .brand-copy h2,
  .process-header h2,
  .founder-story h2,
  .offer-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    padding: 28px 22px 32px;
  }

  .brand-section,
  .founder-section {
    padding: 88px 0;
  }

  .brand-section {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .brand-mark {
    width: min(78vw, 340px);
  }

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

  .inquiry-form {
    padding: 24px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .site-footer > p:last-child {
    justify-self: start;
  }
}
