:root {
  --navy: #111b2b;
  --charcoal: #202329;
  --ink: #2f333b;
  --muted: #667085;
  --line: #e7e2d8;
  --gold: #c89b3c;
  --gold-dark: #9f7622;
  --cream: #faf8f3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 27, 43, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar a {
  color: #f4d899;
  font-weight: 700;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 260px;
}

.brand img {
  width: clamp(210px, 22vw, 300px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.brand-text {
  display: none;
  line-height: 1.12;
}

.brand-text strong {
  color: var(--navy);
  font-size: 18px;
}

.brand-text span {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
button:hover {
  transform: translateY(-1px);
}

.btn-primary,
button {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(200, 155, 60, 0.22);
}

.btn-primary:hover,
button:hover {
  background: #d8ad50;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 27, 43, 0.94), rgba(17, 27, 43, 0.72), rgba(17, 27, 43, 0.42)),
    url("images/hero-renovation-placeholder.jpg") center / cover no-repeat,
    var(--navy);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(310px, 390px);
  align-items: center;
  gap: 54px;
  padding: 68px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f1d89f;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 70px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  color: #f2f4f7;
  font-size: 19px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-points span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.quote-panel {
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.quote-panel h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.quote-panel p {
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8d2c5;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(200, 155, 60, 0.2);
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--cream);
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark p,
.section.dark li {
  color: #d9dee8;
}

.section-intro {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-intro p {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.trust-card,
.testimonial-card,
.area-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.service-card {
  min-height: 210px;
}

.service-card p,
.trust-card p,
.testimonial-card p,
.process-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-icon,
.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--navy);
  background: #f1d89f;
  font-weight: 900;
}

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

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
  box-shadow: 0 10px 28px rgba(17, 27, 43, 0.06);
}

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

.gallery-image {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(17, 27, 43, 0.1), rgba(200, 155, 60, 0.16)),
    var(--gallery-image, url("images/Laundry-before.jpg")) center / cover no-repeat,
    #d9d4cb;
}

.gallery-image.after {
  background:
    linear-gradient(135deg, rgba(17, 27, 43, 0.06), rgba(200, 155, 60, 0.1)),
    var(--gallery-image, url("images/Laundry-after.jpg")) center / cover no-repeat,
    #ede6d9;
}

.project-meta {
  padding: 16px 6px 4px;
}

.project-meta h3 {
  margin-bottom: 4px;
}

.project-meta p {
  color: var(--muted);
  margin-bottom: 0;
}

.label {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.areas span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--white);
  font-weight: 800;
}

.trust-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.trust-card p {
  color: #d9dee8;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(17, 27, 43, 0.96), rgba(17, 27, 43, 0.84)),
    url("images/quote-background-placeholder.jpg") center / cover no-repeat,
    var(--navy);
}

.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 44px;
  align-items: center;
}

.quote-copy h2,
.quote-copy h3 {
  color: var(--white);
}

.quote-copy p,
.quote-copy li {
  color: #e5e9f0;
}

.quote-copy ul {
  padding-left: 20px;
}

.site-footer {
  color: #d9dee8;
  background: #0c1421;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-grid h3 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  color: #aeb7c6;
  font-size: 14px;
}

.reveal {
  animation: fadeUp 700ms ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-inner,
  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-points,
  .grid-3,
  .grid-5,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar-inner,
  .footer-bottom {
    flex-direction: column;
  }

  .topbar-inner {
    gap: 4px;
  }

  .nav-links {
    gap: 12px;
    font-size: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(250px, 78vw);
    max-height: 62px;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(17, 27, 43, 0.94), rgba(17, 27, 43, 0.78)),
      url("images/hero-renovation-placeholder.jpg") center / cover no-repeat,
      var(--navy);
  }

  .hero-inner {
    padding: 48px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-points,
  .grid-2,
  .grid-3,
  .grid-5,
  .gallery-grid,
  .gallery-pair,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .quote-panel {
    padding: 20px;
  }
}
