@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,700&display=swap");

:root {
  --navy: #123f68;
  --blue: #356da4;
  --water: #0f9bd7;
  --sky: #dff3fb;
  --sun: #ffbd1a;
  --sand: #fff7df;
  --orange: #f68b1f;
  --ink: #153047;
  --muted: #607182;
  --white: #fff;
  --line: #cbdde8;
  --shadow: 0 18px 45px rgba(18, 63, 104, 0.13);
  --radius: 1.1rem;
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fcfe;
  color: var(--ink);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.utility-bar {
  background: var(--navy);
  color: #d9ecf7;
  font-size: 0.85rem;
}

.utility-bar__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
}

.utility-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--ink);
  background: url("assets/optimized/hero-shower.webp") center 52% / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -82px;
  left: -5%;
  height: 130px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #f8fcfe;
  content: "";
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(18, 63, 104, 0.12);
  backdrop-filter: blur(10px);
}

.logo-link {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  border-radius: 999px;
  text-decoration: none;
}

.logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.logo-license {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav__links a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav__links a:not(.nav__cta):hover {
  color: var(--water);
}

.nav__links .nav__cta {
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
}

.nav__links .nav__cta:hover {
  background: var(--navy);
  color: var(--white);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 590px;
  align-items: center;
  justify-content: center;
  padding-bottom: 5rem;
}

.hero__text {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #92dcfa;
}

.hero .eyebrow--light {
  color: #8a4f00;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.4rem);
  text-shadow: 0 3px 10px #000;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.5vw, 3.65rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.25;
}

.hero__subhead {
  max-width: 650px;
  margin: 0 auto 1.75rem;
  color: var(--white);
  font-size: 1.18rem;
  text-shadow: 0 2px 7px #000;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.45rem;
  border: 0;
  border-radius: 0.55rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(7, 37, 61, 0.22);
}

.btn--sun {
  min-width: min(430px, 100%);
  min-height: 76px;
  border: 4px solid var(--white);
  background: var(--sun);
  color: #332600;
  font-size: 1.35rem;
  box-shadow: 0 14px 32px rgba(76, 52, 0, 0.3);
}

.btn--sun:hover {
  background: #ffd250;
  box-shadow: 0 18px 38px rgba(76, 52, 0, 0.4);
}

.btn--glass {
  min-width: 230px;
  border: 2px solid var(--navy);
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  backdrop-filter: blur(8px);
}

.btn--blue {
  width: 100%;
  background: var(--blue);
  color: var(--white);
}

.section {
  padding: 6rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.15rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid #d9e7ee;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(18, 63, 104, 0.07);
}

.service-card--offset {
  transform: translateY(1.7rem);
}

.service-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  padding: 1.35rem;
}

.service-card__body > p {
  min-height: 5.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.work {
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.section-heading--light h2,
.section-heading--light > p {
  color: var(--white);
}

.section-heading--light > p {
  color: #c5dce9;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
  gap: 1rem;
}

.work-card {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.75rem;
  background: #0d304f;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.work-card:hover img {
  transform: scale(1.025);
}

.work-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(4, 26, 43, 0.88));
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.about {
  background: var(--sand);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: stretch;
}

.about__story > p:not(.eyebrow, .placeholder-kicker) {
  max-width: 660px;
  color: #586b78;
}

.placeholder-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid #d7871e;
  border-radius: 0.25rem;
  color: #925813;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 2rem;
}

.about__facts div {
  padding-top: 0.9rem;
  border-top: 3px solid var(--water);
}

.about__facts strong,
.about__facts span {
  display: block;
}

.about__facts strong {
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
}

.about__facts span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.team-placeholder {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  border: 2px dashed #7b9aae;
  border-radius: 52% 48% 15% 15% / 15% 15% 8% 8%;
  background:
    linear-gradient(rgba(18, 63, 104, 0.06), rgba(18, 63, 104, 0.12)),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(53, 109, 164, 0.06) 20px 40px);
}

.team-placeholder > span {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--sun);
  color: #4a3500;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-placeholder p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-area {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem 3rem;
  align-items: center;
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e4d7ae;
}

.service-area h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.area-tags span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(18, 63, 104, 0.08);
}

