:root {
  --navy: #0b2239;
  --navy2: #061624;
  --red: #b90f2b;
  --cream: #f5f2eb;
  --white: #ffffff;
  --text: #172231;
  --muted: #5d6977;
  --line: #d9dee5;
  --shadow: 0 18px 42px rgba(5,18,32,.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6,22,36,.98);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(18px,4vw,56px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}

.nav .call {
  background: var(--red);
  padding: 10px 15px;
  border-radius: 3px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 2rem;
}

/* HERO */

.hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  background: var(--navy2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,rgba(6,22,36,.84),rgba(6,22,36,.52),rgba(6,22,36,.12)),
    url("assets/bathroom-wave-tile-shower.jpg") center/cover no-repeat;
  transform: scale(1.02);
  transition: background-image .5s ease;
}

.hero-content {
  position: relative;
  width: min(880px,92vw);
  padding: 70px 24px;
  margin-left: clamp(16px,6vw,90px);
}

.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  font-weight: 900;
  font-size: .78rem;
}

.hero .eyebrow {
  color: white;
  background: rgba(185,15,43,.95);
  display: inline-block;
  padding: 7px 11px;
  border-radius: 3px;
  letter-spacing: .1em;
}

.hero h1 {
  font-size: clamp(3rem,7vw,6rem);
  line-height: .95;
  margin: 18px 0;
  letter-spacing: -.055em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0,0,0,.42);
}

.lead {
  font-size: clamp(1.05rem,1.7vw,1.28rem);
  max-width: 760px;
  margin: 0 0 28px;
  color: #edf3f8;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 3px;
  padding: 13px 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid transparent;
  cursor: pointer;
}

.primary {
  background: var(--red);
  color: white;
}

.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.hero-buttons,
.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* CREDENTIAL BAR */

.credential-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--navy);
  color: white;
  text-align: center;
  border-top: 4px solid var(--red);
}

.credential-bar span {
  padding: 16px 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .8rem;
  border-right: 1px solid rgba(255,255,255,.12);
}

/* GENERAL SECTIONS */

.section {
  padding: 70px clamp(20px,5vw,76px);
}

.section h2 {
  font-size: clamp(2rem,3.8vw,3.1rem);
  line-height: 1.08;
  margin: 6px 0 0;
  letter-spacing: -.035em;
  font-weight: 900;
}

.section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.section-head.compact {
  margin-bottom: 24px;
}

.section-sub,
.about-copy {
  font-size: 1.1rem;
  color: var(--muted);
}

/* SERVICES */

.services {
  background: var(--cream);
}

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

.service-grid article {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,34,57,.07);
}

.service-grid img {
  height: 245px;
  width: 100%;
  object-fit: cover;
}

.service-grid h3 {
  font-size: 1.28rem;
  margin: 20px 20px 5px;
  color: var(--navy);
}

.service-grid p {
  margin: 0 20px 24px;
  color: var(--muted);
}

/* FEATURE */

.dark {
  background: var(--navy2);
  color: white;
}

.feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.feature p {
  color: #d7e1eb;
}

.feature-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-collage img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.feature-collage img:first-child {
  grid-row: span 2;
  height: 554px;
}

/* GALLERY */

.gallery-section {
  background: white;
}

.gallery-category {
  margin-top: 42px;
}

.gallery-category:first-of-type {
  margin-top: 18px;
}

.gallery-category h3 {
  font-size: 1.55rem;
  color: var(--navy);
  margin: 0 0 16px;
  border-left: 5px solid var(--red);
  padding-left: 14px;
}

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

.gallery figure {
  margin: 0;
  background: white;
  border: 1px solid #e2e6eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

.gallery img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.gallery figcaption {
  font-weight: 800;
  padding: 12px 14px;
  background: #fff;
  color: var(--navy);
  font-size: .95rem;
}

/* ABOUT */

.about {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  background: #f8f9fb;
}

.about-copy strong {
  color: var(--navy);
}

.about-dog {
  margin-top: 22px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.about-with-image {
  align-items: start;
}

.license-note {
  font-weight: 900;
  color: var(--navy) !important;
  background: var(--cream);
  padding: 12px 14px;
  border-left: 4px solid var(--red);
}

/* STANDARD */

.testimonials {
  background: #fff;
}

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

.testimonial-grid article {
  background: var(--cream);
  border-top: 5px solid var(--red);
  border-radius: 6px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.testimonial-grid h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.testimonial-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

/* CONTACT */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.quote-form {
  background: white;
  color: var(--text);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.dark-card {
  background: rgba(255,255,255,.07);
  color: white;
  border: 1px solid rgba(255,255,255,.14);
}

.dark-card p {
  color: #d7e1eb;
}

.quote-form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 800;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #cbd3dc;
  border-radius: 5px;
  padding: 12px;
  font: inherit;
  background: #fbfcfd;
}

/* SOCIAL MEDIA
   Desktop is deliberately a fixed 4-column grid.
   This prevents the buttons from stacking vertically on normal desktop widths.
*/

.social-follow {
  background: var(--cream);
  text-align: center;
  border-top: 1px solid rgba(10,34,57,.08);
}

.social-follow-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.social-follow h2 {
  color: var(--navy);
  margin: 6px 0 10px;
}

.social-follow-copy {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.social-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.social-btn {
  min-width: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--navy);
  border-radius: 7px;
  background: white;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: .01em;
  box-shadow: 0 8px 22px rgba(5,18,32,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(5,18,32,.14);
  background: var(--navy);
  color: white;
}

.social-btn img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  border-radius: 50%;
}

/* FOOTER */

footer {
  background: var(--navy2);
  color: white;
  text-align: center;
  padding: 36px 20px;
}

footer img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: white;
}

footer a {
  color: white;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .credential-bar {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy2);
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .nav.open {
    display: flex;
  }

  .feature,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-collage img:first-child {
    height: 360px;
    grid-row: auto;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero {
    min-height: 66vh;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .social-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand span {
    font-size: .85rem;
  }

  .service-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .credential-bar {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 18px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero {
    min-height: 68vh;
  }

  .gallery img {
    height: auto;
  }

  .site-header {
    padding: 10px 14px;
  }

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

@media (max-width: 480px) {
  .social-buttons {
    grid-template-columns: 1fr;
  }
}
