/* ============================================================
   AURA CREATIVE — shared styles
   Palette: warm ink / champagne / ivory / stone
   Type: Marcellus (display) · Jost (body & utility)
   ============================================================ */

:root {
  --ink: #131009;
  --surface: #1b1610;
  --surface-2: #221c14;
  --champagne: #c9a868;
  --champagne-soft: rgba(201, 168, 104, 0.35);
  --ivory: #efe8da;
  --stone: #9a9184;
  --line: rgba(201, 168, 104, 0.18);
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--champagne); color: var(--ink); }

img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

.eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  display: block;
  margin-bottom: 1.4rem;
}

.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--stone); max-width: 46ch; }

.gold { color: var(--champagne); }

p + p { margin-top: 1.2em; }

a { color: var(--champagne); text-decoration: none; transition: opacity 0.25s ease; }
a:hover { opacity: 0.75; }
a:focus-visible, button:focus-visible {
  outline: 1px solid var(--champagne);
  outline-offset: 4px;
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(19, 16, 9, 0.92), rgba(19, 16, 9, 0.75));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Marcellus", serif;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark { height: 30px; width: 30px; }
.logo em { font-style: normal; color: var(--champagne); }

.nav-links { display: flex; gap: 2.4rem; align-items: center; }

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav-links a:hover, .nav-links a.active { color: var(--champagne); opacity: 1; }

/* ---------- hero + aura halo (signature) ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-inner { position: relative; z-index: 2; }

.halo {
  position: absolute;
  top: 50%; left: 72%;
  width: 720px; height: 720px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.halo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 104, 0.14) 0%, rgba(201, 168, 104, 0.05) 42%, transparent 68%);
}

.halo svg { width: 100%; height: 100%; }

.ring-slow { animation: spin 90s linear infinite; transform-origin: center; }
.ring-slower { animation: spin 140s linear infinite reverse; transform-origin: center; }

@keyframes spin { to { transform: rotate(360deg); } }

.hero-cta { margin-top: 3rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid var(--champagne);
  color: var(--champagne);
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover { background: var(--champagne); color: var(--ink); opacity: 1; }

.btn-solid { background: var(--champagne); color: var(--ink); }
.btn-solid:hover { background: transparent; color: var(--champagne); }

/* ---------- sections ---------- */

.section { padding: clamp(90px, 12vw, 150px) 0; }

.section + .section { border-top: 1px solid var(--line); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.statement {
  padding: 3rem 2.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
}
.statement h3 { margin-bottom: 1.1rem; }
.statement p { color: var(--stone); }

/* ---------- service blocks ---------- */

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(70px, 9vw, 110px) 0;
}
.service + .service { border-top: 1px solid var(--line); }

.service-kicker {
  font-family: "Marcellus", serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.2rem;
}

.service h2 { margin-bottom: 1.4rem; }
.service-lede { color: var(--stone); }

.offer { padding: 1.8rem 0; }
.offer + .offer { border-top: 1px solid var(--line); }
.offer h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.offer p { color: var(--stone); font-size: 0.98rem; }

/* ---------- contact / footer ---------- */

.contact {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(90px, 12vw, 140px) 0 60px;
  text-align: center;
}

.contact h2 { margin: 0 auto 1.2rem; max-width: 18ch; }
.contact .lede { margin: 0 auto 2.6rem; }

.contact-form {
  max-width: 560px;
  margin: 0 auto 4.5rem;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.contact-form .field + .field { margin-top: 1.8rem; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--ivory);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--champagne);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--stone); opacity: 0.7; }

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--ink) inset;
  -webkit-text-fill-color: var(--ivory);
  caret-color: var(--ivory);
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form .btn {
  margin-top: 2.2rem;
  width: 100%;
  background: none;
  cursor: pointer;
  font-family: "Jost", system-ui, sans-serif;
}
.contact-form .btn:disabled { opacity: 0.5; cursor: default; }

.form-status {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  min-height: 1.4em;
}

.footer-bar {
  border-top: 1px solid var(--line);
  padding-top: 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ring-slow, .ring-slower { animation: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 820px) {
  .two-col, .service { grid-template-columns: 1fr; }
  .halo { left: 50%; top: 30%; width: 480px; height: 480px; opacity: 0.7; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.18em; }
  .hero { min-height: 88vh; }
}
