/* ==========================================================================
   SethPricePressure — draft site styles
   Palette: Gulf Navy #12324B / Soft-Wash Aqua #2FB6C4 / Florida Sun #FFC23C
            Wet Concrete #6B7683 / Clean White #FBFDFE / Ink #0E1B26
   ========================================================================== */

:root {
  --navy: #12324B;
  --aqua: #2FB6C4;
  --sun: #FFC23C;
  --concrete: #6B7683;
  --white: #FBFDFE;
  --ink: #0E1B26;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, monospace;

  --wrap-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.05; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--aqua);
  color: var(--navy);
}
.btn-primary:hover { background: #29a4b1; }

.btn-accent {
  background: var(--sun);
  color: var(--ink);
}
.btn-accent:hover { background: #f0b02e; }

.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
  padding: 0.7rem 1.4rem;
}
.btn-ghost-label {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--concrete);
}
.btn-ghost-phone {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.header-phone {
  display: none;
  text-decoration: none;
  text-align: right;
}
.phone-label {
  display: block;
  font-size: 0.7rem;
  color: var(--concrete);
}
.phone-number {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
@media (min-width: 640px) {
  .header-phone { display: block; }
}

/* ==========================================================================
   Hero — asymmetric, slider dominant
   ========================================================================== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 2.75rem 0 3.5rem;
  position: relative;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 0.9rem;
}
.hero-headline {
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.1rem);
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero-headline-accent {
  color: var(--aqua);
}
.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  max-width: 46ch;
  color: #dfeef2;
}
.hero-sub strong { color: var(--white); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.hero .btn-ghost {
  border-color: var(--aqua);
  color: var(--white);
}
.hero .btn-ghost-label { color: #a9c8ce; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
  margin-top: 1.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust li {
  font-size: 0.85rem;
  color: #cfe4e8;
  position: relative;
  padding-left: 1.1rem;
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: var(--sun);
  border-radius: 50%;
}

/* ---- Before/After slider ---- */
.hero-slider-wrap {
  position: relative;
}
.before-after {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.12);
}
.ba-frame {
  position: relative;
  width: 100%;
  height: 100%;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5px;
  width: 3px;
  background: var(--white);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
}
.ba-range::-webkit-slider-thumb {
  appearance: none;
  width: 40px;
  height: 40px;
}
.ba-range::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
}
/* .ba-range has opacity:0, so its own focus ring is invisible — show it on the frame instead */
.before-after:focus-within {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

.ba-caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #b9d3d8;
}
.ba-caption-note {
  color: var(--sun);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  display: inline-block;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Section shared bits
   ========================================================================== */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1B7F8A; /* darkened from --aqua for 4.5:1+ contrast on light section backgrounds */
  margin: 0 0 0.6rem;
}
.section-eyebrow--light { color: var(--sun); }
.section-headline {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.section-headline--light { color: var(--white); }

/* ==========================================================================
   Meet the operator — asymmetric two-col, offset photo
   ========================================================================== */
.operator {
  padding: 4rem 0;
  background: var(--white);
}
.operator-grid {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 860px) {
  .operator-grid {
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 3.5rem;
  }
  .operator-photo { margin-top: 1.75rem; }
}
.photo-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  border: 2px dashed var(--concrete);
  border-radius: var(--radius-md);
  transform: rotate(-1.2deg);
}
.operator-lede {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}
.operator-signoff {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Services — varied blocks, not identical cards
   ========================================================================== */
.services {
  padding: 4rem 0;
  background: #eef4f5;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
  }
  .service-card--wide { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card--wide { grid-column: span 2; }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.service-card--wide {
  flex-direction: column;
}
@media (min-width: 640px) {
  .service-card--wide {
    flex-direction: row;
  }
  .service-card--wide .service-photo {
    width: 45%;
    aspect-ratio: 4 / 5;
  }
  .service-card--wide .service-body {
    width: 55%;
  }
}

.service-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-photo--tall {
  aspect-ratio: 4 / 5;
}
.service-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--ink);
  font-size: 0.95rem;
  flex: 1;
}
.service-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--sun);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* Slight rotation on alternating cards for hand-built asymmetry */
.service-card:nth-child(3n+2) { transform: rotate(0.4deg); }
.service-card:nth-child(3n+3) { transform: rotate(-0.4deg); }

/* ==========================================================================
   Proof
   ========================================================================== */
.proof {
  padding: 4rem 0;
  background: var(--white);
}
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.75rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
}
.trust-detail {
  color: var(--concrete);
  font-size: 0.88rem;
}

.reviews {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 760px) {
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .review--offset { margin-top: 1.75rem; }
}
.review {
  margin: 0;
  background: #eef4f5;
  border-left: 4px solid var(--aqua);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.5rem;
}
.review p {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.review footer {
  font-size: 0.85rem;
  color: var(--concrete);
}
.review cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}
.review-neighborhood {
  font-family: var(--font-mono);
}

.gallery-label {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.gallery-todo {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.78rem;
  color: #b5432b;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Quote form
   ========================================================================== */
.quote {
  background: var(--ink);
  padding: 4rem 0 5.5rem;
}
.quote-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .quote-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}
.quote-sub {
  color: #cfd8dc;
  font-size: 1.05rem;
}
.quote-sub a {
  color: var(--sun);
  font-family: var(--font-mono);
  text-decoration: none;
  font-weight: 600;
}

.quote-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 520px) {
  .quote-form { grid-template-columns: 1fr 1fr; }
  .form-row--full { grid-column: span 2; }
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-row label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  border: 2px solid #c7d0d4;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--aqua);
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}
.form-note {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #b5432b;
  margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: #b9d3d8;
  padding: 1.75rem 0 6rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   Sticky mobile bar
   ========================================================================== */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 100;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.18);
}
.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.mobile-bar-btn--call {
  background: var(--navy);
  color: var(--white);
}
.mobile-bar-btn--quote {
  background: var(--sun);
  color: var(--ink);
}
@media (min-width: 720px) {
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 1.75rem; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
