/* Golden Level Website Styles */

:root {
  --gold: #d4af37;
  --gold-muted: #c9a227;
  --gold-light: #e8c766;
  --black: #0b0b0b;
  --charcoal: #1a1a1a;
  --white: #f5f5f5;
  --gray: #6e6e6e;
  --card-border: rgba(212, 175, 55, 0.2);
  --max-width: 1180px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.06), transparent 24%),
    linear-gradient(180deg, var(--black), #111111 45%, var(--black) 100%);
  color: var(--white);
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(0);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header[data-scrolled="true"] {
  backdrop-filter: blur(14px);
  background: rgba(11, 11, 11, 0.94);
  border-bottom-color: rgba(212, 175, 55, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 6%;
  transform: scale(1.58);
  transform-origin: center 10%;
}

.brand-rocker {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  pointer-events: none;
  overflow: visible;
  transform: translateY(6px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
}

.brand-rocker-text {
  fill: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.18em;
}

.brand-rocker-text-bottom {
  fill: rgba(245, 245, 245, 0.88);
  font-size: 15px;
  letter-spacing: 0.14em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.95rem;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  font-size: 0.98rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-phone {
  margin-top: 0.22rem;
  color: rgba(245, 245, 245, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--white);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.3);
}

.nav-cta {
  animation: navCtaNudge 4.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes navCtaNudge {
  0%, 84%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  87% {
    transform: translateY(-1px) rotate(-1.6deg);
  }

  90% {
    transform: translateY(-1px) rotate(1.6deg);
  }

  93% {
    transform: translateY(0) rotate(-1deg);
  }

  96% {
    transform: translateY(0) rotate(0.8deg);
  }
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
  background:
    linear-gradient(rgba(11, 11, 11, 0.34), rgba(11, 11, 11, 0.8)),
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 34%),
    url("background.png") 62% center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.82) 0%, rgba(11, 11, 11, 0.58) 36%, rgba(11, 11, 11, 0.24) 64%, rgba(11, 11, 11, 0.1) 100%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.16) 0%, rgba(11, 11, 11, 0.04) 30%, rgba(11, 11, 11, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
}

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.05;
}

h1, h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy,
.section-heading p,
.about-grid p,
.cta-box p,
.site-footer p,
.footer-list {
  color: rgba(245, 245, 245, 0.85);
}

.hero-copy {
  max-width: 650px;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.hero-metrics div {
  min-width: 180px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.hero-metrics span {
  color: rgba(245, 245, 245, 0.72);
}

.hero-highlights {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 880px;
}

.highlight-card {
  padding: 1.15rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(26, 26, 26, 0.82);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.highlight-card strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.trust-bar {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: var(--charcoal);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
  color: var(--gold-light);
  font-weight: 600;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 20%),
    linear-gradient(180deg, #101010, #151515);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.service-grid,
.gallery-grid,
.about-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

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

.service-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  color: rgba(245, 245, 245, 0.82);
}

.service-card li {
  margin-bottom: 0.45rem;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold-light);
  font-weight: 600;
}

.service-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

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

.gallery-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98));
  min-height: 100%;
  box-shadow: var(--shadow-soft);
}

.mini-gallery,
.process-grid,
.service-area-grid {
  display: grid;
  gap: 1.5rem;
}

.split-section {
  padding-top: 2rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.split-copy {
  max-width: 520px;
}

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

.mini-card {
  border: 1px solid var(--card-border);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.mini-card h3 {
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
}

.mini-image,
.mini-image img {
  width: 100%;
  min-height: 210px;
}

.mini-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255,255,255,0.03)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 12px,
      rgba(0,0,0,0.02) 12px,
      rgba(0,0,0,0.02) 24px
    );
}

.mini-image img {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
  transform-origin: center top;
  color: transparent;
  font-size: 0;
}

.mini-image.is-missing img {
  display: none;
}

.mini-image.is-missing::after {
  content: "Project Photo";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--gold-light);
  font-weight: 600;
  text-align: center;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98));
}

.gallery-image {
  position: relative;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}

.gallery-image img,
.gallery-fallback {
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.gallery-image img {
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
  transform-origin: center top;
  transition: transform 0.35s ease, opacity 0.2s ease;
  color: transparent;
  font-size: 0;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.12);
}

.gallery-fallback {
  display: none;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  font-weight: 600;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255,255,255,0.03)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 12px,
      rgba(0,0,0,0.02) 12px,
      rgba(0,0,0,0.02) 24px
    );
  color: var(--gold-light);
}

.gallery-image.is-missing img {
  display: none;
}

.gallery-image.is-missing .gallery-fallback {
  display: grid;
}

.gallery-copy {
  padding: 1.25rem 1.25rem 1.4rem;
}

.gallery-copy h3 {
  margin-bottom: 0.45rem;
}

.gallery-copy p {
  margin: 0;
  color: rgba(245, 245, 245, 0.76);
}

.gallery-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.service-area-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}

.about-panel {
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(18, 18, 18, 0.98));
  border: 1px solid var(--card-border);
}

.area-list {
  margin: 0;
  padding-left: 1.2rem;
}

.area-list li {
  margin-bottom: 0.65rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-size: 1.2rem;
  line-height: 1;
}

.cta-section {
  padding-top: 2rem;
}

.section-note {
  margin-top: 1.25rem;
  color: rgba(245, 245, 245, 0.72);
}

.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.cta-phone {
  color: var(--gold-light);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.estimate-email-btn {
  min-width: min(100%, 380px);
  min-height: 58px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.email-note {
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.72);
}

.cta-box {
  padding: 3rem;
  border-radius: 28px;
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.14), transparent 34%),
    linear-gradient(180deg, #131313, #0f0f0f);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.site-footer {
  padding-top: 4rem;
  background: #090909;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 0.65rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(245,245,245,0.65);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    background-position: 70% center;
  }

  .hero-highlights,
  .service-grid,
  .service-grid-wide,
  .split-grid,
  .mini-gallery,
  .process-grid,
  .gallery-grid,
  .about-grid,
  .service-area-grid,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }

  .cta-box {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 84px;
  }

  .brand-logo {
    transform: scale(1.5);
  }

  .brand-name {
    font-size: 1.6rem;
  }

  .brand-mark {
    width: 96px;
    height: 96px;
  }

  .brand-rocker-text {
    font-size: 15px;
  }

  .brand-rocker-text-bottom {
    font-size: 13px;
  }

  .brand-phone {
    font-size: 0.82rem;
  }

  .nav-cta {
    padding-inline: 1rem;
    min-height: 42px;
    font-size: 0.92rem;
  }

  .hero-content {
    padding: 4.75rem 0 4rem;
  }

  .hero {
    background-position: 74% center;
  }

  .section {
    padding: 4.5rem 0;
  }

  .service-card,
  .about-panel,
  .cta-box {
    padding: 1.5rem;
  }

  .cta-contact-row {
    justify-content: flex-start;
  }
}
