@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --paper: #f5f3ee;
  --ink: #181818;
  --muted: #6f6b63;
  --blue: #157cb4;
  --charcoal: #151815;
  --gold: #b9a47a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper) url("assets/paper_texture.jpg") center / cover fixed;
  font-family: Inter, system-ui, sans-serif;
}

.page {
  overflow-x: clip;
  overflow-y: visible;
  min-height: 100vh;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(24px, 5vw, 76px) 0;
}

.header-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: 100%;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.logo {
  width: clamp(150px, 19vw, 245px);
  height: auto;
}

.logo-meta {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}

.logo-location {
  font-weight: 600;
  color: var(--ink);
}

.logo-meta-sep {
  color: var(--muted);
}

.logo-established {
  font-weight: 500;
  color: var(--muted);
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 0;
  max-width: min(720px, 72vw);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: none;
}

.header-contact .contact-link:not(:last-child)::after {
  content: "|";
  margin: 0 clamp(10px, 2vw, 18px);
  color: rgba(24, 24, 24, 0.28);
  font-weight: 300;
}

.header-contact a {
  color: var(--ink);
  text-decoration: none;
}

.header-contact a:hover {
  color: var(--blue);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.contact-details .contact-phone-row {
  justify-content: flex-end;
}

.contact-icon {
  flex-shrink: 0;
  font-size: 1.05em;
  line-height: 1;
}

.contact-icon-svg {
  display: block;
  width: 14px;
  height: 14px;
}

nav {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 3vw, 48px);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
}

nav a {
  color: var(--ink);
  text-decoration: none;
}

nav > a:not(.nav-button) {
  padding-top: 17px;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--ink);
  padding: 17px 25px;
  padding-left: calc(25px + 0.14em);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 72px clamp(24px, 5vw, 76px) 10px;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 15px;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: .98;
  font-size: clamp(52px, 8vw, 108px);
}

.rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 42px 0 28px;
  background: var(--blue);
}

.intro {
  max-width: 380px;
  color: #2f2f2f;
  font-size: 20px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 27px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
}

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 720px;
}

.brush {
  position: absolute;
  pointer-events: none;
  opacity: .72;
  mix-blend-mode: multiply;
  z-index: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-composite: intersect;
}

.brush-one {
  width: 115%;
  left: -14%;
  top: 3%;
  transform: rotate(-12deg);
}

.hero-photo {
  position: absolute;
  right: 1%;
  top: 0;
  width: min(640px, 86%);
  height: 720px;
  margin: 0;
  transform: rotate(-1.5deg);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage {
  position: relative;
  min-height: 980px;
  padding: 10px clamp(24px, 5vw, 76px) 70px;
}

.brush-two {
  width: 760px;
  left: -110px;
  top: 20%;
  transform: rotate(24deg);
}

.brush-three {
  width: 620px;
  right: -80px;
  top: 55%;
  transform: rotate(-16deg);
}

.photo-card {
  position: absolute;
  margin: 0;
  background: white;
  padding: 13px;
  box-shadow: 0 22px 50px rgba(0,0,0,.16);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radiator {
  left: 5%;
  top: 5%;
  width: 36vw;
  max-width: 520px;
  min-width: 310px;
  height: 300px;
  transform: rotate(-1.5deg);
}

.stone {
  left: 18%;
  top: 250px;
  width: 27vw;
  max-width: 390px;
  min-width: 250px;
  height: 300px;
  transform: rotate(1deg);
  z-index: 2;
}

.sinks {
  right: 4%;
  top: 95px;
  width: 47vw;
  max-width: 710px;
  min-width: 380px;
  height: 500px;
  transform: rotate(2deg);
}

.greenwhite {
  left: 32%;
  top: 480px;
  width: 32vw;
  max-width: 440px;
  min-width: 280px;
  height: 340px;
  transform: rotate(-2.5deg);
  z-index: 3;
}

.badge {
  position: absolute;
  left: 43%;
  top: 165px;
  z-index: 5;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: white;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.7;
}

.badge span {
  position: relative;
  max-width: 88px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--charcoal);
  color: white;
  padding: 58px clamp(24px, 9vw, 140px);
}

.services article {
  text-align: center;
  border-right: 1px solid rgba(185,164,122,.28);
}

.services article:last-child {
  border-right: 0;
}

.icon {
  color: var(--gold);
  font-size: 38px;
  margin-bottom: 22px;
}

.services h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.5;
  font-weight: 500;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(24px, 5vw, 76px);
  background: #0f110f;
  color: white;
}

.contact p { margin: 0; }
.contact a { color: white; text-decoration: none; }
.contact .contact-link:hover { text-decoration: underline; }

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
  }

  .header-nav {
    align-items: center;
  }

  .header-contact {
    display: none;
  }

  nav > a:not(.nav-button) {
    display: none;
  }

  .nav-button {
    white-space: nowrap;
    line-height: 1;
    padding: 14px 18px;
    padding-left: calc(18px + 0.14em);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 0;
  }

  .hero-art {
    min-height: 0;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .hero-photo img {
    height: auto;
  }

  .collage {
    display: grid;
    gap: 20px;
    min-height: auto;
    padding: 20px clamp(24px, 5vw, 76px) 70px;
  }

  .photo-card:not(.hero-photo),
  .radiator,
  .stone,
  .sinks,
  .greenwhite {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    transform: none;
  }

  .photo-card:not(.hero-photo) img {
    height: auto;
  }

  .badge {
    display: none;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services article {
    border-right: 0;
    border-bottom: 1px solid rgba(185,164,122,.28);
    padding-bottom: 32px;
  }

  .services article:last-child {
    border-bottom: 0;
  }
}
