/* [project]/src/app/style.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
      "Noto Sans", Arial, 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;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, 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;
    -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 {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :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)) {
      ::placeholder {
        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 {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-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"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }
}

:root {
  --ink: #20221f;
  --cream: #f3f0e8;
  --yellow: #e9f25b;
  --orange: #e8663f;
  --line: #c9c6bd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  margin: 0;
  font-family: Arial, sans-serif;
}

.wrap {
  max-width: 1180px;
  margin: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.nav {
  justify-content: space-between;
  align-items: center;
  height: 78px;
  display: flex;
}

.logo {
  color: var(--ink);
  letter-spacing: -1.5px;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.logo-mark {
  background: var(--orange);
  color: #fff;
  place-items: center;
  width: 27px;
  height: 27px;
  font-size: 23px;
  font-weight: 300;
  display: grid;
}

.links {
  gap: 33px;
  margin-left: auto;
  margin-right: 42px;
  display: flex;
}

.links a, .muted, .hero-note, small {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: inherit;
  font-size: 10px;
  text-decoration: none;
}

.nav-cta, .yellow-btn, .dark-btn {
  cursor: pointer;
  border: 0;
  padding: 14px 18px;
  font-weight: 700;
}

.nav-cta {
  background: none;
}

.nav-cta span, .yellow-btn span, .dark-btn span {
  margin-left: 16px;
  font-size: 18px;
}

.menu {
  background: none;
  border: 0;
  font-size: 20px;
  display: none;
}

.hero {
  background: #292923;
  height: 620px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background: linear-gradient(90deg, #141612d9, #1416126e 47%, #1416120f), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=85") center / cover;
  position: absolute;
  inset: 0;
}

.hero-content {
  color: #fff;
  padding-top: 105px;
  position: relative;
}

.eyebrow {
  letter-spacing: 1.7px;
  margin: 0 0 28px;
  font-size: 10px;
  font-weight: bold;
}

.eyebrow span {
  color: var(--orange);
  margin-left: 9px;
  font-size: 15px;
}

.eyebrow.light {
  color: #fff;
}

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

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

h1 {
  letter-spacing: -7px;
  margin: 0 0 32px;
  font-size: clamp(64px, 9vw, 124px);
  font-weight: 500;
  line-height: .84;
}

h1 i, h2 i {
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-copy {
  color: #e6e5dc;
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.5;
}

.yellow-btn {
  background: var(--yellow);
  color: var(--ink);
}

.hero-note {
  color: #fff;
  position: absolute;
  bottom: 27px;
  left: max(28px, 50% - 562px);
}

.hero-note span {
  margin-left: 12px;
  font-size: 20px;
}

.intro {
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 125px;
  padding-bottom: 130px;
  display: grid;
}

h2 {
  letter-spacing: -3px;
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  line-height: .94;
}

.intro-text {
  max-width: 390px;
  padding-top: 45px;
}

.intro-text p, .feature-copy > p, .contact-action p {
  color: #55564f;
  font-size: 17px;
  line-height: 1.5;
}

.arrow-link {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-top: 20px;
  padding-bottom: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.arrow-link span {
  margin-left: 18px;
}

.services {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  padding-bottom: 140px;
}

.section-head {
  justify-content: space-between;
  display: flex;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  display: grid;
}

.service-card {
  text-align: left;
  border: 0;
  border-top: 1px solid var(--ink);
  cursor: pointer;
  background: none;
  gap: 30px;
  padding: 20px 0;
  display: flex;
}

.service-card > span {
  color: #777;
  font-size: 11px;
}

.service-card h3 {
  margin: 0 0 17px;
  font-size: 27px;
  font-weight: 500;
}

.service-card h3 b {
  color: var(--orange);
  margin-left: 15px;
  font-size: 24px;
}

.service-card p {
  color: #666;
  max-width: 180px;
  font-size: 14px;
  line-height: 1.4;
}

.feature {
  grid-template-columns: 1fr 1fr;
  min-height: 590px;
  margin-bottom: 140px;
  display: grid;
}

.feature-photo {
  filter: saturate(.7);
  background: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1100&q=85") center / cover;
}

.feature-copy {
  background: var(--orange);
  padding: 80px 11%;
}

.feature-copy .eyebrow {
  color: #fff;
}

.feature-copy .eyebrow span {
  color: var(--yellow);
}

.feature-copy > p {
  color: #fff;
  max-width: 350px;
  margin-top: 35px;
}

.stats {
  gap: 55px;
  margin-top: 70px;
  display: flex;
}

.stats strong {
  font-size: 48px;
  font-weight: 400;
  display: block;
}

.stats strong span {
  font-size: 24px;
}

.stats small {
  margin-top: 5px;
  display: block;
}

.contact {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 130px;
  display: grid;
}

.contact-action {
  max-width: 370px;
  padding-top: 50px;
}

.dark-btn {
  background: var(--ink);
  color: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-inner {
  color: #777;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  display: flex;
}

.modal-backdrop {
  z-index: 10;
  background: #20221fcc;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--cream);
  width: min(520px, 100%);
  padding: 45px;
  position: relative;
}

.modal h2 {
  margin-bottom: 30px;
  font-size: 48px;
}

.close {
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 28px;
  position: absolute;
  top: 15px;
  right: 20px;
}

.modal form {
  gap: 12px;
  display: grid;
}

.modal input, .modal select, .modal textarea {
  font: inherit;
  background: none;
  border: 1px solid #c4c2ba;
  border-radius: 0;
  padding: 14px;
}

.success {
  text-align: center;
  padding: 35px 10px;
}

.success > span {
  color: var(--orange);
  font-size: 38px;
}

.success p {
  color: #666;
}

.success .dark-btn {
  margin-top: 15px;
}

@media (max-width: 700px) {
  .links {
    display: none;
  }

  .links.open {
    background: var(--cream);
    z-index: 3;
    flex-direction: column;
    margin: 0;
    padding: 25px 28px;
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .menu {
    display: block;
  }

  .hero {
    height: 600px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .intro, .feature, .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro {
    padding-top: 85px;
    padding-bottom: 90px;
  }

  .intro-text {
    padding-top: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
  }

  .services {
    padding-bottom: 90px;
  }

  .feature {
    margin-bottom: 90px;
  }

  .feature-photo {
    min-height: 330px;
  }

  .feature-copy {
    padding: 60px 28px;
  }

  .stats {
    margin-top: 50px;
  }

  .contact {
    padding-bottom: 90px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-inner span:last-child {
    display: none;
  }

  .modal {
    padding: 35px 25px;
  }

  .modal h2 {
    font-size: 40px;
  }
}

/*# sourceMappingURL=src_app_style_0i_b2ca.css.map*/