/* ================================================================
   QuackClean — Waterfront Maintenance
   assets/css/styles.css
   Mobile-first responsive design. Edit variables below to retheme.
   ================================================================ */


/* ── Custom Properties ─────────────────────────────────────────── */

:root {
  /* Lake palette */
  --lake-deep:   #0b2030;
  --lake-dark:   #0f3d55;
  --lake-mid:    #16607a;
  --lake-teal:   #1d8da6;
  --lake-pale:   #e2f0f6;
  --lake-mist:   #f2f8fb;

  /* Duck amber — restrained, not neon */
  --duck:        #b8851e;
  --duck-light:  #d4a030;
  --duck-dark:   #8e6514;

  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f6f9fa;

  /* Text */
  --text-head:   #0c1d26;
  --text-body:   #2b4855;
  --text-muted:  #56778a;
  --text-invert: #ffffff;

  /* Borders & shadows */
  --border-light: #cfe5ee;
  --border:       #aecede;
  --shadow-sm:    0 1px 3px rgba(11,32,48,.07);
  --shadow-card:  0 3px 16px rgba(11,32,48,.09);
  --shadow-md:    0 8px 28px rgba(11,32,48,.13);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1100px;
  --nav-h:     64px;

  /* Radius */
  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-pill: 999px;
}


/* ── Reset ─────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}


/* ── Typography ─────────────────────────────────────────────────── */

h1, h2, h3, h4 { color: var(--text-head); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 5.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.18rem); font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }

p { max-width: 68ch; }

.eyebrow {
  display: block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--duck-light);
  margin-bottom: 0.55rem;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.65;
}


/* ── Layout ─────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}


/* ── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.68rem 1.35rem;
  border-radius: var(--r-pill);
  font-size: 0.91rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}

.btn-duck {
  background: var(--duck);
  color: var(--white);
  border-color: var(--duck);
}
.btn-duck:hover, .btn-duck:focus-visible {
  background: var(--duck-light);
  border-color: var(--duck-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184,133,30,.30);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.42);
}
.btn-ghost-light:hover, .btn-ghost-light:focus-visible {
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--lake-dark);
  border-color: var(--lake-dark);
}
.btn-ghost-dark:hover, .btn-ghost-dark:focus-visible {
  background: var(--lake-dark);
  color: var(--white);
}

.btn-lake {
  background: var(--lake-dark);
  color: var(--white);
  border-color: var(--lake-dark);
}
.btn-lake:hover {
  background: var(--lake-mid);
  border-color: var(--lake-mid);
}


/* ── Site Navigation ──────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lake-deep);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-brand .brand-q { color: var(--duck-light); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  padding: 0;
  flex-shrink: 0;
}
.toggle-bar {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav links — mobile hidden, stacked when open */
.nav-links {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--lake-deep);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0.6rem 0 0.9rem;
  flex-direction: column;
}
.nav-links.is-open { display: flex; }

.nav-links li a {
  display: block;
  padding: 0.55rem 1.5rem;
  color: rgba(255,255,255,.78);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color .15s;
}
.nav-links li a:hover,
.nav-links li a.is-active { color: var(--white); }
.nav-links li a.is-active { color: var(--duck-light); }

.nav-links .nav-cta {
  display: inline-block;
  margin: 0.45rem 1.5rem 0;
  padding: 0.55rem 1.2rem;
  background: var(--duck);
  color: var(--white) !important;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--duck-light); }


/* ── Hero ─────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(148deg, var(--lake-deep) 0%, var(--lake-dark) 52%, #1a6070 100%);
  color: var(--text-invert);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 30%, rgba(29,141,166,.16) 0%, transparent 62%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-block: 5.5rem;
}

.hero-inner {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Mobile: logo above text */
.hero-logo-wrap {
  order: 1;
  display: flex;
  justify-content: center;
}

.hero-text { order: 2; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero .lead {
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}


/* ── Page Hero (inner pages) ───────────────────────────────────── */

.page-hero {
  background: linear-gradient(148deg, var(--lake-deep) 0%, var(--lake-dark) 100%);
  color: var(--text-invert);
  padding: 4rem 1.25rem 3.5rem;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-top: 0.5rem; }
.page-hero .lead { color: rgba(255,255,255,.72); margin-top: 0.75rem; max-width: 58ch; }


/* ── Sections ──────────────────────────────────────────────────── */

.section { padding-block: 4.5rem; }
.section-white { background: var(--white); }
.section-pale  { background: var(--lake-mist); }
.section-dark  { background: var(--lake-deep); color: var(--text-invert); }

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-header { margin-bottom: 2.25rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header .sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 54ch;
}
.section-dark .section-header .sub { color: rgba(255,255,255,.62); }

.center { text-align: center; }
.center p,
.center .sub { margin-inline: auto; }


/* ── Card Grid ─────────────────────────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-card);
}

.card-accent {
  height: 3px;
  width: 32px;
  background: var(--lake-teal);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--lake-dark);
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--text-body);
  font-size: 0.92rem;
  max-width: none;
}

.card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--lake-teal);
}
.card-link:hover { text-decoration: underline; }


/* ── Two-column layout ─────────────────────────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.two-col-center { align-items: center; }


/* ── Check list ──────────────────────────────────────────────── */

.check-list {
  display: grid;
  gap: 1.1rem;
}

.check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.check-dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--lake-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.18rem;
  font-size: 0.65rem;
  color: var(--lake-teal);
  font-weight: 800;
}

