:root {
  --global-black: #050505;
  --global-gold: #c9a44d;
  --global-gold-light: #f2d98c;
  --cream: #f8f4e8;
  --muted-gold: #cfc6ae;
  --tree-dark: #102414;
  --tree-green: #315f25;
  --tree-mid: #6f8f39;
  --tree-light: #eef6e8;
  --junk-black: #05080d;
  --junk-navy: #071426;
  --junk-blue: #075fc4;
  --junk-bright: #1388ff;
  --junk-light: #f2f7ff;
  --hotshot-black: #050505;
  --hotshot-red: #d81224;
  --hotshot-light: #f7f7f7;
  --about-page: #f6f1e6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
img, video { max-width: 100%; }

.global-header {
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(201, 164, 77, 0.28);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.global-header.header-hidden { transform: translateY(-110%); opacity: 0; pointer-events: none; }
.global-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.global-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: clamp(0.92rem, 2vw, 1.25rem);
}
.brand-logo-stack { display: grid; justify-items: center; gap: 4px; }
.brand-slogan {
  color: var(--global-gold-light);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  white-space: nowrap;
}
.global-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid rgba(201, 164, 77, 0.55);
}
.global-nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 38px); flex-wrap: wrap; }
.global-nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}
.global-nav a:hover, .global-nav a.active { color: var(--global-gold-light); }

