:root {
  --navy: #07111f;
  --navy-2: #0a1728;
  --ink: #0f1a2a;
  --cream: #f3ede3;
  --cream-2: #e9dfcf;
  --gold: #c7a064;
  --gold-light: #e2c791;
  --muted: #aeb6c2;
  --line: rgba(199, 160, 100, .34);
  --shell: min(1200px, calc(100vw - 40px));
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus { transform: none; }

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 22px 0;
}
.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  letter-spacing: .28em;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}
.brand-mark { width: 44px; height: 44px; overflow: visible; }
.brand-mark path { fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.mark-four { stroke: var(--gold); }
.mark-c { stroke: var(--cream); }
nav { display: flex; align-items: center; gap: 30px; }
nav a {
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(243, 237, 227, .74);
  transition: color .25s ease;
}
nav a:hover { color: var(--cream); }
.nav-cta {
  border: 1px solid var(--line);
  padding: 11px 15px;
  color: var(--gold-light);
}

.hero {
  min-height: 810px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(199,160,100,.12), transparent 24%),
    linear-gradient(145deg, #081321 0%, #07111f 55%, #030a12 100%);
  padding: 160px 0 94px;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -100px;
  top: 110px;
  border-radius: 50%;
  background: rgba(199,160,100,.07);
  filter: blur(45px);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 30px;
}
.eyebrow, .section-label {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5.7vw, 6.3rem);
  line-height: .94;
  letter-spacing: -.045em;
}
h1 em { color: var(--gold-light); font-weight: 400; }
.intro {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(243, 237, 227, .72);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.78;
}
.signup { max-width: 610px; }
.signup label {
  display: block;
  margin-bottom: 12px;
  color: var(--cream-2);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.signup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(199,160,100,.6);
  background: rgba(7,17,31,.72);
  backdrop-filter: blur(12px);
}
.signup input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--cream);
  background: transparent;
  padding: 15px 16px;
}
.signup input::placeholder { color: rgba(243,237,227,.42); }
.signup input:focus { box-shadow: inset 0 0 0 2px rgba(226,199,145,.35); }
.signup button, .button {
  border: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #182031;
  padding: 15px 21px;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, filter .25s ease;
}
.signup button:hover, .button:hover { transform: translateY(-2px); filter: brightness(1.06); }
.form-status { min-height: 22px; margin: 10px 0 0; color: var(--gold-light); font-size: .82rem; }
.promise {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
  color: rgba(243,237,227,.48);
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.promise i { width: 18px; height: 1px; background: var(--line); }

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.visual-frame {
  position: relative;
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(226,199,145,.2);
  border-radius: 2px 2px 100px 2px;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}
.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 90px rgba(2,8,16,.55);
  pointer-events: none;
}
.visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.visual-shine {
  position: absolute;
  z-index: 3;
  inset: -30% auto -30% -40%;
  width: 28%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  animation: shine 6.5s ease-in-out infinite;
}
@keyframes shine { 0%, 35% { left: -40%; } 70%, 100% { left: 120%; } }
.floating-card {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: 245px;
  padding: 14px 16px;
  border: 1px solid rgba(199,160,100,.35);
  background: rgba(7,17,31,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
}
.floating-card span { color: var(--gold); font: 400 1.65rem/1 var(--serif); }
.floating-card strong { font-size: .72rem; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
.card-one { left: -22px; bottom: 115px; }
.card-two { right: -12px; top: 86px; }

.contours {
  position: absolute;
  opacity: .25;
  background-image:
    repeating-radial-gradient(ellipse at center, transparent 0 18px, rgba(199,160,100,.2) 19px 20px, transparent 21px 34px);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.contours-a { width: 560px; height: 620px; right: -150px; top: 160px; transform: rotate(-8deg); }

.statement {
  background:
    radial-gradient(circle at 10% 10%, rgba(199,160,100,.08), transparent 25%),
    var(--cream);
  color: var(--ink);
  padding: 105px 0;
}
.statement-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 60px;
  align-items: start;
}
.statement .section-label { color: #99723d; margin-top: 13px; }
.statement h2, .expertise h2, .closing h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.3vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.statement p:not(.section-label) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(15,26,42,.68);
  font-size: 1.08rem;
  line-height: 1.78;
}

.expertise {
  position: relative;
  background: #f8f3eb;
  color: var(--ink);
  padding: 110px 0 125px;
}
.section-heading { max-width: 720px; margin-bottom: 48px; }
.expertise .section-label { color: #99723d; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 355px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(15,26,42,.12);
  background: rgba(255,255,255,.54);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199,160,100,.62);
  box-shadow: 0 24px 48px rgba(31,28,24,.1);
}
.card-index { position: absolute; right: 24px; top: 22px; color: rgba(15,26,42,.2); font: 400 2.3rem/1 var(--serif); }
.service-card svg { width: 46px; height: 46px; margin: 56px 0 40px; fill: none; stroke: #a47a41; stroke-width: 1.6; }
.service-card h3 { margin-bottom: 14px; font-size: 1.8rem; }
.service-card p { margin-bottom: 0; color: rgba(15,26,42,.64); line-height: 1.72; }

.closing {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 77% 44%, rgba(199,160,100,.12), transparent 26%),
    var(--navy-2);
  text-align: center;
  padding: 100px 0;
}
.closing-inner { position: relative; z-index: 2; max-width: 900px; }
.closing .eyebrow { justify-content: center; }
.closing p:not(.eyebrow) { max-width: 650px; margin: 0 auto 32px; color: rgba(243,237,227,.66); line-height: 1.75; }
.button { display: inline-block; text-decoration: none; }
.contours-b { width: 700px; height: 700px; right: -220px; top: -40px; transform: rotate(22deg); }

footer { padding: 30px 0; background: #040a12; border-top: 1px solid rgba(199,160,100,.16); }
footer .brand { color: var(--cream); }
footer p { margin: 0; color: rgba(243,237,227,.42); font-size: .78rem; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 1050px) {
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 520px; margin-top: 22px; }
  .visual-frame { width: min(780px, 92%); }
  .card-one { left: 0; }
  .card-two { right: 0; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 680px); }
  .site-header { padding-top: 16px; }
  nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 12px; font-size: .65rem; }
  .brand span { font-size: .7rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: auto; padding: 130px 0 72px; }
  h1 { font-size: clamp(3.05rem, 14vw, 5.4rem); }
  .intro { line-height: 1.65; }
  .hero-visual { min-height: 420px; }
  .visual-frame { width: 100%; border-radius: 2px 2px 56px 2px; }
  .floating-card { width: 205px; padding: 11px 12px; }
  .floating-card strong { font-size: .62rem; }
  .card-one { bottom: 28px; }
  .card-two { top: 24px; }
  .statement, .expertise { padding: 78px 0; }
  .statement-grid { grid-template-columns: 1fr; gap: 12px; }
  .statement .section-label { margin-top: 0; }
  .cards { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .service-card svg { margin: 36px 0 30px; }
  .closing { min-height: 550px; padding: 80px 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .signup-row { grid-template-columns: 1fr; }
  .signup button { width: 100%; }
  .promise { gap: 8px; }
  .hero-visual { min-height: 350px; margin-top: 14px; }
  .floating-card { display: none; }
  .statement h2, .expertise h2, .closing h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .service-card { padding: 26px; }
}

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