:root {
  --navy: #0F2A44;
  --navy-dark: #0F2A44;
  --gold: #C8994B;
  --gold-deep: #9b7625;
  --ink: #17202a;
  --muted: #65707a;
  --paper: #f4efe6;
  --cream: #fffaf0;
  --stone: #ded5c6;
  --white: #fffdf8;
  --sage: #6f7a70;
  --shadow: 0 28px 70px rgba(31, 36, 42, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 161, 74, 0.12), transparent 34rem),
    var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 46px);
  color: var(--navy-dark);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(15, 42, 68, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(15, 42, 68, 0.12));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: rgba(15, 42, 68, 0.64);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.92rem;
}

.site-nav a,
.header-call,
.text-link {
  text-decoration: none;
}

.site-nav a {
  color: rgba(15, 42, 68, 0.78);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy-dark);
}

.header-call {
  justify-self: end;
  padding: 11px 16px;
  color: var(--cream);
  background: var(--gold);
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(155, 118, 37, 0.18);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(15, 42, 68, 0.22);
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-dark);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 34px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 42px);
  min-height: calc(100vh - 74px);
  max-width: none;
  padding-top: 74px;
  padding-bottom: 48px;
  text-align: center;
  color: var(--navy-dark);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.96) 0%, rgba(244, 239, 230, 0.95) 54%, rgba(222, 213, 198, 0.82) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0) 0%, rgba(255, 250, 240, 0.7) 56%, rgba(255, 250, 240, 0.94) 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(200, 161, 74, 0.15) 58% 58.4%, transparent 58.4%);
}

.hero-media,
.hero-content,
.hero-strip {
  position: relative;
  z-index: 1;
}

.hero-media {
  order: 3;
  justify-self: center;
  width: min(340px, 62vw);
  padding: clamp(8px, 2vw, 18px);
  filter: drop-shadow(0 28px 42px rgba(15, 42, 68, 0.16));
}

.hero-media img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.hero-content {
  order: 1;
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--navy-dark);
  font-size: 1.2rem;
}

.brand-emphasis {
  color: #C8994B;
  font-weight: 900;
}

.hero-copy {
  max-width: 590px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: rgba(23, 32, 42, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--cream);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(155, 118, 37, 0.2);
}

.button.ghost {
  color: var(--navy-dark);
  background: rgba(255, 253, 248, 0.46);
  border-color: rgba(15, 42, 68, 0.28);
}

.hero-strip {
  order: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(var(--max), calc(100vw - 36px));
  margin: 22px auto 0;
  border-top: 1px solid rgba(15, 42, 68, 0.12);
  border-bottom: 1px solid rgba(15, 42, 68, 0.12);
}

.hero-strip span {
  display: grid;
  min-height: 58px;
  place-items: center;
  color: rgba(15, 42, 68, 0.66);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(15, 42, 68, 0.12);
}

.hero-strip span:last-child {
  border-right: 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro > p,
.about-copy p,
.review-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.promise {
  max-width: none;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(15, 42, 68, 0.98), rgba(15, 42, 68, 0.94));
}

.promise .section-heading,
.promise-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.promise h2,
.promise h3 {
  color: var(--cream);
}

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

.promise-card {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
}

.promise-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.promise-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.76);
}

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

.service-card {
  min-height: 248px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--stone);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(31, 36, 42, 0.055);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, transparent 0 46%, var(--gold) 46% 54%, transparent 54%),
    linear-gradient(90deg, var(--navy) 0 48%, var(--sage) 48%);
  border-radius: 50%;
}

.accent-card {
  color: var(--cream);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-color: rgba(15, 42, 68, 0.08);
}

.accent-card h3,
.accent-card p {
  color: var(--cream);
}

.gallery {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(244, 239, 230, 0.94));
}

.gallery .section-heading,
.gallery-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.project-tile {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--stone);
  border-radius: 8px;
}

.project-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--stone);
}

.project-visual.has-photo {
  min-height: 0;
  background: var(--white);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 3px;
}

.project-visual.has-photo::before,
.project-visual.has-photo::after {
  display: none;
}

.project-photo {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.project-photo-pair {
  display: grid;
  gap: 1px;
}

.tile-kitchen .project-visual {
  background: linear-gradient(135deg, #efe6d8, #cfc4b2);
}

.tile-kitchen .project-visual::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.75) 0 24%, transparent 24% 28%, rgba(255, 253, 248, 0.75) 28% 52%, transparent 52% 56%, rgba(255, 253, 248, 0.75) 56% 80%, transparent 80%),
    linear-gradient(#bfa56e 0 40%, rgba(15, 42, 68, 0.22) 40% 43%, rgba(255, 253, 248, 0.75) 43%);
}

