/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
:root {
  --paper: #f6f3ed;
  --paper-deep: #eee9df;
  --ink: #1f302b;
  --ink-soft: #52645d;
  --pine: #263f37;
  --sage: #8b9274;
  --sage-light: #e1e4d8;
  --terracotta: #883a4b;
  --white: #fffdf8;
  --line: rgba(38, 63, 55, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
button, a {
  -webkit-tap-highlight-color: transparent;
}
.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 96px;
  padding: 18px clamp(24px, 5vw, 80px);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
}
.brand-mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  height: 42px;
  justify-content: center;
  letter-spacing: -1px;
  width: 42px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}
.brand-copy small {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 44px);
}
nav a {
  color: var(--ink-soft);
  font-size: 13px;
  transition: color 180ms ease;
}
nav a:hover, nav a:focus-visible {
  color: var(--ink);
}
.header-cta {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 13px;
  gap: 18px;
  justify-self: end;
  padding: 8px 0;
}
.hero {
  display: grid;
  gap: clamp(44px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  min-height: 820px;
  overflow: hidden;
  padding: 170px clamp(24px, 7vw, 112px) 96px;
  position: relative;
}
.hero-copy {
  align-self: center;
  max-width: 810px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  align-items: center;
  color: var(--terracotta);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 30px;
}
h1, h2, h3, p {
  margin-top: 0;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(48px, 5.6vw, 84px);
  letter-spacing: -0.045em;
  line-height: 0.99;
  margin-bottom: 32px;
  max-width: 910px;
}
h1 em {
  color: var(--terracotta);
  font-weight: 400;
}
.hero-text {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
}
.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 38px;
}
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  gap: 36px;
  justify-content: center;
  padding: 17px 22px 17px 26px;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--pine);
  color: var(--white);
}
.button-primary:hover, .button-primary:focus-visible {
  background: #162a24;
}
.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  gap: 12px;
}
.hero-meta {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-top: 54px;
  padding-top: 20px;
}
.hero-meta span {
  align-items: center;
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 12px;
  gap: 8px;
}
.hero-meta i {
  background: var(--sage);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}
