:root {
  --ink: #171717;
  --muted: #676d72;
  --line: #dde1e4;
  --paper: #ffffff;
  --soft: #f4f6f4;
  --warm: #ede8dd;
  --green: #234034;
  --green-2: #3e6654;
  --rust: #a74f2a;
  --gold: #cf9d46;
  --shadow: 0 18px 50px rgba(20, 27, 24, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.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(14px);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.utility-bar > .utility-link:first-child {
  margin-left: max(24px, calc((100vw - 1240px) / 2));
}

.utility-bar > .utility-link:last-child {
  margin-right: max(24px, calc((100vw - 1240px) / 2));
}

.main-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 74px;
  width: 74px;
  height: 59px;
  overflow: hidden;
  background: #fff;
}

.brand-mark img {
  position: absolute;
  top: -18px;
  left: -35px;
  width: 142px;
  max-width: none;
  height: auto;
  display: block;
}

.brand-logo-mark + span,
.brand-logo-mark + div {
  display: none;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #232323;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.nav-menu a:hover,
.nav-menu a:focus-visible {
  border-color: var(--gold);
}

.nav-menu .nav-link.is-active {
  border-color: var(--rust);
  color: var(--rust);
}

.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item.has-dropdown > a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-item.has-dropdown.is-active > a {
  border-color: var(--rust);
  color: var(--rust);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 27, 24, 0.14);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms;
  z-index: 30;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 8px 10px;
  border-radius: 5px;
  border-bottom: none;
  font-size: 0.88rem;
}

.nav-dropdown a:hover {
  background: var(--soft);
  border-color: transparent;
}

.sale-link {
  color: var(--rust);
}

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

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.quote-pill,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.quote-pill,
.primary-button {
  background: var(--rust);
  color: #fff;
}

.secondary-button {
  background: #fff;
  color: var(--green);
  border-color: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 23, 20, 0.82), rgba(16, 23, 20, 0.42), rgba(16, 23, 20, 0.08)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(680px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  padding: 96px 0 150px;
  color: #fff;
}

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

.hero h1 {
  margin: 0;
  max-width: 10ch;
  font-size: 4.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  line-height: 1.65;
}

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

.hero-badges {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1240px) / 2 + 24px));
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.hero-badges a {
  padding: 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-badges strong,
.hero-badges span {
  display: block;
}

.hero-badges strong {
  color: var(--green);
}

.hero-badges span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 24px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.brand-strip h2,
.quote-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.4rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.collection-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.collection-grid::-webkit-scrollbar {
  height: 6px;
}

.collection-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.collection-tile {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .collection-tile {
    flex: 0 0 240px;
  }
}

.collection-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

.collection-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.collection-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.collection-tile span {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-weight: 900;
}

.collection-tile:hover img {
  transform: scale(1.05);
}

.brand-strip {
  padding: 58px 24px;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.brand-strip h2 {
  width: min(840px, 100%);
  margin: 0 auto 24px;
  color: #fff;
  font-size: 2rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-row span {
  min-width: 150px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: 34px;
}

.filters {
  position: sticky;
  top: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.filters h3 {
  margin: 0;
  font-size: 1rem;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--rust);
  font-weight: 800;
  cursor: pointer;
}

.filters fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.filters legend {
  margin-bottom: 4px;
  color: var(--green);
  font-weight: 900;
}

.filters label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #343434;
  font-size: 0.94rem;
}

.filters input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.sort-control select,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.sort-control select {
  min-width: 190px;
  min-height: 42px;
  padding: 0 12px;
}

.result-count {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 6px;
  padding: 7px 9px;
  background: var(--rust);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.product-content {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-meta span {
  border-radius: 5px;
  padding: 5px 8px;
  background: var(--soft);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.product-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.38;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.price-row strong {
  color: var(--rust);
  font-size: 1.1rem;
}

.price-row del {
  color: var(--muted);
}

.product-card button {
  min-height: 42px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: #fff;
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.product-card button:hover {
  background: var(--green);
  color: #fff;
}

.testimonial-grid {
  overflow: hidden;
  margin: 0 -24px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonial-marquee 42s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-track article {
  flex: 0 0 360px;
  min-height: 200px;
  border-left: 4px solid var(--gold);
  padding: 24px 22px;
  background: var(--soft);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.testimonial-track p {
  margin: 0;
  color: #333;
  line-height: 1.65;
  font-size: 0.96rem;
  font-style: italic;
}

.testimonial-track strong {
  color: var(--green);
  font-size: 0.9rem;
}

@keyframes testimonial-marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .testimonial-track article {
    flex-basis: 280px;
  }
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  max-width: 1240px;
  margin: 0 auto 84px;
  padding: 54px 24px;
  background: var(--warm);
}

.quote-section > div,
.quote-form {
  align-self: center;
}

.quote-section p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.quote-form {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 500;
}

.quote-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--green-2);
  color: #fff;
}

.info-band div {
  display: grid;
  gap: 5px;
  padding: 26px max(24px, calc((100vw - 1240px) / 2 + 24px));
}

.info-band div + div {
  background: rgba(0, 0, 0, 0.12);
}

.info-band span {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 24px;
}

.site-footer p {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 1rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-whatsapp {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-whatsapp-qr {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}

.footer-whatsapp-phone {
  display: inline-block;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-whatsapp-phone:hover {
  color: var(--green);
}

.follow-section {
  padding: 64px 24px;
  text-align: center;
  background: var(--soft);
}

.follow-section .section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
}

.follow-section h2 {
  margin: 6px 0 10px;
  color: var(--green);
  font-size: 2rem;
}

.follow-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.social-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.social-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.social-tile.is-empty {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.social-facebook {
  background: #1877f2;
}

.social-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-tiktok {
  background: #010101;
}

.social-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.phone-scroller {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding-block: 40px;
  margin-top: 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.phone-track {
  display: inline-flex;
  gap: 24px;
  will-change: transform;
  animation: phone-scroll var(--speed, 40s) linear infinite;
}

.phone-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-phone {
  width: clamp(220px, 16.5vw, 320px);
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #d8d8d8;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.12) 0 10px 24px, rgba(0, 0, 0, 0.08) 0 3px 8px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
  filter: saturate(0.96);
}

.phone-scroller--modern .phone-slide:nth-child(4n+1) .video-phone {
  transform: rotate(-1deg);
}

.phone-scroller--modern .phone-slide:nth-child(4n+3) .video-phone {
  transform: rotate(1deg);
}

.video-phone:hover {
  transform: translateY(-6px) scale(1.02) rotate(0deg);
  box-shadow: rgba(0, 0, 0, 0.16) 0 18px 38px;
  filter: saturate(1.05);
}

.phone-scroller:hover .phone-track {
  animation-play-state: paused;
}

@keyframes phone-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .phone-scroller { padding-block: 28px; mask-image: none; -webkit-mask-image: none; }
  .phone-track { gap: 8px; }
  .video-phone {
    width: 88vw;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: none;
    transform: none !important;
  }
  .phone-scroller--modern .phone-slide:nth-child(4n+1) .video-phone,
  .phone-scroller--modern .phone-slide:nth-child(4n+3) .video-phone {
    transform: none;
  }
}

@media (max-width: 560px) {
  .follow-section {
    padding: 48px 20px;
  }
  .follow-section h2 {
    font-size: 1.6rem;
  }
  .social-tile {
    width: 48px;
    height: 48px;
  }
}

.product-dialog {
  width: min(980px, calc(100% - 32px));
  max-height: min(820px, calc(100vh - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.56);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.dialog-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dialog-product img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

.dialog-copy {
  padding: 42px;
}

.dialog-copy h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.18;
}

.dialog-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.spec-list div {
  padding: 14px;
  background: var(--soft);
  border-radius: 6px;
}

.spec-list strong,
.spec-list span {
  display: block;
}

.spec-list strong {
  color: var(--green);
  font-size: 0.82rem;
}

.spec-list span {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 800;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

/* === Multi-page additions === */

.quote-counter {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.quote-pill {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs a {
  color: var(--green);
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--rust);
}

.breadcrumbs span {
  color: var(--muted);
}

.collection-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.collection-header {
  margin-bottom: 28px;
}

.collection-header h1 {
  margin: 4px 0 10px;
  font-size: 2.4rem;
  color: var(--green);
}

.collection-header p {
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.6;
}

.subcategory-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.subcategory-nav h4 {
  margin: 0 0 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.subcategory-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  padding: 4px 0;
}

.subcategory-nav a:hover {
  color: var(--rust);
}

.product-area-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.product-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  margin-top: 12px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.88rem;
}

.product-link-button:hover {
  background: var(--green);
  color: #fff;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 28px;
}

.pagination button,
.pagination-current {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.pagination button:hover {
  border-color: var(--green);
  color: var(--green);
}

.pagination-current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.product-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-main {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft);
}

.gallery-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--soft);
  cursor: pointer;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: var(--green);
}

.gallery-thumb:hover {
  border-color: var(--green-2);
}

.product-summary .eyebrow {
  color: var(--rust);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-summary h1 {
  margin: 6px 0 14px;
  font-size: 2rem;
  color: var(--green);
  line-height: 1.2;
}

.product-summary .price-row {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 16px;
}

.product-summary .price-row strong {
  font-size: 1.6rem;
  color: var(--ink);
}

.product-summary .price-row del {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-summary > p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.product-actions .primary-button:disabled {
  background: var(--muted);
  cursor: not-allowed;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--green);
  text-align: left;
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.accordion-item.is-open .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.accordion-item.is-open .accordion-body {
  display: block;
}

.accordion-inner a {
  color: var(--rust);
  font-weight: 600;
}

.key-features-section,
.floor-plans-section,
.specifications-section,
.related-products-section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

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

.feature-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--warm);
  color: var(--green);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--green);
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

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

.floor-plans figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft);
}

.floor-plans img {
  width: 100%;
  height: auto;
  display: block;
}

.floor-plans figcaption {
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

.spec-group h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--green);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.spec-group table {
  width: 100%;
  border-collapse: collapse;
}

.spec-group th,
.spec-group td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.92rem;
}

.spec-group th {
  color: var(--muted);
  font-weight: 600;
  width: 45%;
}

.spec-group td {
  color: var(--ink);
  font-weight: 600;
}

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

.related-products .product-card img {
  height: 200px;
  object-fit: cover;
}

.related-products .product-card h3 {
  font-size: 1rem;
}

@media (max-width: 1080px) {
  .main-nav {
    grid-template-columns: auto auto auto;
  }

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

  .nav-menu {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0 4px;
    border-top: 1px solid var(--line);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-actions {
    justify-self: end;
  }

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

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .filters fieldset {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-main img {
    height: 360px;
  }

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

  .spec-table {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .utility-bar,
  .nav-actions {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand strong {
    white-space: normal;
  }

  .brand-mark {
    flex-basis: 64px;
    width: 64px;
    height: 51px;
  }

  .brand-mark img {
    top: -16px;
    left: -31px;
    width: 124px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(16, 23, 20, 0.82), rgba(16, 23, 20, 0.34)),
      url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=82") center / cover;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 76px 0 220px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 3rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-badges {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 20px;
  }

  .section-heading h2,
  .brand-strip h2,
  .quote-section h2 {
    font-size: 2rem;
  }

  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-control {
    align-items: stretch;
    flex-direction: column;
  }

  .sort-control select {
    min-width: 0;
  }

  .product-grid,
  .quote-section,
  .info-band,
  .site-footer,
  .dialog-product {
    grid-template-columns: 1fr;
  }

  .collection-tile,
  .collection-tile img {
    min-height: 220px;
  }

  .filters fieldset {
    grid-template-columns: 1fr 1fr;
  }

  .quote-section {
    margin-bottom: 0;
    padding: 52px 20px;
  }

  .site-footer {
    padding: 44px 20px;
  }

  .dialog-product img {
    min-height: 280px;
    max-height: 360px;
  }

  .dialog-copy {
    padding: 28px 20px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

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

  .floor-plans {
    grid-template-columns: 1fr;
  }

  .collection-header h1 {
    font-size: 2rem;
  }

  .product-summary h1 {
    font-size: 1.6rem;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .breadcrumbs {
    padding: 8px 16px;
  }

  .collection-page,
  .product-page {
    padding: 24px 16px 60px;
  }
}

@media (max-width: 440px) {
  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .filters fieldset {
    grid-template-columns: 1fr;
  }

  .key-features {
    grid-template-columns: 1fr;
  }

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

/* === Phase 2: info / search / quote / collections index === */

.info-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.info-header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.info-header h1 {
  margin: 8px 0 12px;
  font-size: 2.6rem;
  color: var(--green);
}

.info-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.info-body {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.75;
}

.info-body h2,
.info-body h3 {
  color: var(--green);
  margin: 28px 0 12px;
}

.info-body p,
.info-body ul,
.info-body ol {
  margin: 0 0 16px;
}

.info-body ul,
.info-body ol {
  padding-left: 1.4em;
}

.info-body li {
  margin: 6px 0;
}

.contact-page .contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.contact-page .contact-info {
  background: var(--soft);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.contact-page .contact-info h2 {
  color: var(--green);
  margin-top: 0;
}

.contact-page .contact-info dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-page .contact-info dt {
  font-weight: 800;
  color: var(--green);
}

.contact-page .contact-info dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.contact-page .contact-info a {
  color: var(--rust);
  text-decoration: none;
}

.contact-page .contact-info a:hover {
  text-decoration: underline;
}

.contact-form-section {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form-section h2 {
  color: var(--green);
  margin-bottom: 16px;
}

.search-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.search-header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.search-header h1 {
  margin: 8px 0 16px;
  font-size: 2.4rem;
  color: var(--green);
}

.search-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}

.search-form input {
  flex: 1;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.quote-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.quote-header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.quote-header h1 {
  margin: 8px 0 12px;
  font-size: 2.4rem;
  color: var(--green);
}

.quote-intro {
  color: var(--muted);
  line-height: 1.7;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.quote-list {
  display: grid;
  gap: 16px;
}

.quote-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-item-media {
  display: block;
  width: 120px;
  height: 90px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
}

.quote-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-item-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--green);
}

.quote-item-body h3 a {
  color: inherit;
  text-decoration: none;
}

.quote-item-body h3 a:hover {
  color: var(--rust);
}

.quote-item-body .price-row {
  margin: 0;
  color: var(--ink);
}

.remove-button {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.quote-form-section {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-form-section h2 {
  margin: 0;
  color: var(--green);
}

.ghost-button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.ghost-button:hover {
  background: #fff;
}

#clear-quote {
  justify-self: start;
  color: var(--rust);
  border-color: var(--rust);
}

.collections-index {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.collections-index-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.collections-index-header h1 {
  margin: 8px 0 12px;
  font-size: 2.6rem;
  color: var(--green);
}

.collections-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.collection-index-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.collection-index-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 23, 20, 0.12);
}

.collection-index-media {
  aspect-ratio: 4 / 3;
  background: var(--soft);
  overflow: hidden;
}

.collection-index-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-index-body {
  padding: 20px;
}

.collection-index-body h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--green);
}

.collection-index-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.collection-index-meta {
  color: var(--rust);
  font-weight: 800;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-form-section {
    position: static;
  }

  .contact-page .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quote-item {
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
  }

  .quote-item .remove-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .quote-item-media {
    width: 90px;
    height: 70px;
  }

  .info-header h1,
  .collections-index-header h1 {
    font-size: 2rem;
  }

  .search-header h1,
  .quote-header h1 {
    font-size: 1.8rem;
  }

  .search-form {
    flex-direction: column;
  }
}

.start-project-trigger {
  cursor: pointer;
}

.start-project-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 23, 20, 0.6);
  backdrop-filter: blur(2px);
}

.start-project-modal.is-open {
  display: flex;
}

.start-project-modal-panel {
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(20, 27, 24, 0.28);
}

.start-project-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.start-project-modal-head h2 {
  margin: 0 0 6px;
  font-size: 1.6rem;
  color: var(--green);
}

.start-project-modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.start-project-modal-close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.start-project-modal-close:hover {
  background: var(--soft);
}

.start-project-form {
  display: grid;
  gap: 14px;
}

.start-project-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--green);
}

.start-project-form label span small {
  color: var(--muted);
  font-weight: 400;
}

.start-project-form input,
.start-project-form select,
.start-project-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--green);
  font: inherit;
}

.start-project-form input:focus,
.start-project-form select:focus,
.start-project-form textarea:focus {
  border-color: var(--rust);
  outline: 2px solid rgba(167, 79, 42, 0.18);
  outline-offset: 0;
}

.start-project-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.start-project-form .form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.start-project-form .form-status {
  flex: 1;
  color: var(--muted);
  font-size: 0.9rem;
}

.start-project-form .form-status.is-error {
  color: var(--rust);
}

.start-project-form .form-status.is-success {
  color: var(--green-2);
}

@media (max-width: 600px) {
  .start-project-modal-panel {
    padding: 22px;
  }

  .start-project-form .form-row {
    grid-template-columns: 1fr;
  }
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.utility-link:hover {
  color: var(--gold);
}

.utility-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.utility-bar {
  gap: 24px;
}

.utility-bar .utility-link + .utility-link {
  margin-left: auto;
}

.home-product-area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-product-area .result-count {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.view-all-row {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.view-all-button:hover {
  background: var(--green);
  color: #fff;
}

.cta-section {
  background: var(--green);
  color: #fff;
  padding: 80px 24px;
  margin-top: 64px;
}

.cta-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.cta-content .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.15;
}

.cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-actions .primary-button {
  background: var(--rust);
  color: #fff;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.cta-actions .primary-button:hover {
  background: #8f3f1f;
}

.cta-actions .ghost-button {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cta-actions .ghost-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.what-we-do-page .page-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 32px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.what-we-do-page .page-hero .eyebrow {
  color: var(--rust);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.what-we-do-page .page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--green);
  line-height: 1.12;
}

.what-we-do-page .page-hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.what-we-do-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.what-we-do-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 27, 24, 0.08);
  border-color: var(--rust);
}

.what-we-do-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.what-we-do-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.what-we-do-card:hover .what-we-do-card-media img {
  transform: scale(1.04);
}

.what-we-do-card-body {
  padding: 20px 22px 24px;
  display: grid;
  gap: 8px;
}

.what-we-do-card-body h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--green);
}

.what-we-do-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.what-we-do-card-link {
  margin-top: 6px;
  color: var(--rust);
  font-weight: 700;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .what-we-do-grid {
    grid-template-columns: 1fr;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Phase 6: About / FAQ / View Our Work / Contact ===== */

/* About stats */
.about-stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  display: grid;
  gap: 6px;
  justify-items: center;
}
.stat-card .stat-number {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: var(--rust);
  font-weight: 900;
  line-height: 1;
}
.stat-card .stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* FAQ page */
.faq-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.faq-page .page-hero {
  max-width: 760px;
  margin: 0 auto 32px;
  padding: 72px 0 24px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.faq-page .page-hero .eyebrow {
  color: var(--rust);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}
.faq-page .page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--green);
  line-height: 1.15;
}
.faq-page .page-hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
}
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 16px 0 0;
}
.faq-accordion {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--green);
  font-size: 1.02rem;
  line-height: 1.4;
}
.faq-question:hover {
  background: var(--soft);
}
.faq-question .faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-answer.is-open {
  max-height: 600px;
  padding: 0 22px 22px;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* View Our Work page */
.view-our-work-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.view-our-work-page .page-hero {
  max-width: 760px;
  margin: 0 auto 16px;
  padding: 72px 0 24px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.view-our-work-page .page-hero .eyebrow {
  color: var(--rust);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}
.view-our-work-page .page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--green);
  line-height: 1.15;
}
.view-our-work-page .page-hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 640px;
}
.projects-section {
  padding: 32px 0;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(20, 27, 24, 0.08);
}
.project-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}
.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card-body {
  padding: 20px 22px 24px;
  display: grid;
  gap: 8px;
}
.project-card-body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--green);
}
.project-location {
  margin: 0;
  color: var(--rust);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.project-specs {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}
.project-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.testimonials-section {
  padding: 32px 0;
}
.testimonials-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.testimonial-quote {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-author strong {
  color: var(--green);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .projects-grid, .testimonials-wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .projects-grid, .testimonials-wall { grid-template-columns: 1fr; }
}

/* Contact page */
.contact-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.contact-page .info-header {
  padding: 72px 0 24px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 56px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon svg {
  width: 20px;
  height: 20px;
}
.contact-card h2 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--green);
}
.contact-card a {
  color: var(--rust);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}
.contact-card a:hover {
  text-decoration: underline;
}
.contact-card span {
  color: var(--ink);
  font-weight: 700;
}
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-form-section {
  max-width: 760px;
  margin: 0 auto;
}
.contact-form-section h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: var(--green);
  text-align: center;
}
.contact-form-intro {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
}
.contact-form-section .quote-form {
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 28px;
}
.contact-form-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-section .quote-form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
}
.contact-form-section .quote-form label small {
  color: var(--muted);
  font-weight: 500;
}
.contact-form-section .quote-form input,
.contact-form-section .quote-form select,
.contact-form-section .quote-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.contact-form-section .quote-form input:focus,
.contact-form-section .quote-form select:focus,
.contact-form-section .quote-form textarea:focus {
  border-color: var(--rust);
  outline: 2px solid rgba(167, 79, 42, 0.18);
}
.contact-form-section .quote-form textarea {
  resize: vertical;
  width: 100%;
}
.contact-form-section .primary-button {
  justify-self: start;
}
.contact-form-section .form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 640px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-form-section .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .contact-cards { grid-template-columns: 1fr; }
}
