:root {
  --color-black: #0D0D0D;
  --color-gold: #C8A24A;
  --color-dark-gold: #9B7A2F;
  --color-cream: #F7F3EA;
  --color-soft: #FBFAF6;
  --color-muted: rgba(255, 255, 255, 0.74);
  --nav-height: 118px;
  --shadow-soft: 0 20px 55px rgba(13, 13, 13, 0.1);
  --shadow-lift: 0 26px 70px rgba(13, 13, 13, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-black);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  min-height: var(--nav-height);
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.82));
  border-bottom: 1px solid rgba(200, 162, 74, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.topline {
  background: linear-gradient(90deg, rgba(155, 122, 47, 0.26), rgba(13, 13, 13, 0.96));
  border-bottom: 1px solid rgba(200, 162, 74, 0.24);
}

.topline-content {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.topline-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topline a {
  color: var(--color-gold);
  font-weight: 900;
}

.topline a:hover,
.topline a:focus {
  color: #fff;
}

.navbar-brand {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar {
  min-height: 82px;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #fff;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(200, 162, 74, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.08);
}

.brand-kicker,
.eyebrow {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  bottom: 0.1rem;
  left: 0.5rem;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(200, 162, 74, 0.52);
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(200, 162, 74, 0.24);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn-gold {
  --bs-btn-color: #111;
  --bs-btn-bg: var(--color-gold);
  --bs-btn-border-color: var(--color-gold);
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: #ddb95c;
  --bs-btn-hover-border-color: #ddb95c;
  --bs-btn-active-color: #111;
  --bs-btn-active-bg: var(--color-dark-gold);
  --bs-btn-active-border-color: var(--color-dark-gold);
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(200, 162, 74, 0.24);
}

.btn-outline-gold {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(200, 162, 74, 0.72);
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: var(--color-gold);
  --bs-btn-hover-border-color: var(--color-gold);
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 22px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.82) 43%, rgba(13, 13, 13, 0.34) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.86) 0%, rgba(13, 13, 13, 0.08) 44%),
    url("../../img/g3.png");
  background-position: center;
  background-size: cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 24%, rgba(200, 162, 74, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.44), transparent 34%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.86;
}

.hero-content {
  max-width: 760px;
  padding-top: calc(var(--nav-height) + 46px);
  padding-bottom: 64px;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  font-weight: 900;
  line-height: 0.98;
  text-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  color: var(--color-gold);
  display: block;
}

.hero-text {
  max-width: 650px;
  color: var(--color-muted);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin-top: 34px;
  border: 1px solid rgba(200, 162, 74, 0.32);
  background: rgba(200, 162, 74, 0.32);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.proof-item {
  min-height: 96px;
  padding: 18px;
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(10px);
}

.hero-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin-top: 18px;
}

.hero-service-strip span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 74, 0.24);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.proof-value {
  display: block;
  color: var(--color-gold);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.1;
}

.proof-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.68) 56%, rgba(13, 13, 13, 0.36) 100%),
    url("../../img/g2.png");
  background-position: center;
  background-size: cover;
}

.page-hero-content {
  position: relative;
}

.page-hero-content::before {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--color-gold);
}

.page-hero--gallery {
  background-image:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.68) 56%, rgba(13, 13, 13, 0.36) 100%),
    url("../../img/g1.png");
}

.page-hero--reviews {
  background-image:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.68) 56%, rgba(13, 13, 13, 0.36) 100%),
    url("../../img/g3.png");
}

.page-hero--contact {
  background-image:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94) 0%, rgba(13, 13, 13, 0.68) 56%, rgba(13, 13, 13, 0.36) 100%),
    url("../../img/g5.png");
}

.page-hero-content {
  max-width: 760px;
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 62px;
}

.page-hero h1 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.45rem);
  font-weight: 900;
  line-height: 1;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.content-band {
  background:
    linear-gradient(180deg, #fff 0%, var(--color-soft) 100%);
  color: var(--color-black);
}

.content-band.alt {
  background:
    linear-gradient(180deg, var(--color-cream) 0%, #fff 100%);
}

.section-pad {
  padding: 72px 0;
}

.section-title {
  margin: 0 0 12px;
  color: var(--color-black);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.section-note {
  max-width: 760px;
  margin: 0;
  color: rgba(13, 13, 13, 0.68);
  font-weight: 600;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-head .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-gold);
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.text-gold {
  color: var(--color-dark-gold);
}

.seo-copy {
  color: rgba(13, 13, 13, 0.72);
  font-size: 1.04rem;
  font-weight: 600;
}

.seo-copy p:last-child {
  margin-bottom: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.visual-note {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--color-black);
  box-shadow: var(--shadow-lift);
}

.visual-note img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  opacity: 0.86;
}

.visual-note::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(13, 13, 13, 0.9));
}

