/*! 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 {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --navy: #071b2d;
  --ink: #111820;
  --cream: #f2ecdf;
  --paper: #fbfaf7;
  --gold: #d7ad5d;
  --orange: #c95f19;
  --muted: #66717a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial,Helvetica,sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid #d8d8d3;
  background: rgba(251,250,247,.96);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  font-size: 17px;
  letter-spacing: 2.5px;
  font-weight: 500;
}
.brand span {
  font-weight: 900;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}
.navCta,.primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 15px 22px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.hero {
  min-height: 760px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 110px 8vw 90px;
  display: flex;
  align-items: center;
}
.heroGrid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(215,173,93,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(215,173,93,.08) 1px,transparent 1px);
  background-size: 95px 95px;
  mask-image: linear-gradient(90deg,transparent,black);
}
.hero:after {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(215,173,93,.38);
  border-radius: 50%;
  right: -130px;
  top: 45px;
  box-shadow: 0 0 0 105px rgba(215,173,93,.04),0 0 0 210px rgba(215,173,93,.03);
}
.heroCopy {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.hero .eyebrow {
  color: var(--gold);
}
h1,h2 {
  font-family: Georgia,serif;
  font-weight: 400;
  letter-spacing: -4px;
}
.hero h1 {
  font-size: clamp(72px,9vw,138px);
  line-height: .78;
  margin: 0 0 42px;
}
.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}
.lead {
  font-size: 20px;
  line-height: 1.65;
  color: #c9d1d8;
  max-width: 650px;
}
.heroActions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}
.textLink {
  font-size: 13px;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.heroNote {
  position: absolute;
  right: 4vw;
  bottom: 35px;
  display: flex;
  gap: 28px;
  color: #8fa0af;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 3px;
  z-index: 2;
}
.trust {
  padding: 34px 6vw;
  border-bottom: 1px solid #d9d7d0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.trust>p {
  font: italic 22px Georgia,serif;
}
.trust div {
  display: flex;
  gap: 35px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.services {
  padding: 120px 6vw;
}
.sectionIntro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px;
}
.sectionIntro h2,.approach h2,.about h2,.contact h2 {
  font-size: clamp(48px,6vw,88px);
  line-height: .95;
  margin: 0;
}
.sectionIntro>p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 570px;
}
.serviceGrid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid #cfcfc9;
}
.serviceGrid article {
  padding: 42px 6vw 50px 0;
  border-bottom: 1px solid #cfcfc9;
}
.serviceGrid article:nth-child(odd) {
  border-right: 1px solid #cfcfc9;
}
.serviceGrid article:nth-child(even) {
  padding-left: 6vw;
}
.serviceGrid article>span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}
.serviceGrid h3 {
  font: 400 35px Georgia,serif;
  margin: 28px 0 12px;
}
.serviceGrid p {
  color: var(--muted);
  line-height: 1.7;
}
.approach {
  background: var(--cream);
  padding: 120px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.approach ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.approach li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid #c9c1b4;
}
.approach li>span {
  font-size: 11px;
  color: var(--orange);
  font-weight: 900;
}
.approach h3 {
  font: 400 30px Georgia,serif;
  margin: 0 0 10px;
}
.approach li p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.about {
  padding: 130px 8vw;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10vw;
  align-items: center;
}
.aboutMark {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font: 400 clamp(80px,12vw,180px) Georgia,serif;
  position: relative;
}
.aboutMark:after {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(215,173,93,.5);
}
.about p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.contact {
  padding: 130px 8vw;
  background: var(--orange);
  color: #fff;
  text-align: center;
}
.contact .eyebrow {
  color: #ffd9c3;
}
.contact h2 {
  font-size: clamp(60px,8vw,110px);
}
.contact>p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px auto 35px;
  line-height: 1.7;
}
.primary.light {
  background: #fff;
  color: var(--orange);
  text-transform: none;
  font-size: 14px;
}
footer {
  background: #061522;
  color: #c4ccd2;
  padding: 55px 6vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  font-size: 13px;
  line-height: 1.8;
}
footer .brand {
  color: #fff;
}
footer>p {
  text-align: right;
}
@media (max-width:850px) {
  .nav nav a:not(.navCta) {
    display: none;
  }
  .hero {
    min-height: 680px;
    padding: 90px 24px;
  }
  .hero h1 {
    font-size: 70px;
    letter-spacing: -3px;
  }
  .heroActions,.trust,.sectionIntro,.approach,.about {
    display: block;
  }
  .heroActions a {
    margin: 0 18px 15px 0;
  }
  .heroNote {
    display: none;
  }
  .trust div {
    display: grid;
    gap: 12px;
  }
  .services,.approach,.about,.contact {
    padding: 85px 24px;
  }
  .sectionIntro h2,.approach h2,.about h2 {
    margin-bottom: 28px;
  }
  .serviceGrid {
    grid-template-columns: 1fr;
  }
  .serviceGrid article,.serviceGrid article:nth-child(even) {
    padding: 35px 0;
    border-right: 0;
  }
  .aboutMark {
    max-width: 450px;
    margin: 0 auto 55px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer>p {
    text-align: left;
  }
}
@media (max-width:480px) {
  .nav {
    padding: 0 18px;
  }
  .brand {
    font-size: 14px;
  }
  .navCta {
    padding: 12px;
    font-size: 10px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .trust {
    padding: 28px 20px;
  }
  .serviceGrid h3 {
    font-size: 31px;
  }
  .contact h2 {
    font-size: 58px;
  }
}
