:root {
  color-scheme: dark;
  --bg: #0b0b0a;
  --bg-soft: #121210;
  --text: #f2efe8;
  --muted: #a8a59e;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #caa66a;
  --accent-bright: #e0c08a;
  --accent-glow: rgba(202, 166, 106, 0.18);
  --page-padding: clamp(1.25rem, 4vw, 4.75rem);
  --radius: 1.25rem;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 38%, rgba(202, 166, 106, 0.08), transparent 30rem),
    linear-gradient(135deg, #0a0a09 0%, #10100e 52%, #090909 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01" 1, "cv02" 1, "cv03" 1;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: .8rem 1rem;
  border-radius: .6rem;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: var(--page-padding);
}

.site-header {
  min-height: clamp(5.5rem, 11vh, 7.5rem);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(8.5rem, 14vw, 11.75rem);
  height: auto;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 0;
  color: var(--muted);
  font-size: .79rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.header-contact svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--text);
}

.header-contact:hover svg,
.header-contact:focus-visible svg {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 23rem);
  align-items: end;
  gap: clamp(3rem, 9vw, 10rem);
  padding: clamp(4.25rem, 9vh, 7.5rem) var(--page-padding) clamp(3.25rem, 7vh, 5.75rem);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 72rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 clamp(1.6rem, 3.5vh, 2.75rem);
  color: var(--accent-bright);
  font-size: clamp(.72rem, .9vw, .84rem);
  font-weight: 680;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 .32rem rgba(202, 166, 106, 0.1);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -.32rem;
  border: 1px solid rgba(224, 192, 138, 0.34);
  border-radius: inherit;
  animation: pulse 2.6s ease-out infinite;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.4rem, 8.4vw, 9rem);
  font-weight: 520;
  letter-spacing: -.064em;
  line-height: .91;
  text-wrap: balance;
}

.title-accent {
  color: transparent;
  background: linear-gradient(105deg, #f0e6d4 10%, #caa66a 46%, #8b6b3d 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.intro {
  max-width: 44rem;
  margin: clamp(2rem, 4vh, 3.5rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4rem);
  margin-top: clamp(2rem, 4.5vh, 3.75rem);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.6rem;
  padding: .9rem 1.35rem .9rem 1.55rem;
  border: 1px solid rgba(231, 207, 166, 0.62);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(202,166,106,.18), rgba(202,166,106,.06));
  color: #f5ead8;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .28s var(--ease), background .28s ease, border-color .28s ease;
}

.primary-button svg {
  width: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .28s var(--ease);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-bright);
  background: linear-gradient(120deg, rgba(202,166,106,.28), rgba(202,166,106,.09));
}

.primary-button:hover svg,
.primary-button:focus-visible svg {
  transform: translateX(4px);
}

.contact-line {
  display: grid;
  gap: .38rem;
  margin: 0;
}

.contact-line span {
  color: #6f6d68;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-line a {
  color: var(--text);
  font-size: .96rem;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .2s ease, color .2s ease;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}

.promise-card {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 16, 0.48);
  box-shadow: 0 1.5rem 6rem rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.promise-card__label {
  margin: 0 0 1rem;
  color: #77746d;
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.promise-card ul {
  display: grid;
  gap: .15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-card li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  min-height: 3rem;
  border-top: 1px solid var(--line);
  color: #d5d1c9;
  font-size: .88rem;
}

.promise-card li span {
  color: #68655f;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__glow {
  position: absolute;
  top: 3%;
  right: 7%;
  width: min(44vw, 46rem);
  aspect-ratio: .78;
  background: linear-gradient(108deg, rgba(202,166,106,.3), rgba(202,166,106,.045) 42%, transparent 72%);
  clip-path: polygon(5% 8%, 94% 0, 82% 100%, 0 91%);
  filter: blur(26px);
  opacity: .42;
  transform: rotate(-4deg);
}

.ambient__frame {
  position: absolute;
  top: 1%;
  right: 9%;
  width: min(34vw, 34rem);
  height: 91%;
  border: 1px solid rgba(202,166,106,.22);
  border-bottom: 0;
  transform: perspective(70rem) rotateY(-17deg) skewY(-1deg);
  transform-origin: right center;
  box-shadow: inset 4rem 0 9rem rgba(202,166,106,.045), 0 0 8rem rgba(202,166,106,.035);
}

.ambient__frame::before {
  content: "";
  position: absolute;
  inset: 4.5% 8% 0 10%;
  border: 1px solid rgba(255,255,255,.06);
  border-bottom: 0;
}

.ambient__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202,166,106,.42), transparent);
  transform-origin: left;
}

.ambient__line--one {
  top: 32%;
  right: -8%;
  width: 43%;
  transform: rotate(-28deg);
}

.ambient__line--two {
  right: -5%;
  bottom: 20%;
  width: 32%;
  transform: rotate(22deg);
  opacity: .45;
}

.site-footer {
  min-height: 4.4rem;
  border-top: 1px solid var(--line);
  color: #66635e;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .85s var(--ease) forwards;
}

.reveal--1 { animation-delay: .08s; }
.reveal--2 { animation-delay: .16s; }
.reveal--3 { animation-delay: .25s; }
.reveal--4 { animation-delay: .34s; }
.reveal--5 { animation-delay: .45s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(.7); opacity: .65; }
  70%, 100% { transform: scale(1.75); opacity: 0; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 3rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.7rem, 13vw, 6.7rem);
  }

  .promise-card {
    width: min(100%, 32rem);
  }

  .ambient__frame {
    right: -17%;
    width: 62vw;
    opacity: .55;
  }

  .ambient__glow {
    right: -18%;
    width: 70vw;
  }
}

@media (max-width: 580px) {
  .site-header {
    min-height: 5.1rem;
  }

  .header-contact span {
    display: none;
  }

  .hero {
    padding-top: clamp(3rem, 8vh, 4.5rem);
    padding-bottom: 2.5rem;
  }

  h1 {
    font-size: clamp(3.25rem, 16.5vw, 5.4rem);
    line-height: .93;
  }

  .intro {
    font-size: 1rem;
    line-height: 1.65;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.35rem;
  }

  .primary-button {
    width: 100%;
  }

  .promise-card {
    padding: 1.15rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: .35rem;
    min-height: 5rem;
  }

  .ambient__frame {
    top: 7%;
    right: -42%;
    width: 94vw;
    height: 74%;
    opacity: .38;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
}
