:root {
  --gold: #c9952c;
  --gold-dark: #a97718;
  --black: #111111;
  --ink: #222222;
  --muted: #666666;
  --line: #e7e0d5;
  --cream: #fbf7ef;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.topbar {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}

.topbar-inner,
.header-inner,
.container,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: min(120px, 30vw);
  height: auto;
  display: block;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 30px;
  font-weight: 900;
}

.brand-title {
  display: block;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
}

.trust-item strong {
  display: block;
  font-size: 20px;
}

.trust-item span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.hero {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    radial-gradient(circle at 20% 20%, rgba(201,149,44,0.18), transparent 28%),
    var(--black);
  color: var(--white);
  padding: 86px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.hero::before {
  width: 700px;
  height: 500px;
  background: rgba(201, 149, 44, 0.28);
  top: -120px;
  left: -160px;
  animation: glow-drift-a 9s ease-in-out infinite;
}

.hero::after {
  width: 520px;
  height: 420px;
  background: rgba(201, 149, 44, 0.18);
  bottom: -120px;
  right: -120px;
  animation: glow-drift-b 12s ease-in-out infinite;
}

.hero .container {
  position: relative;
  z-index: 1;
}

@keyframes glow-drift-a {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(90px, 50px); }
  66%       { transform: translate(-30px, 90px); }
}

@keyframes glow-drift-b {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(-70px, -50px); }
  66%       { transform: translate(50px, -80px); }
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 18px rgba(201,149,44,0.55), 0 0 40px rgba(201,149,44,0.3); }
  50%       { text-shadow: 0 0 28px rgba(201,149,44,0.9), 0 0 60px rgba(201,149,44,0.5), 0 0 90px rgba(201,149,44,0.25); }
}

@keyframes logo-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(201,149,44,0.5)) drop-shadow(0 16px 28px rgba(0,0,0,0.4)); }
  50%       { filter: drop-shadow(0 0 28px rgba(201,149,44,0.9)) drop-shadow(0 0 60px rgba(201,149,44,0.4)) drop-shadow(0 16px 28px rgba(0,0,0,0.4)); }
}

/* === BIG FIRST IMPRESSION ENTRANCE === */

/* Electric flash overlay */
#intro-flash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(255,220,80,0.92) 0%,
    rgba(201,149,44,0.75) 35%,
    rgba(30,20,0,0.2) 70%,
    transparent 100%);
  animation: intro-flash 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes intro-flash {
  0%   { opacity: 0; transform: scale(0.6); }
  10%  { opacity: 1; transform: scale(1.05); }
  28%  { opacity: 0.9; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.2); }
}

/* Logo — drops in from above with bounce */
.hero-logo {
  display: block;
  width: min(360px, 78vw);
  height: auto;
  margin: 0 0 26px;
  mix-blend-mode: lighten;
  animation: logo-drop-in 1s cubic-bezier(0.34, 1.52, 0.64, 1) 0.25s forwards,
             logo-glow-pulse 3s ease-in-out 1.2s infinite;
  opacity: 0;
}

