/* Palette pulled from the Clark's Pool Sharks logo */
:root {
  --navy: #1f4a6b;
  --navy-dark: #143552;
  --sky: #6fa8c9;
  --sky-light: #cfe3ee;
  --cream: #f4ecdc;
  --cream-deep: #ece2cc;
  --rust: #a65a2a;
  --sun: #f6c66a;
  --leaf: #3f7e54;
  --ink: #1a2a36;
  --muted: #5b6b78;
  --white: #ffffff;
  --shadow: 0 6px 20px rgba(20, 53, 82, 0.12);
  --shadow-lg: 0 18px 40px rgba(20, 53, 82, 0.18);
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  color: var(--navy-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(1.9rem, 4vw + 1rem, 3.1rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--cream-deep);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand { display: inline-flex; align-items: center; }
.logo {
  height: 88px;
  width: 88px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
}
.site-nav { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.site-nav a {
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav .nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--navy-dark); text-decoration: none; }
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-social:hover { background: var(--navy); color: var(--white); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 150px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1562016600-ece13e8ba570?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 53, 82, 0.78) 0%, rgba(20, 53, 82, 0.45) 60%, rgba(31, 74, 107, 0.55) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: 820px;
  text-align: center;
}
.hero-content { text-align: center; margin: 0 auto; }
.hero h1 { color: var(--white); text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35); }
.tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 680px;
  margin: 0 auto 1.8em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.05s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--navy-dark); }
.btn-secondary {
  background: var(--white);
  color: var(--navy-dark);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 2em;
}

/* Services */
.service-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-grid li {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.service-grid li:hover {
  transform: translateY(-3px);
  border-color: var(--sky);
  box-shadow: var(--shadow-lg);
}
.service-grid h3 { color: var(--navy); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--cream) 100%);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 32px; height: 32px; }

/* Areas */
.areas-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 1.4em;
}
.areas-grid > div {
  background: var(--white);
  border-left: 4px solid var(--rust);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.areas-note { color: var(--muted); font-style: italic; }

/* About */
.about-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}
.about-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.value-list { list-style: none; padding: 0; margin: 1em 0 1.4em; }
.value-list li {
  padding: 10px 0 10px 30px;
  position: relative;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  background: var(--sky);
  border-radius: 50%;
  border: 3px solid var(--navy);
}
.value-list strong { color: var(--navy-dark); }
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.fb-link:hover { background: var(--navy-dark); color: var(--white); text-decoration: none; }

/* Contact */
.section-contact {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.section-contact h2 { color: var(--white); }
.section-contact .section-lead { color: rgba(255, 255, 255, 0.85); }
.contact-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1em;
}
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transform: translateY(-2px);
}
.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky);
  font-weight: 700;
}
.contact-value {
  font-size: 1.35rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--cream-deep);
  padding: 28px 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-inner { text-align: center; }
.footer-inner p { margin: 4px 0; }
.footer-inner a { color: var(--navy-dark); font-weight: 600; }

/* Responsive */
@media (max-width: 720px) {
  .about-inner { grid-template-columns: 1fr; }
  .site-nav { gap: 12px; }
  .site-nav a:not(.nav-cta):not(.nav-social) { display: none; }
  .hero { padding: 90px 0 100px; }
  .section { padding: 56px 0; }
}