.tile-kitchen .project-visual::after {
  inset: auto 36px 34px;
  height: 64px;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.82) 0 34%, #C8994B 34% 38%, rgba(255, 253, 248, 0.82) 38%);
}

.tile-bath .project-visual {
  background: linear-gradient(135deg, #d9ded8, #f7f0e4);
}

.tile-bath .project-visual::before {
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(15, 42, 68, 0.4) 54% 58%, transparent 58%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.8), rgba(255, 253, 248, 0.42));
}

.tile-bath .project-visual::after {
  inset: auto 46px 42px;
  height: 86px;
  background: linear-gradient(90deg, #0F2A44 0 38%, rgba(255, 253, 248, 0.92) 38% 64%, #C8994B 64%);
}

.tile-addition .project-visual {
  background: linear-gradient(135deg, #b9c0b5, #f6efe4);
}

.tile-addition .project-visual::before {
  clip-path: polygon(50% 0, 100% 35%, 92% 35%, 92% 95%, 8% 95%, 8% 35%, 0 35%);
  background: linear-gradient(135deg, rgba(15, 42, 68, 0.88) 0 46%, var(--gold) 46% 54%, rgba(255, 253, 248, 0.78) 54%);
}

.tile-addition .project-visual::after {
  inset: auto 52px 52px auto;
  width: 74px;
  height: 92px;
  background: rgba(111, 122, 112, 0.8);
}

.tile-custom .project-visual {
  background: linear-gradient(135deg, #d8cbb8, #f7f1e8);
}

.tile-custom .project-visual::before {
  background:
    linear-gradient(90deg, rgba(15, 42, 68, 0.88) 0 22%, transparent 22% 30%, rgba(200, 153, 75, 0.86) 30% 54%, transparent 54% 62%, rgba(15, 42, 68, 0.72) 62%),
    linear-gradient(180deg, transparent 0 54%, rgba(255, 253, 248, 0.76) 54%);
}

.tile-custom .project-visual::after {
  inset: auto 38px 42px;
  height: 72px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.9) 0 28%, rgba(15, 42, 68, 0.82) 28% 32%, rgba(255, 253, 248, 0.9) 32% 64%, rgba(200, 153, 75, 0.84) 64% 68%, rgba(255, 253, 248, 0.9) 68%);
}

.project-tile figcaption {
  padding: 18px;
}

.project-tile strong,
.project-tile span {
  display: block;
}

.project-tile span {
  color: var(--muted);
  font-size: 0.94rem;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.about-logo {
  padding: 8px;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 26px 38px rgba(15, 42, 68, 0.14));
}

.reviews {
  max-width: none;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(15, 42, 68, 0.98), rgba(15, 42, 68, 0.96));
}

.reviews .section-heading,
.review-panel {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.reviews h2 {
  color: var(--cream);
}

.review-panel {
  padding: clamp(24px, 4vw, 38px);
  color: var(--cream);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
}

.review-panel p {
  max-width: 780px;
  color: rgba(255, 250, 240, 0.78);
}

.text-link {
  color: var(--gold);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--stone);
  border-radius: 8px;
}

summary {
  padding: 20px 22px;
  color: var(--navy-dark);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  color: var(--navy-dark);
  font-size: 1.12rem;
  font-weight: 850;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--stone);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(31, 36, 42, 0.055);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbf8f0;
  border: 1px solid #cfc8ba;
  border-radius: 4px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.header-call:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(200, 161, 74, 0.52);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 28px 18px;
  color: rgba(255, 250, 240, 0.78);
  background: var(--navy-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.form-response {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 34px 18px;
  color: var(--navy-dark);
  background:
    radial-gradient(circle at top left, rgba(200, 161, 74, 0.14), transparent 34rem),
    var(--paper);
}

.form-response section {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--stone);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-response h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.form-response p:not(.eyebrow) {
  max-width: 560px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.response-mark {
  width: 84px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 18px rgba(15, 42, 68, 0.12));
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .nav-toggle[aria-expanded="true"] + .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
    width: 100%;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1),
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2),
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3),
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.nav-open .site-nav a,
  .nav-toggle[aria-expanded="true"] + .site-nav a {
    padding: 13px 0;
    border-top: 1px solid rgba(15, 42, 68, 0.12);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: 3;
    justify-self: center;
    width: min(320px, 72vw);
  }

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

@media (max-width: 680px) {
  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-media {
    width: min(270px, 100%);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 42, 68, 0.12);
  }

  .hero-strip span:last-child {
    border-bottom: 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1rem;
  }
}