.check-item-body h4 {
  margin-bottom: 0.1rem;
  color: var(--text-head);
  font-size: 0.93rem;
}

.check-item-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.5;
}


/* ── Service Detail Cards (services page) ────────────────────── */

.service-block {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.service-block h3 {
  color: var(--lake-dark);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 0.5rem;
}

.service-block p { max-width: 64ch; }

.service-includes {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tag {
  padding: 0.25rem 0.7rem;
  background: var(--lake-pale);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--lake-dark);
}


/* ── Service Area Tags ─────────────────────────────────────────── */

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.area-tag {
  padding: 0.28rem 0.78rem;
  background: var(--lake-pale);
  border: 1px solid var(--border-light);
  border-radius: var(--r-pill);
  font-size: 0.81rem;
  font-weight: 500;
  color: var(--lake-dark);
}


/* ── Field Note Cards ───────────────────────────────────────────── */

.note-card {
  background: var(--white);
  border-left: 4px solid var(--lake-teal);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 1.7rem;
  box-shadow: var(--shadow-card);
}

.note-card + .note-card { margin-top: 1.25rem; }

.note-meta {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.note-card h3 {
  color: var(--lake-dark);
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

.note-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  max-width: none;
}

.note-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--lake-teal);
}
.note-link:hover { text-decoration: underline; }


/* ── Pricing display (from pricing-config.js) ──────────────────── */

.pricing-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.pricing-box h3 {
  color: var(--lake-dark);
  margin-bottom: 0.35rem;
}

.pricing-starting {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lake-teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-starting span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: none;
}

.pricing-public-note {
  background: var(--lake-mist);
  border-left: 3px solid var(--lake-teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-body);
  max-width: 64ch;
}


/* ── FAQ ───────────────────────────────────────────────────────── */

.faq-list { display: grid; }

.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-head);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-btn::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--lake-teal);
  transition: transform .2s;
  line-height: 1;
}

.faq-item.is-open .faq-btn::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 1.1rem;
  font-size: 0.92rem;
  color: var(--text-body);
  max-width: 70ch;
  line-height: 1.65;
}
.faq-item.is-open .faq-answer { display: block; }


/* ── Gallery placeholder grid ───────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--lake-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}


/* ── Contact methods ────────────────────────────────────────────── */

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-method-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--lake-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-method h4 {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.18rem;
}

.contact-method a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lake-dark);
}
.contact-method a:hover { text-decoration: underline; }

.contact-note {
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* ── Form ──────────────────────────────────────────────────────── */

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 0.32rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.68rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-head);
  background: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lake-teal);
  box-shadow: 0 0 0 3px rgba(29,141,166,.13);
}

.form-group textarea { resize: vertical; min-height: 110px; }


/* ── CTA Banner ────────────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, var(--lake-dark) 0%, var(--lake-mid) 100%);
  padding-block: 4.5rem;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 0.7rem; }

.cta-banner p {
  color: rgba(255,255,255,.72);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}


/* ── Footer ─────────────────────────────────────────────────────── */

.site-footer {
  background: var(--lake-deep);
  color: rgba(255,255,255,.62);
  padding-block: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-bottom: 2rem;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-brand-name .brand-q { color: var(--duck-light); }

.footer-tagline { font-size: 0.86rem; max-width: 28ch; }

.footer-col h5 {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,.52);
  padding: 0.17rem 0;
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 0.77rem;
  color: rgba(255,255,255,.32);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}


/* ── Utilities ─────────────────────────────────────────────────── */

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

.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin-block: 2rem;
}

.text-muted { color: var(--text-muted); }
.mt-sm { margin-top: 0.6rem; }
.mt-md { margin-top: 1.25rem; }
.mt-lg { margin-top: 2.25rem; }


/* ── Responsive ─────────────────────────────────────────────────── */

@media (min-width: 580px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {

  /* Desktop nav */
  .nav-toggle { display: none; }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    border: none;
    background: none;
  }

  .nav-links li a {
    padding: 0.42rem 0.78rem;
    border-radius: var(--r-md);
  }
  .nav-links li a:hover { background: rgba(255,255,255,.07); }

  .nav-links .nav-cta {
    margin: 0 0 0 0.5rem;
    padding: 0.5rem 1.1rem;
  }

  /* Layout */
  .card-grid     { grid-template-columns: repeat(3, 1fr); }
  .check-list    { grid-template-columns: repeat(2, 1fr); }
  .two-col       { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 2fr 1fr 1fr; }

}