@keyframes logo-drop-in {
  0%   { opacity: 0; transform: translateY(-70px) scale(1.25); }
  55%  { opacity: 1; transform: translateY(8px) scale(0.97); }
  78%  { transform: translateY(-3px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Eyebrow — fades down from above */
.hero .eyebrow {
  opacity: 0;
  animation: fade-drop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}

@keyframes fade-drop {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sweep-left {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Paragraph — sweeps in from right */
.hero p {
  opacity: 0;
  animation: sweep-right 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}

@keyframes sweep-right {
  from { opacity: 0; transform: translateX(70px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Buttons — rise up from below */
.hero .hero-actions {
  opacity: 0;
  animation: slide-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.35s forwards;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-block;
  border: 1px solid rgba(201,149,44,0.65);
  background: rgba(201,149,44,0.18);
  color: #ffd780;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 0 16px rgba(201,149,44,0.35), inset 0 0 12px rgba(201,149,44,0.1);
  text-shadow: 0 0 12px rgba(255,215,128,0.7);
}


h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(44px, 9vw, 86px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(255,255,255,0.15), 0 2px 8px rgba(0,0,0,0.6);
}

.gold {
  color: var(--gold);
  animation: glow-pulse 2.5s ease-in-out infinite;
}

.hero p {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(20px, 3vw, 30px);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  background: var(--black);
  color: var(--white);
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button.gold-button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.button.light-button {
  background: transparent;
  border-color: var(--white);
}

.section {
  padding: 66px 0;
}

.section.alt {
  background: var(--cream);
}

.section-title {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 48px);
  text-transform: uppercase;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 100%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201,149,44,0.28), 0 0 24px rgba(201,149,44,0.15);
  border-color: rgba(201,149,44,0.55);
}

.card:hover h3 {
  text-shadow: 0 0 14px rgba(201,149,44,0.75), 0 0 30px rgba(201,149,44,0.35);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  transition: text-shadow 0.3s ease;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.old-copy p {
  max-width: 860px;
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  font-size: 20px;
}

.contact-list strong {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d3c8b8;
  padding: 13px;
  font: inherit;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 46px 0;
}

.footer-logo {
  display: block;
  width: min(280px, 80vw);
  height: auto;
  margin: 0 0 18px;
  mix-blend-mode: lighten;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 26px;
}

.footer-inner a {
  color: var(--white);
}

.footer-heading {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO MOTION — ALL PAGES === */

/* Floating hero content */
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero .container {
  animation: hero-float 6s ease-in-out 2s infinite;
}

/* Electric shimmer sweep across all hero headlines */
@keyframes shimmer-sweep {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero h1 {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 40%,
    #ffd780 50%,
    #ffffff 60%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sweep-left 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.95s forwards,
             shimmer-sweep 3.5s linear 2.5s infinite;
  opacity: 0;
}

.hero h1 .gold {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    90deg,
    #c9952c 0%,
    #c9952c 40%,
    #ffd780 50%,
    #c9952c 60%,
    #c9952c 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer-sweep 3.5s linear 2.5s infinite;
}

/* Glow burst on load for all pages */
.hero::before {
  animation: glow-drift-a 9s ease-in-out infinite, hero-burst-in 0.8s ease-out forwards;
}

@keyframes hero-burst-in {
  0%   { opacity: 0; transform: scale(0.4); }
  60%  { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* === GLOBAL HOVER GLOW ON ALL TEXT === */
h1, h2, h3, h4, p, a, span, li, label,
.eyebrow, .section-title, .trust-item,
.footer-heading, .brand-text, .nav a,
.topbar-inner a, .contact-list,
.button, .footer-inner p {
  transition: text-shadow 0.25s ease;
}

h1:hover, h2:hover, h3:hover, h4:hover,
p:hover, span:hover, li:hover, label:hover,
.section-title:hover, .trust-item:hover,
.footer-heading:hover, .contact-list:hover {
  text-shadow: 0 0 10px rgba(201,149,44,0.75),
               0 0 24px rgba(201,149,44,0.4),
               0 0 48px rgba(201,149,44,0.18);
  cursor: default;
}

a:hover {
  text-shadow: 0 0 10px rgba(201,149,44,0.9),
               0 0 22px rgba(201,149,44,0.5);
}

.nav a:hover {
  text-shadow: 0 0 12px rgba(201,149,44,1),
               0 0 28px rgba(201,149,44,0.55);
  color: var(--gold);
}

.button:hover {
  text-shadow: 0 0 12px rgba(255,255,255,0.8),
               0 0 24px rgba(255,255,255,0.4);
}

.button.gold-button:hover {
  text-shadow: 0 0 12px rgba(0,0,0,0.5);
}

@media (max-width: 820px) {
  .topbar-inner,
  .header-inner,
  .nav,
  .hero-actions,
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
