:root {
  --ink: #171111;
  --ink-soft: #2a2221;
  --paper: #fbf8f0;
  --white: #ffffff;
  --gold: #c88a00;
  --gold-dark: #9f6e00;
  --water: #06a7bd;
  --water-dark: #087988;
  --muted: #6b625d;
  --line: rgba(23, 17, 17, 0.14);
  --shadow: 0 22px 60px rgba(23, 17, 17, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(6,167,189,0.09), transparent 30rem),
    radial-gradient(circle at 6% 16%, rgba(200,138,0,0.08), transparent 24rem),
    var(--paper);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(23, 17, 17, 0.94);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 190px;
  max-height: 68px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  font-weight: 700;
  font-size: 0.92rem;
}

nav a { opacity: 0.86; }
nav a:hover { opacity: 1; color: var(--water); }
.nav-cta {
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  color: var(--white);
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--water-dark);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4rem, 9vw, 7.2rem);
  letter-spacing: -0.035em;
}

h1 span {
  color: var(--gold);
}

h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 2rem;
  letter-spacing: -0.01em;
}

.lede {
  max-width: 640px;
  margin: 1.25rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink-soft);
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.primary {
  background: var(--water);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(6,167,189,0.26);
}
.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}
.secondary.dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }

.hero-card {
  background: var(--ink);
  border-radius: 32px;
  padding: 1rem;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card img {
  width: 100%;
  height: clamp(300px, 41vw, 470px);
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 24px;
}

.quick-info {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0.7rem 0.35rem;
  color: var(--white);
}
.quick-info strong { font-size: 1.1rem; }
.quick-info span { color: rgba(255,255,255,0.72); }

.services, .about, .projects, .testimonial, .cta, .feature, .water-feature { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-heading { max-width: 840px; margin-bottom: 2rem; }
.section-heading.compact { max-width: 760px; }

.service-grid, .project-grid {
  display: grid;
  gap: 1rem;
}
.service-grid.three { grid-template-columns: repeat(3, 1fr); }

.service-card, .project-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: 0 16px 34px rgba(23,17,17,0.08);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  margin-bottom: 1.15rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.service-card.wood .icon { background: var(--gold); }
.service-card.water .icon { background: var(--water); }
.service-card.repair .icon { background: var(--ink); }
.service-card p { color: var(--muted); }
ul { margin: 1.2rem 0 0; padding-left: 1.1rem; }
li { margin: 0.4rem 0; }

.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.feature-image,
.water-photo,
.portrait-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}
.feature-image img {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
  object-position: 49% 50%;
}
.feature-copy {
  padding: clamp(1rem, 2vw, 2rem);
}
.feature-copy p:not(.eyebrow),
.water-copy p,
.about-copy p:not(.eyebrow) {
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--water-dark);
  font-weight: 900;
  border-bottom: 3px solid rgba(6,167,189,0.28);
}

.about {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.portrait-card img {
  width: 100%;
  height: clamp(380px, 44vw, 560px);
  object-fit: cover;
  object-position: 62% 38%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}
.trust-strip span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(6,167,189,0.12);
  color: var(--water-dark);
  font-weight: 800;
}

.water-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.water-feature .eyebrow { color: var(--gold-dark); }
.water-photo img {
  width: 100%;
  height: clamp(360px, 45vw, 560px);
  object-fit: cover;
  object-position: 50% 44%;
}
.check-list {
  list-style: none;
  padding-left: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--water-dark);
  font-weight: 900;
}

.project-grid {
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
}
.project-card { padding: 0.75rem; overflow: hidden; }
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
}
.project-card.large-card img { height: 370px; }
.project-card h3, .project-card p { padding: 0 0.65rem; }
.project-card h3 { margin-top: 1rem; font-size: 1.7rem; }
.project-card p { color: var(--muted); }
.project-card:nth-child(3) img { object-position: 50% 25%; }

.testimonial {
  text-align: center;
  max-width: 940px;
}
.testimonial blockquote {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.testimonial p { color: var(--muted); }

.cta {
  width: min(1120px, calc(100% - 2rem));
  margin-bottom: 2rem;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(6,167,189,0.16), transparent 45%),
    var(--ink);
  color: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.cta .eyebrow { color: var(--water); }
.cta h2 { max-width: 780px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.92rem;
}
.site-footer a { color: var(--water); font-weight: 800; }

@media (max-width: 980px) {
  .service-grid.three,
  .project-grid { grid-template-columns: 1fr; }
  .project-card.large-card img,
  .project-card img { height: 320px; }
}

@media (max-width: 820px) {
  .site-header { position: static; align-items: flex-start; }
  nav { display: none; }
  .brand img { width: 160px; }
  .hero, .about, .feature, .water-feature { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.6rem); }
  .hero-card img,
  .feature-image img,
  .water-photo img,
  .portrait-card img { height: 360px; }
  .feature-copy { padding: 0; }
}

@media (max-width: 520px) {
  .section-shell { width: min(100% - 1rem, 1120px); }
  .site-header { padding: 0.75rem 1rem; }
  .hero { padding-top: 2.75rem; }
  .button { width: 100%; }
  .hero-card,
  .feature-image,
  .water-photo,
  .portrait-card,
  .cta { border-radius: 24px; }
  .hero-card img,
  .feature-image img,
  .water-photo img,
  .portrait-card img,
  .project-card img,
  .project-card.large-card img { height: 300px; }
  .portrait-card img { object-position: 64% 35%; }
}
