:root {
  --sw-red: #d71920;
  --sw-black: #050505;
  --sw-charcoal: #151515;
  --sw-dark-gray: #2a2a2a;
  --sw-light-gray: #f4f4f4;
  --sw-white: #ffffff;
  --sw-text: #1f1f1f;
  --red: var(--sw-red);
  --red-dark: #ad1117;
  --ink: var(--sw-text);
  --muted: #5a626b;
  --line: #d9dde2;
  --panel: var(--sw-light-gray);
  --paper: var(--sw-white);
  --charcoal: var(--sw-charcoal);
  --yellow: #f1b51c;
  --green: #1d6b52;
  --shadow: 0 18px 45px rgba(16, 18, 20, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--sw-black);
  border-bottom: 1px solid var(--sw-dark-gray);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 104px;
  padding: 0 22px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-logo,
.custom-logo {
  display: block;
  height: auto;
  width: 180px;
}

.custom-logo-link {
  display: block;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  color: #fff;
  display: grid;
  font-size: 22px;
  font-weight: 900;
  height: 44px;
  justify-items: center;
  line-height: 1;
  place-items: center;
  width: 44px;
}

.brand-name {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.nav-toggle {
  background: transparent;
  border: 1px solid #555;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  background: var(--sw-white);
  content: "";
  display: block;
  height: 2px;
  margin: 0 auto;
  position: relative;
  width: 20px;
}

.nav-toggle span::before {
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  position: absolute;
  top: 7px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav a {
  color: var(--sw-white);
  font-size: 12px;
  font-weight: 800;
  padding: 11px 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--red);
}

.site-nav a.button {
  color: #fff;
  padding-left: 14px;
  padding-right: 14px;
}

.site-nav a.button:hover,
.site-nav a.button:focus {
  color: #fff;
}

.button {
  align-items: center;
  background: var(--red);
  border: 2px solid var(--red);
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: #fff;
  color: var(--red);
}

.button.outline {
  background: transparent;
  border-color: #777;
  color: var(--sw-white);
}

.button.outline:hover,
.button.outline:focus {
  background: var(--sw-white);
  border-color: var(--sw-white);
  color: var(--sw-black);
}

.mobile-only {
  display: none;
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.hero {
  background: var(--ink);
  color: #fff;
  display: grid;
  min-height: clamp(660px, 82vh, 780px);
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.78;
  position: absolute;
  width: 100%;
}

.hero::after {
  background: linear-gradient(90deg, rgba(15, 16, 18, 0.96) 0%, rgba(15, 16, 18, 0.68) 44%, rgba(15, 16, 18, 0.08) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  align-self: center;
  margin: 0 auto;
  max-width: var(--max);
  padding: 78px 22px 96px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 22px;
  max-width: 850px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: #ecf0f3;
  font-size: 20px;
  max-width: 680px;
}

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

.trust-bar {
  background: var(--sw-white);
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max);
}

.trust-bar span {
  color: var(--sw-charcoal);
  font-size: 13px;
  font-weight: 800;
}

.trust-bar span::before {
  color: var(--red);
  content: "\2022";
  margin-right: 8px;
}

.sw-mobile-cta-bar {
  background: var(--sw-black);
  bottom: 0;
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.22);
  display: none;
  gap: 6px;
  left: 0;
  padding: 8px;
  position: fixed;
  right: 0;
  z-index: 9999;
}

.sw-mobile-cta-bar a {
  background: var(--red);
  border-radius: var(--radius);
  color: #fff;
  flex: 1;
  font-size: 13px;
  font-weight: 900;
  min-height: 46px;
  padding: 12px 8px;
  text-align: center;
  text-decoration: none;
}

.section {
  padding: 82px 22px;
}

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

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--max);
}

.section-lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.dark .section-lead {
  color: #d6dadd;
}

.split {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.image-frame {
  background: #111;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card strong {
  color: var(--red);
}

.sw-service-card {
  background: var(--sw-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  min-height: 240px;
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sw-service-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.sw-service-card h3 {
  margin-top: 14px;
}

.sw-service-card p,
.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.sw-service-card a {
  color: var(--red-dark);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin-top: 20px;
}

.service-index {
  border-bottom: 3px solid var(--red);
  color: var(--red);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  padding-bottom: 5px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.badge {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 10px;
}

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

.process-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
}

.process-card::before {
  background: var(--yellow);
  color: var(--ink);
  content: counter(step);
  counter-increment: step;
  display: grid;
  font-weight: 900;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  width: 34px;
}

.commercial-section .split {
  align-items: stretch;
}

.commercial-section .image-frame img {
  min-height: 100%;
}

.check-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  font-weight: 800;
  padding-left: 20px;
  position: relative;
}

.check-list li::before {
  color: var(--red);
  content: "+";
  left: 0;
  position: absolute;
}

.golf-photo-placeholder {
  align-items: center;
  background: var(--sw-white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  padding: 32px;
  text-align: center;
}

.golf-photo-placeholder img {
  height: 150px;
  margin-bottom: 18px;
  object-fit: contain;
  width: 150px;
}

.golf-photo-placeholder span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.review {
  border-left: 5px solid var(--red);
}

.quote {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.request-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--charcoal);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 6px;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid #b9c0c8;
  border-radius: 0;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.check-field {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.check-field input {
  flex: 0 0 18px;
  height: 18px;
  margin-top: 3px;
  min-height: 18px;
  width: 18px;
}

.form-status {
  background: #eef8f4;
  border: 1px solid #b9dccc;
  color: #164c3a;
  font-weight: 800;
  margin-top: 18px;
  padding: 14px;
}

.mini-note {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  background: var(--sw-black);
  color: #fff;
  padding: 52px 22px;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
  margin: 0 auto;
  max-width: var(--max);
}

.footer p {
  color: #c9ced3;
}

.footer-logo {
  height: auto;
  margin-bottom: 18px;
  width: 220px;
}

.footer-brand p {
  max-width: 480px;
}

.footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links span {
  color: #c9ced3;
}

.footer-area {
  font-size: 13px;
  margin-top: 18px;
}

.footer-bottom {
  border-top: 1px solid #333;
  color: #aeb4ba;
  display: flex;
  font-size: 13px;
  gap: 20px;
  justify-content: space-between;
  margin: 38px auto 0;
  max-width: var(--max);
  padding-top: 20px;
}

.footer-credit {
  font-size: 12px;
  margin: 0;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--sw-white);
  text-decoration-thickness: 2px;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--sw-black);
    border-bottom: 1px solid var(--sw-dark-gray);
    display: none;
    left: 0;
    padding: 12px 22px 18px;
    position: absolute;
    right: 0;
    top: 104px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .site-nav .desktop-only,
  .site-nav .header-call {
    display: none;
  }

  .site-nav .mobile-only {
    display: block;
  }

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

  .hero {
    min-height: 660px;
  }
}

@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .sw-mobile-cta-bar {
    display: flex;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 90px;
    padding: 0 16px;
  }

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

  .brand-logo,
  .custom-logo {
    height: auto;
    max-width: 145px;
    width: 145px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .site-nav {
    top: 90px;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(15, 16, 18, 0.94) 0%, rgba(15, 16, 18, 0.74) 52%, rgba(15, 16, 18, 0.28) 100%);
  }

  .hero-content {
    padding: 54px 16px 84px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    padding: 58px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner,
  .check-list,
  .footer-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .process {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }
}
