/* ============================================================
   WATERFRONT UNLIMITED — SITE STYLES
   ============================================================ */

:root {
  --dark: #1A1A1A;
  --accent: #D4860B;
  --accent-h: #B8720A;
  --accent-l: #E8A824;
  --white: #FFFFFF;
  --warm: #F7F5F0;
  --charcoal: #111111;
  --ft: #B3B0A8;
  --border: #D9D5CC;
  --body: #2D2D2D;
  --muted: #6B6B6B;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  transition: all 0.3s;
}

/* HEADER */
.hd {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

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

.logo-t {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--dark);
}

.nav {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav a:hover::after,
.nav a.on::after {
  width: 100%;
}

.nav-dd {
  position: relative;
}

.dd-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 0;
  min-width: 230px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 99;
}

.nav-dd:hover .dd-menu {
  display: block;
}

.dd-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.dd-menu a::after {
  display: none;
}

.dd-menu a:hover {
  color: var(--accent);
  background: var(--warm);
}

/* MOBILE NAV */
.mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mob-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

.mob-nav {
  display: none;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 899;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  max-height: 80vh;
  overflow-y: auto;
}

.mob-nav.open {
  display: block;
}

.mob-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.mob-nav a:last-child {
  border-bottom: none;
}

.mob-nav a:hover {
  color: var(--accent);
}

.mob-nav .ml {
  padding-left: 20px;
  font-weight: 500;
  font-size: 13px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.68));
}

.hero-c {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 40px 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-cta {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 32px;
  max-width: 560px;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}

.hero-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* SECTIONS */
.s { padding: 80px 48px; }
.sc { padding: 48px 48px; }
.bw { background: var(--white); }
.bm { background: var(--warm); }
.bd { background: var(--charcoal); color: #ffffff; }
.ctn { max-width: 760px; margin: 0 auto; }
.ctn-w { max-width: 1120px; margin: 0 auto; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--dark);
  font-weight: 500;
}

h2 { font-size: 36px; margin-bottom: 20px; }
h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }

p {
  margin-bottom: 18px;
  color: var(--body);
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

.ph {
  text-align: center;
  padding: 64px 28px;
  background: var(--warm);
}

.ph h1 {
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.ph p {
  color: var(--muted);
  font-size: 17px;
}

.label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.bar {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 22px;
}

.bar-c { margin-left: auto; margin-right: auto; }
.tc { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-a { color: #ffffff; border-color: var(--accent); background: var(--accent); }
.btn-a:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-ow { color: #ffffff; border-color: rgba(255, 255, 255, 0.5); background: transparent; }
.btn-ow:hover { background: var(--accent); border-color: var(--accent); }
.btn-od { color: var(--dark); border-color: var(--dark); background: transparent; }
.btn-od:hover { background: var(--dark); color: #ffffff; }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.09); }
.svc-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s; }
.svc-card:hover img { transform: scale(1.04); }
.svc-bd { padding: 22px 24px 26px; }
.svc-acc { width: 28px; height: 3px; background: var(--accent); margin-bottom: 12px; }
.svc-bd h3 { font-size: 19px; margin-bottom: 6px; }
.svc-bd p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* TRUST SIGNALS */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.trust-item { padding: 32px 20px; }
.trust-icon { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--accent); }
.trust-item h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; color: var(--dark); }
.trust-item p { font-size: 14px; color: var(--muted); margin-bottom: 0; }

/* LAKE GRID */
.lake-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lake-card { background: var(--white); border: 1px solid var(--border); padding: 24px; text-align: center; text-decoration: none; color: var(--dark); transition: all 0.3s; display: block; }
.lake-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); }
.lake-card h4 { font-size: 18px; margin-bottom: 4px; }
.lake-card p { font-size: 13px; color: var(--muted); margin: 0; }

/* SERVICE LIST */
.svc-list { list-style: none; max-width: 520px; }
.svc-list li { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; display: flex; align-items: center; gap: 12px; }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: ""; width: 10px; height: 2px; background: var(--accent); flex-shrink: 0; }

/* TWO COLUMN */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two img { width: 100%; height: auto; object-fit: cover; max-height: 500px; }
.two-about { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: start; }
.two-about img { width: 100%; height: auto; object-fit: cover; }

/* IMAGE ROW */
.img-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.img-row img { width: 100%; height: 200px; object-fit: cover; }

/* PROCESS STEPS */
.step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: none; }
.step-n { font-family: var(--serif); font-size: 56px; font-weight: 600; color: var(--accent); line-height: 1; }
.step h3 { margin-bottom: 12px; }
.step p { max-width: 640px; }

/* GALLERY */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gal-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-ov { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.75)); color: #ffffff; transform: translateY(100%); transition: transform 0.4s; }
.gal-item:hover .gal-ov { transform: translateY(0); }
.gal-type { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-l); margin-bottom: 3px; }
.gal-cap { font-size: 13px; color: rgba(255, 255, 255, 0.8); }

