:root {
  color-scheme: light;
  --black: #060606;
  --white: #ffffff;
  --gray-50: #f7f7f5;
  --gray-100: #eeeeeb;
  --gray-300: #c9c9c2;
  --gray-500: #7c7c74;
  --gray-800: #20201e;
  --line: rgba(8, 8, 8, 0.12);
  --glass: rgba(255, 255, 255, 0.64);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--gray-50);
  text-rendering: geometricPrecision;
}
body.loaded .loader { opacity: 0; pointer-events: none; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 700ms ease;
  animation: loaderFallback 700ms ease 1100ms forwards;
}
.loader span {
  width: 42px;
  height: 1px;
  background: var(--black);
  animation: load 900ms ease-in-out infinite alternate;
}
@keyframes load { from { transform: scaleX(.28); opacity: .35; } to { transform: scaleX(1); opacity: 1; } }
@keyframes loaderFallback { to { opacity: 0; visibility: hidden; } }

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 70px rgba(0,0,0,.08);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 740; letter-spacing: 0; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 760;
}
.nav nav { display: flex; gap: 28px; color: rgba(0,0,0,.62); font-size: 13px; font-weight: 640; }
.nav nav a, .footer a { transition: color 180ms ease, opacity 180ms ease; }
.nav nav a:hover, .footer a:hover { color: var(--black); opacity: 1; }
.nav-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 720;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 6vw, 86px) 52px;
  overflow: hidden;
  background: var(--black);
}
.hero-media { position: absolute; inset: 0; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 46%, rgba(0,0,0,.24) 100%),
    linear-gradient(0deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.12) 46%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04) brightness(.82);
  transform: scale(1.03);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  color: var(--white);
}
.eyebrow {
  margin: 0 0 18px;
  color: currentColor;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .62;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(50px, 8vw, 112px);
  line-height: .94;
  letter-spacing: -.055em;
}
.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 720;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary, .button.light { background: var(--white); color: var(--black); }
.button.secondary { border-color: rgba(255,255,255,.38); color: var(--white); backdrop-filter: blur(18px); }
.hero-note {
  position: absolute;
  right: clamp(20px, 6vw, 86px);
  bottom: 54px;
  z-index: 1;
  width: min(320px, calc(100% - 40px));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  padding: 18px;
  backdrop-filter: blur(18px);
}
.hero-note span { display: block; margin-bottom: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; opacity: .68; }
.hero-note strong { color: var(--white); font-size: 15px; line-height: 1.35; }

.section-pad { padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 86px); }
.trust {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--white);
}
.trust-card {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8f8f6);
}
.trust-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 760;
}
.trust-card h3 { margin: 54px 0 10px; font-size: 18px; letter-spacing: -.02em; }
.trust-card p { margin: 0; color: var(--gray-500); font-size: 14px; line-height: 1.55; }

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(280px, .42fr);
  gap: clamp(28px, 7vw, 120px);
  align-items: end;
  margin-bottom: 40px;
}
h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(40px, 6vw, 88px);
  line-height: .98;
  letter-spacing: -.052em;
}
.section-intro p:not(.eyebrow), .service-copy p:not(.eyebrow), .inquiry-copy p {
  margin: 0;
  color: var(--gray-500);
  font-size: 17px;
  line-height: 1.65;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.collection-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--gray-100);
  isolation: isolate;
}
.collection-card:nth-child(1), .collection-card:nth-child(2) { grid-column: span 3; }
.collection-card:nth-child(n+3) { grid-column: span 2; min-height: 380px; }
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.08) saturate(.86);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 700ms ease;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.78));
  z-index: 1;
}
.collection-card div {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  color: var(--white);
}
.collection-card span { font-size: 12px; opacity: .66; }
.collection-card h3 { margin: 10px 0 8px; font-size: clamp(24px, 3vw, 42px); letter-spacing: -.04em; }
.collection-card p { margin: 0; color: rgba(255,255,255,.72); }
.collection-card:hover img { transform: scale(1.055); filter: grayscale(0) saturate(.95); }

.service {
  display: grid;
  grid-template-columns: minmax(300px, .48fr) minmax(0, 1fr);
  gap: clamp(38px, 8vw, 120px);
  background: var(--white);
}
.service-copy { position: sticky; top: 110px; align-self: start; }
.service-copy h2 { margin-bottom: 24px; }
.service-story {
  display: grid;
  gap: 14px;
}
.story-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--gray-100);
}
.story-frame:nth-child(even) { width: 82%; margin-left: auto; }
.story-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.story-frame span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 720;
  backdrop-filter: blur(14px);
}

.why { background: #f2f2ef; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  min-height: 250px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -.055em;
}
.stat span { display: block; margin-top: 16px; color: var(--gray-500); font-weight: 680; }

.buyer-flow { background: var(--white); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.flow-card {
  min-height: 260px;
  background: #fbfbf9;
  padding: 28px;
}
.flow-card span {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .12em;
}
.flow-card h3 {
  margin: 88px 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
}
.flow-card p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.55;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(340px, .62fr);
  gap: clamp(34px, 8vw, 120px);
  padding: clamp(80px, 11vw, 150px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 82% 20%, rgba(255,255,255,.16), transparent 34%),
    #050505;
  color: var(--white);
}
.inquiry-copy h2 { margin-bottom: 24px; }
.inquiry-copy p { max-width: 620px; color: rgba(255,255,255,.62); }
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  padding: 18px;
  backdrop-filter: blur(22px);
}
.inquiry-form label { display: grid; gap: 8px; }
.inquiry-form span { color: rgba(255,255,255,.62); font-size: 12px; font-weight: 680; }
.inquiry-form input, .inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 14px;
  outline: none;
}
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: rgba(255,255,255,.48); }
.inquiry-form textarea { resize: vertical; }
.full { grid-column: 1 / -1; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 86px);
  background: var(--white);
}
.footer div { display: flex; flex-wrap: wrap; gap: 22px; color: var(--gray-500); font-size: 14px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-intro, .service, .inquiry { grid-template-columns: 1fr; }
  .service-copy { position: static; }
  .collection-card:nth-child(n) { grid-column: span 3; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-note { display: none; }
}

@media (max-width: 720px) {
  .nav { top: 10px; width: calc(100% - 20px); grid-template-columns: 1fr auto; }
  .nav nav { display: none; }
  .nav-cta { padding: 0 14px; }
  .hero { min-height: 92svh; padding: 120px 20px 42px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.22)); }
  h1 { font-size: clamp(50px, 16vw, 82px); }
  .button { width: 100%; }
  .section-pad, .inquiry { padding: 72px 20px; }
  .trust { grid-template-columns: 1fr; }
  .trust-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-card h3 { margin-top: 36px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(n) { grid-column: auto; min-height: 420px; }
  .story-frame, .story-frame:nth-child(even) { width: 100%; min-height: 300px; }
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-card { min-height: 210px; }
  .flow-card h3 { margin-top: 54px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .footer { align-items: flex-start; flex-direction: column; }
}