.hero-card {
  align-self: center;
  background: var(--sage-light);
  border-radius: 240px 240px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 2;
}
.hero-portrait {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 18%;
  position: absolute;
  width: 100%;
}
.hero-card-content {
  background: linear-gradient(180deg, transparent, rgba(19, 31, 27, 0.88) 36%);
  color: var(--white);
  margin-top: auto;
  padding: 150px 38px 38px;
  position: relative;
  z-index: 1;
}
.hero-card-content > p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-card h2 {
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.12;
  margin-bottom: 24px;
}
.approach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.approach-list span {
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 99px;
  font-size: 10px;
  padding: 7px 11px;
  text-transform: uppercase;
}
.hero-orb {
  border-radius: 50%;
  position: absolute;
}
.hero-orb-one {
  background: rgba(184, 112, 83, 0.09);
  height: 430px;
  left: -240px;
  top: 130px;
  width: 430px;
}
.hero-orb-two {
  border: 1px solid rgba(124, 149, 137, 0.23);
  height: 240px;
  left: 51%;
  top: 100px;
  width: 240px;
}
.section-shell {
  padding: 118px clamp(24px, 7vw, 112px);
}
.areas {
  background: var(--white);
}
.section-heading {
  align-items: end;
  display: grid;
  gap: 10%;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 64px;
}
.section-heading h2, .about-copy h2, .contact h2 {
  font-size: clamp(40px, 4.2vw, 66px);
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin: 0;
}
.section-heading > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 5px;
  max-width: 530px;
}
.area-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.area-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 280px;
  padding: 30px;
  transition: background 180ms ease;
}
.area-card:hover {
  background: var(--paper);
}
.area-number {
  color: var(--terracotta);
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 60px;
}
.area-card h3, .step h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
}
.area-card p, .step p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
.office {
  align-items: stretch;
  background: var(--paper-deep);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
}
.office-image {
  min-height: 620px;
  overflow: hidden;
}
.office-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.office-copy {
  align-self: center;
  padding: 72px clamp(34px, 6vw, 90px);
}
.office-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.8vw, 60px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 30px;
}
.office-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.office-address {
  border-left: 2px solid var(--terracotta);
  display: flex;
  flex-direction: column;
  font-style: normal;
  gap: 7px;
  margin: 0 0 30px;
  padding-left: 18px;
}
.office-address strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.office-address span {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}
.office-links {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 26px;
}
.office-copy .text-link {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
}
.about {
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: 0.8fr 1.05fr;
  padding: 130px clamp(24px, 9vw, 145px);
}
.about-visual {
  align-self: center;
  min-height: 620px;
  position: relative;
}
.about-visual > img {
  border-radius: 220px 220px 20px 20px;
  display: block;
  height: 560px;
  object-fit: cover;
  object-position: 68% center;
  width: min(100%, 450px);
}
.about-note {
  background: var(--terracotta);
  border-radius: 50%;
  bottom: 0;
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  height: 168px;
  justify-content: center;
  line-height: 1.35;
  padding: 28px;
  position: absolute;
  right: -22px;
  transform: rotate(-5deg);
  width: 168px;
}
.about-copy {
  align-self: center;
}
.about-copy h2 {
  margin-bottom: 36px;
}
.about-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}
.about-copy .lead {
  color: var(--ink);
  font-size: 18px;
}
.credential {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  margin-top: 34px;
  padding-top: 26px;
}
.credential-mark {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.credential > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  gap: 4px;
}
.credential small {
  color: var(--ink-soft);
}
.process {
  background: var(--paper-deep);
}
.section-heading.compact {
  margin-bottom: 52px;
}
.steps {
  border-top: 1px solid var(--line);
}
.step {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(32px, 8vw, 120px);
  grid-template-columns: 54px minmax(0, 720px);
  padding: 38px 0;
}
.step > span {
  align-items: center;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.step h3 {
  margin: 0 0 8px;
}
.contact {
  background: var(--pine);
  color: var(--white);
}
.contact-inner {
  align-items: end;
  display: grid;
  gap: clamp(32px, 5vw, 74px);
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.62fr) minmax(150px, 210px);
}
.eyebrow-light {
  color: #d9a48e;
}
.contact h2 {
  max-width: 780px;
}
.contact-copy > p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.button-light {
  background: var(--white);
  color: var(--pine);
  width: fit-content;
}
.button-light:hover, .button-light:focus-visible {
  background: var(--sage-light);
}
.contact-copy small {
  color: rgba(255, 253, 248, 0.48);
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-top: 13px;
}
.instagram-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 7px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.instagram-link:hover, .instagram-link:focus-visible {
  text-decoration: underline;
}
.instagram-link-light {
  color: rgba(255, 253, 248, 0.82);
  margin-top: 22px;
}
.contact-mark-panel {
  align-self: center;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(11, 24, 19, 0.22);
  overflow: hidden;
  padding: 10px;
}
.contact-mark-panel img {
  display: block;
  height: auto;
  width: 100%;
}
footer {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 42px clamp(24px, 7vw, 112px);
}
.footer-instagram {
  color: var(--pine);
  grid-column: 1 / -1;
  justify-self: center;
}
footer > p {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.footer-location {
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-style: normal;
  gap: 3px;
  line-height: 1.55;
  text-align: center;
}
.footer-location strong {
  color: var(--ink);
  font-weight: 600;
}
.footer-location small {
  font-size: 10px;
  margin-top: 3px;
}
footer .footer-note {
  justify-self: end;
  max-width: 260px;
  text-align: right;
}
:focus-visible {
  outline: 3px solid rgba(184, 112, 83, 0.52);
  outline-offset: 4px;
}
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  nav {
    display: none;
  }
  .hero {
    gap: 54px;
    grid-template-columns: 1fr 360px;
    padding-top: 150px;
  }
  .hero-card {
    min-height: 540px;
  }
  .hero-card-content {
    padding: 130px 30px 32px;
  }
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .office {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .office-image {
    min-height: 560px;
  }
  .about {
    gap: 70px;
  }
  .about-note {
    right: -16px;
  }
  .contact-inner {
    grid-template-columns: 1.1fr 0.8fr;
  }
  .contact-mark-panel {
    grid-column: 2;
    max-width: 170px;
  }
}
@media (max-width: 780px) {
  .site-header {
    min-height: 82px;
  }
  .header-cta {
    font-size: 0;
    gap: 0;
  }
  .header-cta span {
    font-size: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }
  h1 {
    font-size: clamp(44px, 13vw, 66px);
  }
  .hero-card {
    border-radius: 190px 190px 24px 24px;
    min-height: 590px;
  }
  .section-shell {
    padding-bottom: 88px;
    padding-top: 88px;
  }
  .section-heading, .contact-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }
  .area-grid {
    grid-template-columns: 1fr;
  }
  .area-card {
    min-height: 0;
  }
  .area-number {
    margin-bottom: 44px;
  }
  .office {
    grid-template-columns: 1fr;
  }
  .office-image {
    min-height: 0;
  }
  .office-image img {
    aspect-ratio: 4 / 3;
  }
  .office-copy {
    padding: 72px 24px 84px;
  }
  .about {
    grid-template-columns: 1fr;
    padding: 90px 24px;
  }
  .about-visual {
    min-height: 500px;
  }
  .about-visual > img {
    height: 500px;
    width: 100%;
  }
  .contact-copy {
    margin-top: 36px;
  }
  .contact-mark-panel {
    grid-column: 1;
    margin-top: 14px;
    max-width: 190px;
  }
  footer {
    align-items: start;
    grid-template-columns: 1fr;
  }
  footer > p, footer .footer-note, .footer-location {
    justify-self: start;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .brand-copy {
    display: none;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .button-primary {
    width: 100%;
  }
  .hero-meta {
    align-items: start;
    flex-direction: column;
  }
  .about-note {
    bottom: -18px;
    height: 140px;
    right: 0;
    width: 140px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