/* CASE STUDIES */
.cs { padding: 40px 0; border-bottom: 1px solid var(--border); }
.cs:last-child { border-bottom: none; }
.cs h3 { font-size: 24px; margin-bottom: 20px; }
.cs-sec { margin-bottom: 18px; }
.cs-sec:last-child { margin-bottom: 0; }
.cs-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.cs-ph { color: var(--muted); font-style: italic; }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-n { font-family: var(--serif); font-size: 52px; font-weight: 600; color: var(--accent); line-height: 1.1; margin-bottom: 8px; }
.stat-l { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* LAKE PAGES */
.lake-hero { position: relative; height: 340px; overflow: hidden; }
.lake-hero img { width: 100%; height: 100%; object-fit: cover; }
.lake-hero-ov { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.5)); }
.lake-svc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.lake-svc-card { background: var(--white); border: 1px solid var(--border); padding: 20px 24px; transition: border-color 0.3s; }
.lake-svc-card:hover { border-color: var(--accent); }
.lake-svc-card h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--dark); margin-bottom: 4px; }
.lake-svc-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* CONTACT */
.c-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.c-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 16px; }
.c-line a { color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--border); }
.c-line a:hover { border-bottom-color: var(--accent); }
.c-icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.form { display: flex; flex-direction: column; gap: 16px; }
.fld { display: flex; flex-direction: column; gap: 5px; }
.fld label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.fld input, .fld textarea, .fld select { font-family: var(--sans); font-size: 15px; padding: 12px 14px; border: 1px solid var(--border); background: var(--white); color: var(--dark); outline: none; transition: border-color 0.3s; border-radius: 0; -webkit-appearance: none; }
.fld input:focus, .fld textarea:focus, .fld select:focus { border-color: var(--accent); }
.fld textarea { min-height: 120px; resize: vertical; }
.fld select { cursor: pointer; }
.sub-btn { padding: 14px 36px; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: #ffffff; border: 2px solid var(--accent); cursor: pointer; transition: all 0.3s; align-self: flex-start; border-radius: 0; }
.sub-btn:hover { background: var(--accent-h); border-color: var(--accent-h); }

.map-ph { width: 100%; height: 350px; background: var(--warm); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; border-top: 1px solid var(--border); }

/* PLANNING GUIDE */
.guide-sec { margin-bottom: 40px; }
.guide-sec:last-child { margin-bottom: 0; }
.guide-sec h3 { margin-bottom: 14px; }

/* FOOTER */
.ft { background: var(--charcoal); color: var(--ft); }
.ft-geo { text-align: center; padding: 28px 24px; font-size: 13px; line-height: 1.7; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.ft-con { text-align: center; padding: 22px 24px; font-size: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.ft-con a { color: var(--ft); text-decoration: none; margin: 0 14px; }
.ft-con a:hover { color: #ffffff; }
.ft-bot { text-align: center; padding: 18px 24px; font-size: 12px; color: #666666; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.ft-soc a { color: #666666; text-decoration: none; margin: 0 6px; font-size: 12px; }
.ft-soc a:hover { color: var(--accent); }

/* ANIMATIONS */
.fi { opacity: 0; transform: translateY(22px); transition: opacity 0.7s, transform 0.7s; }
.fi.v { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hd { padding: 0 20px; height: 80px; }
  .nav { display: none; }
  .mob-btn { display: block; }
  .s { padding: 56px 20px; }
  .sc { padding: 36px 20px; }
  .hero h1 { font-size: 34px; }
  .hero { min-height: 78vh; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid, .stats { grid-template-columns: 1fr; }
  .lake-grid { grid-template-columns: 1fr 1fr; }
  .two, .two-about, .c-grid { grid-template-columns: 1fr; }
  .gal { grid-template-columns: 1fr 1fr; }
  .lake-svc { grid-template-columns: 1fr; }
  .img-row { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 28px; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-n { font-size: 42px; }
  .ph h1 { font-size: 32px; }
}

@media (max-width: 600px) {
  .s { padding: 44px 16px; }
  .hero h1 { font-size: 28px; }
  .hero { min-height: 70vh; }
  .svc-grid, .gal, .img-row { grid-template-columns: 1fr; }
  .lake-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; text-align: center; }
  .hd { height: 72px; }
  .hero-cta { padding: 20px; }
  .gal-ov { transform: translateY(0); background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.7)); }
  .sub-btn { align-self: stretch; text-align: center; }
}

/* ============================================================
   ENHANCED COLOR ACCENTS
   ============================================================ */

/* Top accent bar on every page */
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l), var(--accent));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* Offset the sticky header for the top bar */
.hd {
  top: 4px;
}

/* Warm tinted page headers */
.ph {
  background: linear-gradient(135deg, #F7F5F0 0%, #F5EDE0 100%);
  border-bottom: 1px solid var(--border);
}

/* Gold left border on quote/positioning statements */
.quote-accent {
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
}

/* Warmer footer geo text */
.ft-geo {
  color: #C4BFB4;
}

/* Service card accent on hover */
.svc-card:hover .svc-acc {
  width: 48px;
  transition: width 0.4s;
}

/* Trust signal icons - slightly larger and bolder */
.trust-icon {
  width: 52px;
  height: 52px;
}

/* Branded section divider */
.brand-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  margin: 0 auto 24px;
}

/* Company name emphasis */
.brand-name {
  color: var(--dark);
  font-weight: 600;
}

/* 4-column trust grid responsive */
@media (max-width: 960px) {
  .trust-grid[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  .trust-grid[style*="repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

/* Fix for top accent bar pushing content - add padding to body */
body {
  padding-top: 4px;
}

/* Ensure page headers clear the sticky header + accent bar */
.ph {
  padding-top: 72px;
  padding-bottom: 64px;
}

/* Ensure fade-in elements don't clip text */
.fi {
  overflow: visible;
}

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.test-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
}

.test-card::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.test-quote {
  font-size: 15px;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 24px;
  font-style: italic;
}

.test-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.test-loc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 960px) {
  .test-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 2-column testimonial grid responsive */
@media (max-width: 600px) {
  .test-grid[style*="repeat(2"] {
    grid-template-columns: 1fr !important;
  }
}

/* 4-column stats responsive */
@media (max-width: 960px) {
  .stats[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 600px) {
  .stats[style*="repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}
