:root {
  --gc-bg: #0b0b0b;
  --gc-surface: #151515;
  --gc-gold-1: #d4af37;
  --gc-gold-2: #f2c94c;
  --gc-chat-green: #78be20;
  --gc-chat-green-hover: #6bab1d;
  --gc-chat-shadow: 0 10px 26px rgba(120, 190, 32, 0.34);
  --gc-text: #ffffff;
  --gc-danger: #e63946;
  --gc-divider: rgba(212, 175, 55, 0.38);
  --gc-border: rgba(242, 201, 76, 0.28);
  --gc-muted: rgba(255, 255, 255, 0.74);
  --gc-shadow-gold: 0 10px 28px rgba(212, 175, 55, 0.22);
  --gc-max-width: 1160px;
  --gc-radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 20% -10%, #222 0%, var(--gc-bg) 45%, #070707 100%);
  color: var(--gc-text);
  font-family: "Barlow", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.55;
}

a:not(.btn),
a:not(.btn):visited {
  color: var(--gc-gold-1);
  text-decoration: none;
}

a:not(.btn):hover,
a:not(.btn):focus-visible,
a:not(.btn):active {
  color: var(--gc-gold-2);
}

img,
video {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

img {
  height: auto;
}

.container {
  width: min(var(--gc-max-width), 92vw);
  margin: 0 auto;
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--gc-divider) 20%, var(--gc-divider) 80%, transparent 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--gc-border);
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.04em;
}

.brand-main {
  font-size: 1.7rem;
  color: var(--gc-gold-2);
}

.brand-sub {
  font-size: 0.85rem;
  color: var(--gc-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a:not(.btn),
.nav-links a:not(.btn):visited {
  color: var(--gc-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible {
  color: var(--gc-gold-2);
}

a.btn-primary,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:focus-visible,
a.btn-primary:active {
  color: #111111;
}

a.btn-secondary,
a.btn-secondary:visited,
a.btn-secondary:hover,
a.btn-secondary:focus-visible,
a.btn-secondary:active {
  color: var(--gc-gold-2);
}

a.btn-danger,
a.btn-danger:visited,
a.btn-danger:hover,
a.btn-danger:focus-visible,
a.btn-danger:active {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gc-gold-1), var(--gc-gold-2));
  color: #111111;
  border-color: var(--gc-gold-2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #111111;
  filter: brightness(1.06);
  box-shadow: var(--gc-shadow-gold);
}

.btn-secondary {
  background: var(--gc-surface);
  border-color: var(--gc-gold-1);
  color: var(--gc-gold-2);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gc-gold-2);
  color: var(--gc-gold-2);
  box-shadow: var(--gc-shadow-gold);
}

a.btn[data-open-chat],
a.btn[data-open-chat]:visited {
  background: var(--gc-chat-green);
  border-color: var(--gc-chat-green);
  color: #ffffff;
}

a.btn[data-open-chat]:hover,
a.btn[data-open-chat]:focus-visible,
a.btn[data-open-chat]:active {
  background: var(--gc-chat-green-hover);
  border-color: var(--gc-chat-green-hover);
  color: #ffffff;
  box-shadow: var(--gc-chat-shadow);
}

.btn-danger {
  background: var(--gc-danger);
  color: #ffffff;
}

main {
  padding-bottom: 60px;
}

section {
  padding: 52px 0;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--gc-muted);
  max-width: 780px;
}

.hero {
  padding: 62px 0 48px;
}

.hero-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.container.hero-grid {
  width: min(1280px, 96vw);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--gc-gold-2);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.98;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.04em;
}