.site-shell {
  min-height: 100vh;
  background: radial-gradient(circle at center, rgba(201,164,77,.14), transparent 34%), linear-gradient(135deg,#030303 0%,#101010 48%,#050505 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.landing-hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 70px 5vw;
  text-align: center;
}
.hero-card {
  width: min(100%, 820px);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(201,164,77,.35);
  border-radius: 30px;
  background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.01)), rgba(6,6,6,.72);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.main-logo {
  width: min(380px, 78vw);
  height: auto;
  margin: 0 auto 12px;
  display: block;
  border-radius: 28px;
  background: #fff;
  padding: 18px;
  border: 2px solid rgba(201,164,77,.55);
  box-shadow: 0 0 55px rgba(201,164,77,.18);
}
.hero-slogan {
  color: var(--global-gold-light);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: 26px;
}
.landing-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.landing-hero p { color: var(--muted-gold); font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 34px; }
.section-buttons { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.section-card {
  border: 1px solid rgba(201,164,77,.45);
  color: var(--cream);
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.section-card span { display: block; margin-top: 5px; color: var(--global-gold-light); font-size: .78rem; letter-spacing: .12em; }
.section-card:hover { transform: translateY(-3px); background: rgba(201,164,77,.14); border-color: var(--global-gold-light); }

.page-tree { background: var(--tree-light); color: #101510; }
.page-junk { background: var(--junk-light); color: #0d1218; }
.page-hotshot { background: var(--hotshot-light); color: #111; }
.page-about { background: var(--about-page); color: #121212; }

.video-hero {
  position: relative;
  min-height: calc(100vh - 87px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}
.video-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.video-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; }
.video-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 160px; z-index: -1; }
.page-tree .video-hero::before { background: radial-gradient(circle at 50% 50%, rgba(111,143,57,.24), transparent 36%), linear-gradient(90deg,rgba(7,19,9,.88),rgba(7,19,9,.48),rgba(7,19,9,.82)); }
.page-tree .video-hero::after { background: linear-gradient(180deg, transparent, var(--tree-light)); }
.page-junk .video-hero::before { background: radial-gradient(circle at 50% 50%, rgba(19,136,255,.2), transparent 34%), linear-gradient(90deg,rgba(3,8,14,.9),rgba(3,8,14,.46),rgba(3,8,14,.82)); }
.page-junk .video-hero::after { background: linear-gradient(180deg, transparent, var(--junk-light)); }
.page-hotshot .video-hero::before { background: radial-gradient(circle at 50% 50%, rgba(216,18,36,.22), transparent 35%), linear-gradient(90deg,rgba(0,0,0,.92),rgba(0,0,0,.48),rgba(0,0,0,.84)); }
.page-hotshot .video-hero::after { background: linear-gradient(180deg, transparent, var(--hotshot-light)); }

.video-hero-content { width: min(100%, 1050px); padding: 76px 5vw 96px; text-align: center; color: #fff; }
.business-logo { width: min(270px, 62vw); border-radius: 50%; background: #fff; padding: 10px; margin-bottom: 28px; box-shadow: 0 28px 70px rgba(0,0,0,.42); }
.page-tree .business-logo { border: 3px solid rgba(160,190,101,.9); }
.page-junk .business-logo { border: 3px solid rgba(19,136,255,.9); }
.page-hotshot .business-logo { background: #050505; border: 3px solid rgba(216,18,36,.95); }
.video-hero h1 { font-size: clamp(2.5rem, 8vw, 6.4rem); line-height: .92; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; text-shadow: 0 9px 26px rgba(0,0,0,.5); }
.video-hero p { max-width: 780px; margin: 0 auto 30px; color: #f2f2f2; font-size: clamp(1.05rem,2vw,1.35rem); line-height: 1.6; }
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 24px; border-radius: 999px; color: #fff; text-decoration: none; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; border: 2px solid rgba(255,255,255,.82); transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.secondary { background: rgba(255,255,255,.1) !important; }
.page-tree .button { background: var(--tree-mid); }
.page-tree .button:hover { background: #86a94a; }
.page-junk .button { background: var(--junk-blue); }
.page-junk .button:hover { background: var(--junk-bright); }
.page-hotshot .button { background: var(--hotshot-red); }
.page-hotshot .button:hover { background: #f0182d; }

.services-section { max-width: 1180px; margin: 0 auto; padding: 76px 5vw; }
.section-kicker { text-transform: uppercase; letter-spacing: .18em; font-weight: 900; font-size: .9rem; margin-bottom: 10px; }
.page-tree .section-kicker { color: var(--tree-mid); }
.page-junk .section-kicker { color: var(--junk-blue); }
.page-hotshot .section-kicker { color: var(--hotshot-red); }
.services-header { max-width: 800px; margin-bottom: 36px; }
.services-header h2 { font-size: clamp(2rem,5vw,3.5rem); line-height: 1; text-transform: uppercase; margin-bottom: 12px; }
.services-header p { color: #4f4f4f; font-size: 1.08rem; line-height: 1.65; }
.service-grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 920px; }
.service-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 18px 42px rgba(0,0,0,.14); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(0,0,0,.22); }
.page-tree .service-card { border: 1px solid rgba(60,89,42,.16); }
.page-junk .service-card { border: 1px solid rgba(7,95,196,.16); }
.page-hotshot .service-card { border: 1px solid rgba(216,18,36,.18); }
.service-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; background: #ececec; }
.service-card-content { padding: 24px; }
.service-card h3 { font-size: 1.18rem; text-transform: uppercase; margin-bottom: 8px; }
.service-card p { color: #4f4f4f; line-height: 1.55; font-size: .98rem; }

.contact-section { color: #fff; padding: 78px 5vw; }
.page-tree .contact-section { background: radial-gradient(circle at 82% 22%, rgba(160,190,101,.24), transparent 28%), linear-gradient(135deg,#122916,#4b6d31); }
.page-junk .contact-section { background: radial-gradient(circle at 82% 22%, rgba(19,136,255,.22), transparent 28%), linear-gradient(135deg,#05080d,#062f63); }
.page-hotshot .contact-section { background: radial-gradient(circle at 82% 22%, rgba(216,18,36,.24), transparent 28%), linear-gradient(135deg,#050505,#3d050a); }
.contact-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: start; }
.contact-copy h2 { font-size: clamp(2.1rem,5vw,4rem); text-transform: uppercase; line-height: 1; margin-bottom: 16px; }
.contact-copy p { color: #f4f4f4; line-height: 1.65; font-size: 1.05rem; margin-bottom: 20px; }
.quick-contact { display: grid; gap: 10px; color: #fff; font-weight: 800; }
.quick-contact a { color: #fff; text-decoration: none; }
.social-line { display: inline-flex; align-items: center; gap: 10px; }
.social-icon { width: 22px; height: 22px; flex: 0 0 auto; color: #fff; background: rgba(255,255,255,.12); border-radius: 7px; padding: 3px; }
.contact-form { background: rgba(255,255,255,.97); color: #111; border-radius: 26px; padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: #1f1f1f; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid rgba(0,0,0,.2); border-radius: 12px; padding: 13px 14px; font: inherit; background: #fff; color: #101010; }
.form-field textarea { min-height: 135px; resize: vertical; }
.form-note { color: #5d5d5d; font-size: .86rem; line-height: 1.45; margin: 12px 0 16px; }
.submit-button { border: 0; border-radius: 999px; padding: 15px 22px; color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; width: 100%; }
.page-tree .submit-button { background: var(--tree-green); }
.page-junk .submit-button { background: var(--junk-blue); }
.page-hotshot .submit-button { background: var(--hotshot-red); }

.about-hero { background: radial-gradient(circle at 50% 20%, rgba(201,164,77,.22), transparent 30%), linear-gradient(135deg,#050505,#17130b 54%,#050505); color: #fff; padding: 86px 5vw 70px; text-align: center; }
.about-hero img { width: min(250px,62vw); display: block; margin: 0 auto 24px; background: #fff; border-radius: 30px; padding: 14px; border: 2px solid rgba(201,164,77,.55); box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.about-hero h1 { font-size: clamp(2.5rem,7vw,5.8rem); text-transform: uppercase; line-height: .95; letter-spacing: .08em; margin-bottom: 16px; }
.about-hero p { max-width: 720px; margin: 0 auto; color: var(--muted-gold); font-size: clamp(1.05rem,2vw,1.28rem); line-height: 1.65; }
.about-content { max-width: 1180px; margin: 0 auto; padding: 78px 5vw; display: grid; gap: 34px; }
.about-row { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: center; background: #fff; border: 1px solid rgba(201,164,77,.24); border-radius: 28px; overflow: hidden; box-shadow: 0 20px 50px rgba(42,32,12,.1); }
.about-row:nth-child(even) { grid-template-columns: 1.05fr .95fr; }
.about-row:nth-child(even) .about-image { order: 2; }
.about-image { min-height: 360px; height: 100%; width: 100%; object-fit: cover; display: block; }
.about-text { padding: clamp(28px,5vw,48px); }
.kicker { color: var(--global-gold); font-weight: 900; text-transform: uppercase; letter-spacing: .18em; font-size: .86rem; margin-bottom: 12px; }
.about-text h2 { font-size: clamp(1.8rem,4vw,3rem); text-transform: uppercase; line-height: 1; margin-bottom: 16px; }
.about-text p { color: #39342a; font-size: 1.08rem; line-height: 1.7; }
.about-links { padding: 72px 5vw; background: #0a0a0a; color: #fff; text-align: center; }
.about-links h2 { font-size: clamp(2rem,5vw,3.5rem); text-transform: uppercase; margin-bottom: 14px; }
.about-links p { color: var(--muted-gold); max-width: 680px; margin: 0 auto 28px; line-height: 1.6; }
.link-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.service-link { color: #fff; text-decoration: none; border: 1px solid rgba(201,164,77,.42); border-radius: 18px; padding: 18px 16px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; background: rgba(255,255,255,.04); transition: transform .2s ease, background .2s ease; }
.service-link:hover { transform: translateY(-3px); background: rgba(201,164,77,.14); }

.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: #050505; color: #fff; text-align: center; }
.thanks-card { max-width: 680px; border: 1px solid rgba(201,164,77,.4); border-radius: 28px; padding: 42px; background: rgba(255,255,255,.05); }
.thanks-card h1 { font-size: clamp(2rem,5vw,4rem); text-transform: uppercase; margin-bottom: 14px; }
.thanks-card p { color: var(--muted-gold); line-height: 1.6; margin-bottom: 24px; }

@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 980px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .global-header-inner { flex-direction: column; padding: 14px 18px; }
  .global-brand { flex-direction: column; gap: 8px; text-align: center; letter-spacing: .12em; }
  .global-brand img { width: 70px; height: 70px; }
  .global-nav { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .global-nav a { text-align: center; border: 1px solid rgba(201,164,77,.32); border-radius: 999px; padding: 10px 8px; font-size: .7rem; background: rgba(255,255,255,.035); }
  .landing-hero { padding: 34px 16px 44px; place-items: start center; }
  .hero-card { padding: 26px 18px; border-radius: 22px; }
  .main-logo { width: min(280px,78vw); padding: 12px; border-radius: 22px; }
  .landing-hero h1 { font-size: 2rem; letter-spacing: .12em; }
  .section-buttons, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .video-hero { min-height: 72vh; }
  .video-hero-content { padding: 52px 18px 80px; }
  .business-logo { width: min(220px,64vw); }
  .cta-row { flex-direction: column; }
  .button { width: 100%; }
  .services-section { padding: 54px 18px; }
  .contact-section { padding: 56px 18px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 58px 18px 48px; }
  .about-content { padding: 50px 18px; }
  .about-row, .about-row:nth-child(even) { grid-template-columns: 1fr; }
  .about-row:nth-child(even) .about-image { order: 0; }
  .about-image { min-height: 260px; }
  .link-grid { grid-template-columns: 1fr; }
}
