:root {
  --ink: #173f57;
  --ink-2: #235a76;
  --gold: #eba21a;
  --line: #d9e1e5;
  --muted: #5d6d76;
  --soft: #f4f7f8;
  --paper: #ffffff;
  --green: #52745a;
  --dark: #0f2735;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 240px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #254657;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--gold);
  font-weight: 700;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #142e3c;
}

.hero {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  background: #132d3e center/cover no-repeat;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 43, 0.82), rgba(10, 31, 43, 0.28));
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  font-size: 56px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 660px;
  margin-top: 18px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

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

.section {
  padding: 74px 0;
}

.section.soft {
  background: var(--soft);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card,
.info-card,
.quote-panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  min-width: 0;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card img.contain-photo {
  height: 360px;
  object-fit: contain;
  background: #eef4f6;
}

.backyard-reference-grid .product-card img {
  height: 420px;
  object-fit: contain;
  background: #eef4f6;
}

.interior-grid .product-card img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.interior-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.interior-grid .product-card .pad {
  padding: 18px;
}

.interior-grid .product-card h3 {
  font-size: 18px;
}

.product-card .pad,
.info-card,
.quote-panel,
.faq-item {
  padding: 24px;
}

.product-card p,
.info-card p,
.faq-item p,
.muted {
  color: var(--muted);
}

.tag-row,
.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag,
.spec {
  border: 1px solid #cbd8dd;
  border-radius: 999px;
  padding: 6px 10px;
  color: #314e5d;
  background: #fff;
  font-size: 13px;
  white-space: normal;
}

.price-anchor {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: #fff9ea;
  padding: 24px;
}

.price-label {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-main {
  color: var(--dark);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.price-note {
  margin-top: 8px;
  color: #4e5f68;
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 42px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.split img.wide-photo {
  aspect-ratio: 16 / 9;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 15px;
}

.table th,
.table td {
  text-align: left;
  padding: 13px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.table th {
  background: #eef4f6;
  color: var(--ink);
}

.banner {
  background: var(--dark);
  color: #fff;
  padding: 42px 0;
}

.banner .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

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

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

label {
  display: block;
  margin-bottom: 6px;
  color: #244353;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7d3d9;
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

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

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

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
}

.check input {
  width: 16px;
  min-height: 16px;
}

.site-footer {
  padding: 42px 0;
  background: #edf3f5;
  color: #38505c;
}

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

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.page-hero {
  padding: 86px 0;
  background: var(--soft);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  align-items: center;
}

.page-hero .wrap > *,
.price-box > * {
  min-width: 0;
}

.page-hero img {
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow: visible;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 4px;
  }

  .brand img {
    width: 210px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    min-height: 560px;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .split,
  .page-hero .wrap,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .banner .wrap,
  .price-box {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 17px;
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 54px 0;
  }

  .hero-inner {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
    padding: 70px 0 48px;
  }

  .hero h1,
  .hero-copy {
    max-width: 100%;
  }

  .button,
  button.button {
    width: 100%;
  }

  .nav-links .button {
    width: auto;
    min-height: 38px;
    padding: 8px 12px;
  }

  .nav-links {
    width: auto;
    flex: 1 1 auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    font-size: 12px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 6px 0;
  }

  .nav-links .button {
    min-width: max-content;
    min-height: 34px;
    padding: 7px 10px;
  }

  .page-hero p {
    font-size: 16px;
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .section-head p {
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .page-hero .wrap,
  .wrap {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .whatsapp-float {
    width: auto;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .tag,
  .spec {
    max-width: 100%;
    border-radius: 6px;
  }

  .price-main {
    font-size: 24px;
    word-break: break-word;
  }

  .price-box {
    padding: 20px;
  }

  .interior-grid {
    grid-template-columns: 1fr;
  }
}