.visual-note-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
}

.visual-note-content strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
}

.visual-note-content span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.service-grid,
.info-grid,
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid,
.info-grid,
.contact-grid,
.process-grid {
  counter-reset: card-count;
}

.service-card,
.info-card,
.price-card,
.faq-card,
.contact-card {
  position: relative;
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card {
  counter-increment: card-count;
  border-top: 4px solid var(--color-gold);
  overflow: hidden;
}

.service-card::before {
  content: "0" counter(card-count);
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(155, 122, 47, 0.16);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
}

.info-card::before,
.contact-card::before,
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 999px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-card:hover {
  border-color: rgba(200, 162, 74, 0.44);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  font-weight: 900;
}

.review-name {
  display: block;
  color: var(--color-black);
  font-weight: 900;
  line-height: 1.2;
}

.review-meta {
  display: block;
  margin-top: 2px;
  color: rgba(13, 13, 13, 0.52);
  font-size: 0.9rem;
  font-weight: 700;
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--color-dark-gold);
  font-weight: 900;
}

.review-text {
  margin: 0;
  color: rgba(13, 13, 13, 0.7);
  font-weight: 600;
}

.review-tag {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(13, 13, 13, 0.54);
  font-size: 0.88rem;
  font-weight: 800;
}

.review-disclaimer {
  margin-top: 18px;
  color: rgba(13, 13, 13, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
}

.service-card:hover,
.info-card:hover,
.price-card:hover,
.faq-card:hover,
.contact-card:hover,
.process-step:hover,
.route-card:hover {
  border-color: rgba(200, 162, 74, 0.44);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.service-card h2,
.service-card h3,
.info-card h2,
.info-card h3,
.price-card h2,
.price-card h3,
.faq-card h2,
.faq-card h3,
.contact-card h2,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--color-black);
  font-size: 1.16rem;
  font-weight: 900;
}

.service-card p,
.info-card p,
.price-card p,
.faq-card p,
.contact-card p {
  margin: 0;
  color: rgba(13, 13, 13, 0.68);
  font-weight: 600;
}

.service-card .btn,
.contact-card .btn {
  margin-top: 18px;
}

.keyword-line {
  margin-top: 12px;
  color: var(--color-dark-gold);
  font-size: 0.92rem;
  font-weight: 800;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--color-black);
  background: #fff;
  border: 1px solid rgba(155, 122, 47, 0.28);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dark-band {
  background:
    linear-gradient(135deg, #0D0D0D 0%, #17130A 100%);
  color: #fff;
}

.dark-band .section-title {
  color: #fff;
}

.dark-band .section-note,
.dark-band .seo-copy {
  color: rgba(255, 255, 255, 0.72);
}

.dark-band .info-card,
.dark-band .price-card,
.dark-band .faq-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 162, 74, 0.24);
  box-shadow: none;
}

.dark-band .info-card h2,
.dark-band .info-card h3,
.dark-band .price-card h2,
.dark-band .price-card h3,
.dark-band .faq-card h2,
.dark-band .faq-card h3 {
  color: #fff;
}

.dark-band .info-card p,
.dark-band .price-card p,
.dark-band .faq-card p {
  color: rgba(255, 255, 255, 0.72);
}

.price-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.price-list li,
.check-list li {
  padding: 14px 16px;
  color: rgba(13, 13, 13, 0.74);
  background: rgba(200, 162, 74, 0.12);
  border-left: 4px solid var(--color-gold);
  font-weight: 700;
}

.dark-band .price-list li,
.dark-band .check-list li {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

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

.process-step {
  counter-increment: card-count;
  position: relative;
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--color-black);
  font-size: 1.08rem;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: rgba(13, 13, 13, 0.68);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(13, 13, 13, 0.06);
}