@media (min-width: 1024px) {
  .hero .container { padding-block: 6.5rem; }
}


/* ── Logo placeholders — remove when real artwork is in place ──── */

/* NAV: 44×44 — sized to carry real duck artwork as a visible brand mark */
.nav-logo-placeholder {
  width: 44px;
  height: 44px;
  border: 2px dashed var(--duck-light);
  border-radius: var(--r-md);
  background: rgba(212,160,48,.09);
  flex-shrink: 0;
}
/* Swap in when artwork is ready — remove placeholder div */
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

/* HERO: 130×130 — central brand visual, prominent brand mark */
.hero-logo-placeholder {
  width: 130px;
  height: 130px;
  border: 2.5px dashed rgba(212,160,48,.42);
  border-radius: 24px;
  background: rgba(212,160,48,.07);
}
/* Swap in when artwork is ready — remove placeholder div */
.hero-logo-wrap .hero-logo-img {
  width: 468px;
  height: 468px;
  max-width: 80vw;
  max-height: 80vw;
  object-fit: contain;
}

@media (max-width: 599px) {
  .hero-logo-wrap .hero-logo-img {
    width: 90vw;
    height: 90vw;
    max-width: 90vw;
    max-height: 90vw;
  }
}

/* FOOTER: Logo beside wordmark in a lockup */
.footer-brand-lockup {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

/* FOOTER logo slot: 50×50 */
.footer-logo-placeholder {
  width: 50px;
  height: 50px;
  border: 1.5px dashed rgba(212,160,48,.28);
  border-radius: var(--r-md);
  background: rgba(212,160,48,.06);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
/* Swap in when artwork is ready — remove placeholder div */
.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0.1rem;
}


/* ── Hero sub-action (small text link below hero buttons) ─────── */

.hero-sub-action {
  margin-top: 0.85rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,.5);
}
.hero-sub-action a {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
}
.hero-sub-action a:hover { color: var(--white); }


/* ── Facebook follow link ──────────────────────────────────────── */

.facebook-follow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,.58);
  transition: color .15s;
}
.facebook-follow:hover { color: var(--white); }

.facebook-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  background: #1877F2;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: Georgia, serif;
  color: white;
  flex-shrink: 0;
  letter-spacing: 0;
}

/* Facebook on a light background */
.facebook-follow-light {
  color: var(--lake-dark);
  font-size: 0.88rem;
}
.facebook-follow-light:hover { color: var(--lake-mid); }


/* ── Seasonal availability notice ──────────────────────────────── */

.season-note {
  background: var(--lake-pale);
  border-left: 3px solid var(--lake-teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-body);
  max-width: 66ch;
  line-height: 1.6;
}
.season-note strong { color: var(--lake-dark); }


/* ── Page intro layout (approach / services detail pages) ──────── */

.intro-block {
  max-width: 72ch;
  margin-bottom: 3rem;
}

.intro-block p + p { margin-top: 0.85rem; }


/* ── Approach method blocks ─────────────────────────────────────── */

.method-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}
.method-block:last-child { border-bottom: none; }

.method-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--duck);
}

.method-block h3 {
  color: var(--lake-dark);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.method-block p {
  font-size: 0.94rem;
  max-width: 64ch;
}

.method-block p + p { margin-top: 0.65rem; }

@media (min-width: 900px) {
  .method-block {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
  }
  .method-block-label { padding-top: 0.2rem; }
}


/* ── Hero two-column layout (desktop) ──────────────────────────── */

@media (min-width: 860px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-text {
    order: 1;
    flex: 1;
  }

  .hero-logo-wrap {
    order: 2;
    justify-content: flex-end;
    flex-shrink: 0;
    padding-top: 0.5rem;
  }
}


/* ── Contact call/text/email buttons (touch-friendly) ──────────── */

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  min-height: 48px;
  margin-top: 0.9rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--r-pill);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
}

.contact-btn-phone {
  background: var(--duck);
  color: var(--white);
  border-color: var(--duck);
}
.contact-btn-phone:hover, .contact-btn-phone:focus-visible {
  background: var(--duck-light);
  border-color: var(--duck-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184,133,30,.30);
}

.contact-btn-email {
  background: transparent;
  color: var(--lake-dark);
  border-color: var(--lake-dark);
}
.contact-btn-email:hover, .contact-btn-email:focus-visible {
  background: var(--lake-dark);
  color: var(--white);
}

@media (min-width: 580px) {
  .contact-btn {
    display: inline-flex;
    width: auto;
    justify-content: flex-start;
  }
}


/* ── Photo tip callout (contact page) ──────────────────────────── */

.photo-tip {
  background: var(--lake-pale);
  border-left: 3px solid var(--lake-teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.photo-tip strong { color: var(--lake-dark); }