.area-tags .is-placeholder {
  border: 1px dashed #ba7a20;
  background: #fffaf0;
  color: #966117;
}

.service-area small {
  grid-column: 2;
  margin-top: -1.4rem;
  color: #966117;
}

.reviews {
  background: #f8fcfe;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.review-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  margin: 0;
  padding: 1.3rem;
  border: 1px solid #d9e7ee;
  border-radius: 0.4rem 1.8rem 0.4rem 0.4rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-card::before {
  color: var(--water);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  content: "“";
}

.review-card--sun {
  background: var(--sand);
}

.review-card > p {
  color: #536878;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
}

.contact-section {
  position: relative;
  background:
    linear-gradient(110deg, rgba(18, 63, 104, 0.98), rgba(16, 91, 139, 0.92)),
    url("assets/optimized/contact-bath.webp") center / cover;
  color: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
}

.contact h2 {
  color: var(--white);
}

.contact__copy > p:not(.eyebrow, .contact__hours) {
  max-width: 590px;
  color: #d3e7f2;
}

.phone-link,
.email-link {
  display: block;
  width: fit-content;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.phone-link {
  margin: 1.7rem 0 0.35rem;
  color: #ffe168;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
}

.email-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact__hours {
  margin-top: 1.6rem;
  color: #d3e7f2;
  font-size: 0.9rem;
}

.contact__card {
  padding: 2rem;
  border-top: 7px solid var(--sun);
  border-radius: 0.25rem 0.25rem 1.5rem 0.25rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 25px 60px rgba(4, 29, 47, 0.3);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bcd0dc;
  border-radius: 0.35rem;
  background: #fafdff;
  padding: 0.75rem;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--water);
  outline: 3px solid rgba(15, 155, 215, 0.15);
}

.form-note {
  color: #94601d;
  font-size: 0.7rem;
  text-align: center;
}

.content-checklist {
  padding: 2.5rem 0;
  border-block: 1px solid #efd48f;
  background: #fff6d7;
}

.content-checklist__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.content-checklist h2 {
  margin: 0;
  font-size: 2rem;
}

.content-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  margin: 0;
  padding-left: 1.2rem;
  color: #624d26;
  font-size: 0.85rem;
}

.footer {
  padding: 2.2rem 0;
  background: #0a2e4b;
  color: #c5d8e4;
  font-size: 0.8rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer img {
  width: 150px;
}

.footer p {
  margin: 0.2rem 0;
}

.footer a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.footer__placeholder {
  color: #ffd45a;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
  }

  .nav__links {
    max-width: 500px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem 1rem;
  }

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

  .service-card--offset {
    transform: none;
  }

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

  .about__grid,
  .contact {
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .utility-bar__content {
    font-size: 0.76rem;
  }

  .hero {
    min-height: 760px;
    background: url("assets/optimized/hero-shower.webp") 60% center / cover no-repeat;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .logo {
    width: 155px;
  }

  .nav__links {
    justify-content: center;
  }

  .nav__links a {
    font-size: 0.8rem;
  }

  .hero__content {
    min-height: 525px;
    text-align: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading,
  .about__grid,
  .service-area,
  .contact,
  .content-checklist__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-area small {
    grid-column: 1;
    margin-top: -0.8rem;
  }

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

  .review-card {
    min-height: 250px;
  }


  .contact {
    gap: 3rem;
  }

  .content-checklist ul {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 130px 1fr;
  }

  .footer__content > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 1.5rem, 1160px);
  }

  .utility-bar__content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero {
    min-height: 820px;
  }

  .nav__links a:not(.nav__cta) {
    display: none;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero__cta .btn {
    width: 100%;
  }

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

  .service-card__body > p {
    min-height: auto;
  }

  .work-card,
  .work-card img {
    min-height: 330px;
  }

  .team-placeholder {
    min-height: 360px;
  }

  .phone-link {
    font-size: 2.25rem;
  }

  .email-link {
    overflow-wrap: anywhere;
  }

  .contact__card {
    padding: 1.3rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer img {
    margin-inline: auto;
  }

  .footer__content > div:last-child {
    grid-column: 1;
  }
}
