:root {
  --primary: #02377c;
  --primary-dark: #012758;
  --secondary: #ffffff;
  --text: #362f2d;
  --muted: #a3a3a3;
  --surface: #ebeaea;
  --border: rgba(54, 47, 45, 0.14);
  --shadow: 0 24px 70px rgba(2, 55, 124, 0.14);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--secondary);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover,
a:focus-visible {
  color: var(--primary);
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--secondary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.utility-bar {
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
}

.utility-note,
.utility-links {
  margin: 0;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  color: #dfeeff;
}

.nav-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--primary);
  font-size: 1.06rem;
}

.brand-text small {
  color: #68605c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-menu a {
  display: inline-flex;
  padding: 12px 11px;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(2, 55, 124, 0.08);
}

.nav-menu .nav-cta {
  background: var(--primary);
  color: #fff;
  padding-inline: 18px;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--primary-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 22, 50, 0.88), rgba(2, 55, 124, 0.74) 48%, rgba(2, 55, 124, 0.32)), url('../img/golf-cart-teen-mode.jpg') center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(1, 22, 50, 0.32));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: center;
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.callout-section .eyebrow,
.site-footer .eyebrow {
  color: #dbe9ff;
}

.hero h1 {
  margin: 0;
  max-width: 750px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero-lede {
  max-width: 670px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(2, 55, 124, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
  color: #fff;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface);
  color: var(--primary-dark);
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-payment-image {
  margin-inline: auto;
}

.hero-invoice-link {
  margin: 16px 0 0;
  text-align: center;
}

.hero-invoice-link a {
  color: var(--primary);
}

.hero-invoice-link a:hover,
.hero-invoice-link a:focus-visible {
  color: var(--primary-dark);
}

.hero-card-top {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.hero-card-top img {
  width: 76px;
  border-radius: 14px;
}

.hero-card-top strong,
.hero-card-top span {
  display: block;
}

.hero-card-top strong {
  font-size: 1.02rem;
  line-height: 1.3;
}

.hero-card-top span {
  margin-top: 4px;
  color: #68605c;
  font-size: 0.92rem;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 0 0 3px #fff;
  outline: 1px solid rgba(2, 55, 124, 0.32);
}

.check-list.dark li::before {
  box-shadow: inset 0 0 0 3px var(--surface);
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

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

.trust-grid article {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.stat {
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.trust-grid p {
  margin: 8px 0 0;
  color: #68605c;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--surface);
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.no-margin {
  margin-bottom: 0;
}

.section-heading h2,
.callout-section h2,
.contact-panel h2,
.rental-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow),
.callout-section p,
.rental-copy p,
.contact-panel p {
  color: #68605c;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  max-width: none;
  align-items: end;
}

.split-heading p:last-child {
  margin: 0 0 6px;
}

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

.service-card,
.project-card,
.pricing-card,
.contact-form,
.contact-panel,
.faq-list,
.rental-image,
.rental-copy {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(54, 47, 45, 0.08);
}

.service-card {
  padding: 30px;
}

.service-card h3,
.project-card h3,
.faq-list h3 {
  margin: 16px 0 10px;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-card p,
.project-card p {
  color: #68605c;
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #68605c;
}

.service-card li + li {
  margin-top: 8px;
}

.featured-card {
  background: var(--primary);
  color: #fff;
}

.featured-card h3,
.featured-card p,
.featured-card ul {
  color: #fff;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(2, 55, 124, 0.1);
  color: var(--primary);
  font-weight: 900;
}

.featured-card .card-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-card > div {
  padding: 26px;
}

.callout-section {
  background: var(--primary);
  color: #fff;
  padding: 16px 0;
}

.callout-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  justify-content: start;
}

.callout-media {
  display: flex;
  align-items: center;
}

.callout-badge {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  margin: 0;
  object-fit: contain;
}

.callout-copy {
  max-width: 760px;
}

.callout-copy p {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.callout-section h2,
.callout-section p {
  color: #fff;
}

.callout-section p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.84);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid rgba(255, 255, 255, 0.52);
}

.text-link:hover,
.text-link:focus-visible {
  color: #dfeeff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.project-card {
  overflow: hidden;
  padding: 22px;
}

.project-card-large {
  grid-column: span 2;
  padding: 0;
}

.project-card-large img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card-large > div {
  padding: 24px;
}

.project-tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compact-card {
  min-height: 240px;
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 44px;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.rate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
}

.pricing-card {
  padding: 30px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.price-row:first-child {
  padding-top: 0;
}

.price-row span {
  color: #68605c;
  font-weight: 700;
}

.price-row strong {
  color: var(--primary);
  font-size: 2.6rem;
  line-height: 1;
}

.pricing-card p {
  color: #68605c;
}

.rental-section {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--surface) 50%, var(--surface) 100%);
}

.rental-grid {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.rental-image {
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--primary);
}

.rental-image img {
  border-radius: 16px;
}

.rental-copy {
  padding: 40px;
}

.rental-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 26px 0;
  padding: 20px;
  background: var(--surface);
  border-radius: 16px;
}

.rental-price span {
  color: #68605c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.rental-price strong {
  color: var(--primary);
  font-size: 3rem;
  line-height: 1;
}

.rental-price small {
  color: #68605c;
}

.faq-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 150px;
}

.faq-list {
  padding: 28px;
}

.faq-list h3 {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--primary);
}

.faq-list h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

details {
  border-bottom: 1px solid var(--border);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 34px 18px 0;
  position: relative;
  color: var(--text);
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 0 20px;
  color: #68605c;
}

.payment-image {
  max-width: 360px;
  margin-bottom: 20px;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 32px;
}

.contact-panel {
  background: var(--primary);
  color: #fff;
}

.contact-panel h2,
.contact-panel p,
.contact-panel address,
.contact-panel a {
  color: #fff;
}

.contact-panel address {
  margin: 28px 0;
  font-style: normal;
}

.small-note,
.form-note {
  font-size: 0.9rem;
}

.form-note {
  margin: 14px 0 0;
  color: #68605c;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(2, 55, 124, 0.12);
}

.site-footer {
  background: #171311;
  color: rgba(255, 255, 255, 0.76);
  padding: 70px 0 26px;
}

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

.footer-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0 0 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.footer-payment {
  width: 230px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero-grid,
  .service-grid,
  .rate-grid,
  .rental-grid,
  .faq-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sticky-heading {
    position: static;
  }

  .footer-grid {
    gap: 26px;
  }
}

@media (max-width: 820px) {
  .utility-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .nav-inner {
    min-height: 76px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 64px 0 92px;
  }

  .trust-grid,
  .split-heading,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .project-card-large {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .callout-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .callout-badge {
    width: 150px;
  }

  .hero-card-top {
    grid-template-columns: 60px 1fr;
  }

  .hero-card-top img {
    width: 60px;
  }

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

  .section-heading h2,
  .callout-section h2,
  .contact-panel h2,
  .rental-copy h2 {
    font-size: 2.35rem;
  }

  .price-row strong {
    font-size: 2.1rem;
  }

  .contact-panel,
  .contact-form,
  .rental-copy,
  .faq-list,
  .pricing-card,
  .service-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
