/* [project]/src/app/globals.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, utilities;

:root {
  --background: #080808;
  --foreground: #f5f5f1;
  --muted: #a8a8a2;
  --line: #ffffff24;
  --line-soft: #ffffff14;
  --surface: #11110f;
  --warm: #d7d2c8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0;
  font-family: Arial, Helvetica Neue, Apple SD Gothic Neo, Noto Sans KR, sans-serif;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  background: var(--background);
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: 100%;
  height: 94px;
  padding: 0 clamp(24px, 4.2vw, 72px);
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
}

.brand {
  letter-spacing: -.03em;
  justify-self: start;
  align-items: baseline;
  gap: 9px;
  width: fit-content;
  display: inline-flex;
}

.brand-primary {
  font-size: 20px;
  font-weight: 800;
}

.brand-secondary {
  color: #b7b7b1;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
}

.primary-nav {
  color: #d8d8d3;
  letter-spacing: .12em;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.primary-nav span {
  cursor: default;
  white-space: nowrap;
}

.header-cta {
  letter-spacing: .13em;
  border: 1px solid #ffffff7a;
  border-radius: 999px;
  justify-content: center;
  justify-self: end;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 700;
  transition: background .18s, color .18s, border-color .18s;
  display: inline-flex;
}

.header-cta:hover {
  color: #080808;
  background: #fff;
  border-color: #fff;
}

.hero {
  isolation: isolate;
  background: linear-gradient(115deg, #080808 0%, #0c0c0b 54%, #11100e 100%);
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: clamp(156px, 18vh, 210px) clamp(24px, 6.5vw, 112px) 0;
  display: flex;
  position: relative;
}

.hero-grid {
  z-index: -3;
  opacity: .28;
  background-image: linear-gradient(#ffffff09 1px, #0000 1px), linear-gradient(90deg, #ffffff09 1px, #0000 1px);
  background-size: 72px 72px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#0000, #000 22% 78%, #0000);
  mask-image: linear-gradient(#0000, #000 22% 78%, #0000);
}

.hero-glow {
  z-index: -2;
  filter: blur(2px);
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.hero-glow-one {
  aspect-ratio: 1;
  background: radial-gradient(circle, #aa9d852b 0%, #5b544914 35%, #0000 72%);
  width: min(46vw, 760px);
  top: 10%;
  right: -7%;
}

.hero-glow-two {
  aspect-ratio: 1;
  background: radial-gradient(circle, #ffffff12 0%, #0000 70%);
  width: min(24vw, 420px);
  bottom: 5%;
  left: 28%;
}

.hero-content {
  width: min(1120px, 100%);
}

.hero-eyebrow {
  color: #bebeb8;
  letter-spacing: .18em;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
}

.hero-eyebrow span {
  background: #ffffff5c;
  width: 42px;
  height: 1px;
  display: inline-block;
}

.hero h1 {
  letter-spacing: -.065em;
  max-width: 1080px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(68px, 9.8vw, 164px);
  font-weight: 400;
  line-height: .84;
}

.hero h1 span {
  color: var(--warm);
  margin-top: .08em;
  font-style: italic;
  font-weight: 400;
  display: block;
}

.hero-description {
  color: #bdbdb6;
  letter-spacing: -.015em;
  max-width: 600px;
  margin: clamp(38px, 5vh, 64px) 0 0;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.9;
}

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

.button {
  letter-spacing: .13em;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 26px;
  min-height: 52px;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 700;
  transition: transform .18s, background .18s, color .18s, border-color .18s;
  display: inline-flex;
}

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

.button-primary {
  color: #090909;
  background: #f2f1ec;
}

.button-primary:hover {
  background: #fff;
}

.button-secondary {
  color: #deded9;
  border-color: #ffffff40;
}

.button-secondary:hover {
  border-color: #ffffffb3;
}

.hero-services {
  border-top: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #04040457;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: calc(100% + clamp(48px, 13vw, 224px));
  margin-top: clamp(76px, 10vh, 126px);
  margin-left: calc(-1 * clamp(24px, 6.5vw, 112px));
  display: grid;
}

.hero-service {
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 24px;
  min-height: 130px;
  padding: 24px clamp(22px, 3vw, 48px);
  display: flex;
}

.hero-service:last-child {
  border-right: 0;
}

.service-number {
  color: #777771;
  align-self: flex-start;
  margin-top: 4px;
  font-family: Georgia, serif;
  font-size: 12px;
}

.hero-service h2 {
  letter-spacing: .13em;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.hero-service p {
  color: #999993;
  margin: 9px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.request-preview {
  text-align: center;
  color: #11110f;
  background: #f0eee8;
  align-content: center;
  place-items: center;
  min-height: 430px;
  padding: 84px 24px;
  display: grid;
}

.request-kicker {
  color: #7f7d76;
  letter-spacing: .18em;
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 700;
}

.request-preview h2 {
  letter-spacing: -.045em;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
}

.request-preview > p:not(.request-kicker) {
  color: #62605b;
  max-width: 590px;
  margin: 26px auto 0;
  font-size: 14px;
  line-height: 1.9;
}

.request-preview > span {
  color: #77746d;
  letter-spacing: .16em;
  border: 1px solid #11110f2e;
  margin-top: 36px;
  padding: 12px 16px;
  font-size: 9px;
  font-weight: 700;
}

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

  .primary-nav {
    display: none;
  }

  .hero-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-service:nth-child(2) {
    border-right: 0;
  }

  .hero-service:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .brand {
    gap: 7px;
  }

  .brand-primary {
    font-size: 17px;
  }

  .brand-secondary {
    font-size: 9px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 8px;
  }

  .hero {
    min-height: 100svh;
    padding: 132px 20px 0;
  }

  .hero-eyebrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 8px;
    line-height: 1.6;
  }

  .hero-eyebrow span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(57px, 18vw, 92px);
    line-height: .9;
  }

  .hero-description {
    margin-top: 34px;
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-description br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-services {
    grid-template-columns: 1fr;
    width: calc(100% + 40px);
    margin-top: 64px;
    margin-left: -20px;
  }

  .hero-service {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 92px;
    padding: 20px;
  }

  .hero-service:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-service:last-child {
    border-bottom: 0;
  }

  .request-preview {
    min-height: 390px;
    padding: 70px 24px;
  }
}

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

  *, :before, :after {
    transition-duration: .01ms !important;
  }
}

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