.faq-item h2,
.faq-item h3 {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  color: var(--color-black);
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-item h2::before,
.faq-item h3::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.faq-item p {
  margin: 0;
  color: rgba(13, 13, 13, 0.68);
  font-weight: 600;
}

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

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.gallery-filter span {
  padding: 8px 14px;
  color: var(--color-black);
  background: #fff;
  border: 1px solid rgba(155, 122, 47, 0.24);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(13, 13, 13, 0.06);
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  overflow: hidden;
  margin: 0;
  min-height: 310px;
  background: var(--color-black);
  border: 1px solid rgba(200, 162, 74, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  min-height: 420px;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  min-height: 420px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(13, 13, 13, 0.88) 100%);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  min-height: 86px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.cta-strip {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.96), rgba(42, 34, 17, 0.96)),
    url("../../img/g2.png") center / cover;
  color: #fff;
  border: 1px solid rgba(200, 162, 74, 0.34);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(13, 13, 13, 0.18);
}

.cta-strip h2,
.cta-strip h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
}

.cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.phone-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-dark-gold);
  font-size: 1.25rem;
  font-weight: 900;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-meta span {
  padding: 8px 12px;
  background: rgba(200, 162, 74, 0.14);
  border-radius: 999px;
  color: rgba(13, 13, 13, 0.72);
  font-weight: 800;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.route-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--color-black);
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-top: 4px solid var(--color-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.route-card:hover,
.route-card:focus {
  color: var(--color-black);
  border-color: rgba(200, 162, 74, 0.72);
  transform: translateY(-2px);
}

.route-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.route-card span {
  display: block;
  color: rgba(13, 13, 13, 0.66);
  font-weight: 600;
}

.route-card em {
  margin-top: 24px;
  color: var(--color-dark-gold);
  font-style: normal;
  font-weight: 800;
}

.stub-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.stub-item {
  min-height: 150px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 8px;
}

.stub-item h2,
.stub-item h3 {
  margin: 0 0 10px;
  color: var(--color-black);
  font-size: 1.14rem;
  font-weight: 900;
}

.stub-item p {
  margin: 0;
  color: rgba(13, 13, 13, 0.68);
  font-weight: 600;
}

.site-footer {
  padding: 26px 0;
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(200, 162, 74, 0.25);
}

.site-footer a {
  color: var(--color-gold);
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1040;
  display: grid;
  gap: 10px;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px 10px 10px;
  color: #fff;
  background: rgba(13, 13, 13, 0.94);
  border: 1px solid rgba(200, 162, 74, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(13, 13, 13, 0.24);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.floating-action.primary {
  color: #111;
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.floating-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #111;
  background: var(--color-gold);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.floating-action.primary span {
  color: #fff;
  background: var(--color-black);
}

.floating-action:hover,
.floating-action:focus {
  color: #111;
  background: #ddb95c;
  border-color: #ddb95c;
  transform: translateY(-2px);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 162, 74, 0.24);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
}

.social-link:hover,
.social-link:focus {
  color: #111;
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.social-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #111;
  background: var(--color-gold);
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 900;
}

.social-link:hover span,
.social-link:focus span {
  color: #fff;
  background: var(--color-black);
}

.contact-card .social-links {
  margin-top: 18px;
}

.contact-card .social-link {
  color: var(--color-black);
  background: rgba(200, 162, 74, 0.1);
  border-color: rgba(155, 122, 47, 0.26);
}

.contact-card .social-link:hover,
.contact-card .social-link:focus {
  color: #111;
  background: var(--color-gold);
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(13, 13, 13, 0.96);
  }

  .topline {
    display: none;
  }

  .navbar-collapse {
    padding: 18px 0 10px;
  }

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

  .hero-content {
    padding-top: calc(var(--nav-height) + 34px);
    padding-bottom: 54px;
  }

  .route-grid,
  .stub-list,
  .service-grid,
  .info-grid,
  .area-grid,
  .gallery-grid,
  .contact-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) {
    grid-column: auto;
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --nav-height: 74px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .navbar {
    min-height: 74px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-action {
    justify-content: center;
    min-height: 46px;
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .brand-kicker {
    font-size: 0.68rem;
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(13, 13, 13, 0.86) 0%, rgba(13, 13, 13, 0.68) 50%, rgba(13, 13, 13, 0.92) 100%),
      url("../../img/g3.png");
  }

  .hero h1 {
    max-width: 520px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof,
  .hero-service-strip,
  .route-grid,
  .stub-list,
  .service-grid,
  .info-grid,
  .area-grid,
  .gallery-grid,
  .contact-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 14px 16px;
  }

  .page-hero {
    min-height: 390px;
  }

  .page-hero-content {
    padding-top: calc(var(--nav-height) + 44px);
    padding-bottom: 44px;
  }

  .section-pad {
    padding: 52px 0;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2) {
    grid-column: auto;
    min-height: 280px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-strip {
    padding: 24px;
  }

  .cta-actions .btn {
    width: 100%;
  }
}