.hero p {
  color: var(--gc-muted);
  max-width: 620px;
  margin: 14px 0 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.media-frame {
  position: relative;
  overflow: hidden;
}

.media-frame > img,
.media-frame > video,
.media-frame > iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.media-frame > img,
.media-frame > video {
  object-fit: cover;
}

.media-frame > iframe {
  border: 0;
}

.media-frame--hero {
  aspect-ratio: 16 / 9;
}

.media-frame--gallery {
  aspect-ratio: 4 / 5;
}

.media-frame--video {
  aspect-ratio: 16 / 9;
}

.hero-media {
  position: relative;
  border-radius: var(--gc-radius);
  overflow: hidden;
  border: 1px solid var(--gc-border);
  box-shadow: var(--gc-shadow-gold);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-badges {
  grid-column: 1 / -1;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.badge {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(242, 201, 76, 0.52);
  color: var(--gc-gold-2);
  background: rgba(10, 10, 10, 0.62);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: clamp(0.84rem, 0.88vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(242, 201, 76, 0.07);
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0) 100%), var(--gc-surface);
  border-top: 1px solid var(--gc-border);
  border-bottom: 1px solid var(--gc-border);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.card {
  border-radius: var(--gc-radius);
  background: #101010;
  border: 1px solid rgba(242, 201, 76, 0.16);
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover,
.card:focus-within {
  border-color: var(--gc-gold-1);
  transform: translateY(-2px);
}

.card h3 {
  margin: 14px 0 6px;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.45rem;
}

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

.card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  background: #101010;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 18px;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gc-gold-1);
  color: var(--gc-gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1.14rem;
}

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

.gallery-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid figure,
.image-card {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(242, 201, 76, 0.18);
  background: #111;
}

.gallery-grid img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.trust-list li {
  padding-left: 24px;
  position: relative;
}

.trust-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gc-gold-1), var(--gc-gold-2));
  position: absolute;
  left: 0;
  top: 0.5em;
}

.testimonial {
  margin-top: 18px;
  border-left: 3px solid var(--gc-gold-1);
  padding: 12px 14px;
  background: rgba(242, 201, 76, 0.07);
  border-radius: 0 12px 12px 0;
}

.testimonial p {
  margin: 0;
}

.testimonial .quote-attribution {
  margin-top: 8px;
  color: var(--gc-gold-2);
  font-weight: 700;
}

.local-seo {
  margin-top: 20px;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.01);
}

.local-seo h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.package-box,
.final-cta,
.page-hero,
.content-box,
.video-placeholder,
.faq-wrap,
.design-help-wrap {
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  background: #101010;
  padding: 20px;
}

.package-box p,
.page-hero p,
.content-box p,
.video-placeholder p,
.design-help-wrap p {
  color: var(--gc-muted);
}

.helper {
  color: var(--gc-muted);
  font-size: 0.9rem;
}

.page-hero {
  margin-top: 30px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.page-sections {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.page-sections h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
}

.page-sections ul {
  margin: 10px 0 0;
}

.faq-wrap {
  margin-top: 16px;
}

.faq-wrap details {
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 10px;
  padding: 12px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.01);
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gc-gold-2);
}

.faq-wrap p {
  margin-bottom: 0;
}

.filters {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border-radius: 999px;
  border: 1px solid var(--gc-gold-1);
  color: var(--gc-gold-2);
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 700;
}

.before-after {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.before-after h3 {
  margin: 0;
}

.video-placeholder {
  margin-top: 18px;
}

.video-placeholder .media-frame {
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  background: #111;
}

.footer {
  border-top: 1px solid var(--gc-border);
  padding: 30px 0 40px;
  background: #080808;
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 1fr;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a,
.footer-links a:visited {
  color: var(--gc-text);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gc-gold-2);
}

.footer small {
  color: var(--gc-muted);
}

.sticky-order {
  position: sticky;
  bottom: 12px;
  z-index: 50;
  margin-top: 18px;
}

.sticky-order .sticky-inner {
  background: rgba(16, 16, 16, 0.94);
  border: 1px solid var(--gc-gold-1);
  border-radius: 999px;
  box-shadow: var(--gc-shadow-gold);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.breadcrumb {
  margin-top: 14px;
  color: var(--gc-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gc-gold-1);
}

.notice {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--gc-muted);
}

.not-found {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 0;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
}

.not-found p {
  color: var(--gc-muted);
  margin: 10px 0 20px;
}

@media (max-width: 980px) {
  main {
    padding-bottom: 110px;
  }

  .sticky-order {
    bottom: 86px;
  }

  .hero-grid,
  .grid-3,
  .steps,
  .gallery-grid,
  .before-after,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-order .sticky-inner {
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .hero-badges {
    margin-top: 10px;
  }

}
