:root {
  --navy: #0f1c28;
  --slate: #435466;
  --bronze: #a47c4f;
  --cream: #f4ede5;
  --stone: #8c887f;
  --white: #ffffff;
  --line: rgba(15, 28, 40, .15);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.65;
}

img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f4ede5;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 28, 40, .10);
}

.header-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 235px; height: auto; mix-blend-mode: normal; }

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

nav a {
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--slate);
}

nav a:hover, nav a[aria-current="page"] { color: var(--bronze); }

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(15, 28, 40, .30) 0%, rgba(15, 28, 40, .48) 48%, rgba(15, 28, 40, .84) 100%),
    url("images/hero-shower-dark.jpg") center/cover;
  color: var(--white);
}

.hero-content { padding: 130px 0 82px; max-width: 820px; }

.eyebrow {
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--bronze);
}

.hero .eyebrow { color: #d2ad7d; }

.hero h1, .page-hero h1 {
  margin: 14px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

.hero p, .page-hero p {
  max-width: 700px;
  font-size: clamp(1.05rem, 2.8vw, 1.32rem);
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.button-primary { background: var(--bronze); color: var(--white); }
.button-primary:hover { background: #8e683f; }
.button-secondary { border-color: rgba(255,255,255,.7); color: var(--white); }

.section { padding: 88px 0; }
.section-white { background: var(--white); }

.section-heading { max-width: 780px; margin-bottom: 42px; }

.section-heading h2, .contact-panel h2, .service h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.section-heading h2 {
  margin: 9px 0 15px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.section-heading p, .card p, .page-hero p { color: var(--slate); }

.grid-2, .grid-3 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.card-copy { padding: 25px; }

.card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.card p { margin: 0; }
.card img { aspect-ratio: 4 / 3; background: #dfe6e8; }

.feature {
  min-height: 440px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(15, 28, 40, .84));
}

.feature > * { position: relative; z-index: 1; }

.feature h3 {
  margin: 7px 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.page-hero {
  padding: 108px 0 78px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { max-width: 900px; color: var(--navy); }

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}

.service {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service h2 { margin-top: 0; }

.gallery { columns: 3 260px; column-gap: 18px; }
.gallery figure { margin: 0 0 18px; break-inside: avoid; }
.gallery img { min-height: 220px; background: #dfe6e8; }

.note {
  padding: 22px 24px;
  border-left: 4px solid var(--bronze);
  background: var(--white);
}

.contact-panel {
  padding: 40px;
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--bronze);
}

.contact-panel p { color: #d5dbe0; }
.contact-list { display: grid; gap: 10px; margin-top: 22px; }
.contact-list a { color: var(--white); }

.brand-strip {
  padding: 38px 0;
  background: var(--navy);
  color: var(--white);
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 42px;
}

.brand-strip img { mix-blend-mode: screen; }
.brand-strip p { margin: 0; color: #d5dbe0; max-width: 680px; }

.site-footer {
  padding: 34px 0;
  background: #0a141d;
  color: #c7cdd2;
  font-size: .88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

@media (max-width: 760px) {
  .container.header-inner {
    width: 100%;
    max-width: none;
    padding: 14px 18px 18px;
  }

  .header-inner {
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .site-header .brand {
    width: 100%;
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
  }

  .site-header .brand img {
    width: 100% !important;
    max-width: 390px !important;
    height: auto !important;
    object-fit: contain;
    mix-blend-mode: normal;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 10px 18px;
  }

  nav a {
    font-size: .78rem;
    letter-spacing: .10em;
  }

  .grid-2, .grid-3, .services, .brand-strip-inner {
    grid-template-columns: 1fr;
  }

  .brand-strip img {
    width: 220px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: 72vh;
  }
}



/* Shadow only the two homepage labels over feature images */
.feature .eyebrow {
  color: #e1bc88;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .72);
}
