/* Hero About Page */
.hero-about {
  background:
    linear-gradient(90deg, rgba(23, 32, 30, 0.96), rgba(23, 32, 30, 0.58)),
    url("./images/fleet.jpg") center/cover;
  color: white;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-about-content {
  max-width: 680px;
}
.hero-about h1 {
  font:
    600 clamp(48px, 6vw, 78px)/0.98 "Space Grotesk",
    sans-serif;
  letter-spacing: -3px;
  margin: 22px 0 26px;
}
.hero-about h1 em {
  color: #e2916d;
  font-style: normal;
}
.hero-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #adb8b1;
  margin-bottom: 36px;
}

/* Timeline Section */
.section-timeline {
  background: var(--paper);
}
.section-intro {
  text-align: center;
  margin-bottom: 80px;
}
.section-intro h2 {
  font:
    600 clamp(36px, 5vw, 56px)/0.99 "Space Grotesk",
    sans-serif;
  letter-spacing: -2px;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-intro p {
  font-size: 16px;
  color: var(--muted);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.timeline-item {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--copper);
}
.timeline-year {
  font-size: 28px;
  font-weight: 700;
  color: var(--copper);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 12px;
}
.timeline-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Values Section */
.section-values {
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
}
.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.value-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Why Choose Section */
.section-why {
  background: var(--paper);
}
.about-grid-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content h2 {
  font:
    600 clamp(36px, 5vw, 56px)/0.99 "Space Grotesk",
    sans-serif;
  letter-spacing: -2px;
  margin-bottom: 40px;
  color: var(--ink);
}
.why-content h2 em {
  color: var(--copper);
  font-style: normal;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--copper);
  font-family: "Space Grotesk", sans-serif;
  min-width: 60px;
}
.why-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px 0;
}
.why-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.why-image {
  min-height: 450px;
  background:
    linear-gradient(0deg, rgba(19, 29, 27, 0.7), transparent 55%),
    url("./images/fleet.jpg") center/cover;
  border-radius: 8px;
}

/* CTA Section */
.section-cta {
  background: var(--copper);
  color: white;
  text-align: center;
}
.cta-content {
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 {
  font:
    600 clamp(36px, 5vw, 56px)/0.99 "Space Grotesk",
    sans-serif;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: white;
}
.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.button-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid-why {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .why-image {
    min-height: 300px;
  }
}

.shop-hero {
  background: var(--ink);
  color: white;
  padding: 108px 0 96px;
  position: relative;
  overflow: hidden;
}
.shop-hero-about,
.shop-hero-services,
.shop-hero-contact,
.shop-hero-shop {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.shop-hero-about {
  background-blend-mode: normal;
  background-image:
    linear-gradient(90deg, rgba(23, 32, 30, 0.95), rgba(23, 32, 30, 0.7)),
    url("./images/fleet.jpg");
}
.shop-hero-services {
  background-image:
    linear-gradient(90deg, rgba(23, 32, 30, 0.95), rgba(23, 32, 30, 0.45)),
    url("./images/cements.jpg");
}
.shop-hero-contact {
  background-image:
    linear-gradient(90deg, rgba(23, 32, 30, 0.95), rgba(23, 32, 30, 0.45)),
    url("./images/front.jpg");
}
.shop-hero-shop {
  background-image:
    linear-gradient(90deg, rgba(23, 32, 30, 0.96), rgba(23, 32, 30, 0.36)),
    url("./images/tilefix.jpg");
}
.shop-hero-grid {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}
.shop-hero-copy {
  max-width: 680px;
}
.shop-hero h1 {
  font:
    600 clamp(48px, 6vw, 78px)/0.98 "Space Grotesk",
    sans-serif;
  letter-spacing: -3px;
  margin: 22px 0 26px;
}
.shop-hero h1 em {
  color: #e2916d;
  font-style: normal;
}
.shop-hero p {
  color: #adb8b1;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.7;
}
.shop-hero-note {
  border-left: 1px solid #64706a;
  padding-left: 24px;
  width: 224px;
  flex: 0 0 224px;
}
.shop-hero-note span {
  display: block;
  color: #e2916d;
  font-size: 12px;
  margin-bottom: 28px;
}
.shop-hero-note strong {
  font:
    500 20px/1.08 "Space Grotesk",
    sans-serif;
}
.shop-hero-note small {
  display: block;
  color: #adb8b1;
  font-size: 11px;
  margin-top: 28px;
}
.shop-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.toolbar-kicker,
.cart-label,
.order-bar-label {
  display: block;
  color: var(--copper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.shop-toolbar h2 {
  font:
    600 24px/1.1 "Space Grotesk",
    sans-serif;
  margin: 8px 0 0;
}
.filter-tabs {
  display: flex;
  gap: 7px;
  padding: 5px;
  background: var(--cream);
}
.filter {
  border: 0;
  background: none;
  padding: 9px 13px;
  color: #7b837e;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
}
.filter.active,
.filter:hover {
  background: var(--ink);
  color: white;
  font-weight: 700;
}
.cart-summary {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 160px;
  font-size: 11px;
  color: var(--muted);
}
.cart-summary .cart-label {
  display: none;
}
.cart-count {
  display: inline-grid;
  place-items: center;
  background: var(--copper);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 700;
}
.clear-cart {
  border: 0;
  background: none;
  color: var(--copper);
  font-size: 11px;
  margin-left: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.product-card:hover {
  background: white;
  border-color: #b9beb6;
  box-shadow: 0 12px 28px rgba(23, 32, 30, 0.08);
  transform: translateY(-3px);
}
.product-image {
  width: calc(100% + 36px);
  height: 154px;
  margin: -18px -18px 20px;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}
.product-card:hover .product-image {
  filter: saturate(1) contrast(1);
  transform: scale(1.02);
}
.product-category {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 9px;
  color: var(--copper);
  font-weight: 700;
}
.product-card h3 {
  font:
    600 18px/1.1 "Space Grotesk",
    sans-serif;
  margin: 10px 0 8px;
}
.product-card p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  gap: 8px;
  flex-wrap: wrap;
}
.product-unit {
  font-size: 11px;
  color: #929a94;
}
.product-price {
  color: var(--copper);
  font-size: 13px;
  margin-left: auto;
  margin-right: 4px;
  white-space: nowrap;
}
.quantity-input {
  width: 48px;
  height: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 5px 6px;
  font-size: 12px;
  text-align: center;
}
.quantity-input:focus {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.add-product {
  position: relative;
  background: var(--ink);
  color: white;
  border: 0;
  border-radius: 6px;
  padding: 9px 28px 9px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.add-product::after {
  content: "↗";
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 14px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
.add-product:hover {
  background: var(--copper);
  box-shadow: 0 6px 14px rgba(23, 32, 30, 0.18);
  transform: translateY(-2px);
}
.add-product:hover::after {
  transform: translate(3px, -3px);
}
.add-product:active {
  box-shadow: none;
  transform: translateY(0);
}
.add-product:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}
.add-product.added {
  background: var(--copper);
}
.order-bar {
  margin-top: 32px;
  background: var(--cream);
  border-left: 4px solid var(--copper);
  padding: 27px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.order-bar strong,
.order-bar span {
  display: block;
}
.order-bar-label {
  margin-bottom: 9px;
}
.order-bar strong {
  font:
    600 17px "Space Grotesk",
    sans-serif;
}
.order-bar span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .shop-hero {
    padding: 65px 0;
  }
  .shop-hero-grid {
    display: block;
  }
  .shop-hero-copy {
    max-width: none;
  }
  .shop-hero-note {
    margin-top: 45px;
  }
  .shop-toolbar {
    display: block;
  }
  .shop-toolbar h2 {
    margin-bottom: 22px;
  }
  .filter-tabs {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .filter {
    padding: 8px 11px;
  }
  .cart-summary {
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }
  .cart-summary .cart-label {
    display: block;
    margin-right: 5px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .order-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .shop-hero h1 {
    font-size: 49px;
  }
  .product-card {
    min-height: 310px;
  }
  .order-bar .button {
    width: 100%;
  }
}

.contact-hero-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: end;
  gap: 70px;
}
.services-hero-grid > div:first-child {
  max-width: 680px;
}
.services-hero-note {
  border-left: 1px solid #64706a;
  padding-left: 24px;
  padding-bottom: 4px;
}
.services-hero-note span,
.service-row-number {
  display: block;
  color: #e2916d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.7px;
}
.services-hero-note strong {
  display: block;
  font:
    500 20px/1.08 "Space Grotesk",
    sans-serif;
  margin-top: 25px;
}
.services-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 58px;
}
.services-intro h2 {
  font-size: clamp(40px, 4.5vw, 62px);
  margin: 15px 0 0;
}
.services-intro h2 em {
  color: var(--copper);
  font-style: normal;
}
.services-intro > p {
  max-width: 350px;
  color: var(--muted);
  margin: 0 0 5px;
  line-height: 1.7;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-row {
  min-height: 450px;
  display: grid;
  grid-template-rows: 205px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.service-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(23, 32, 30, 0.1);
}
.service-row-dark {
  background: var(--ink);
  color: white;
}
.service-row-image {
  background-position: center;
  background-size: cover;
  filter: saturate(0.75);
}
.service-row-content {
  padding: 27px 29px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-row-content h3 {
  font:
    600 26px/1.05 "Space Grotesk",
    sans-serif;
  margin: 17px 0 12px;
}
.service-row-content p {
  color: var(--muted);
  max-width: 320px;
  margin: 0;
  line-height: 1.6;
  font-size: 13px;
}
.service-row-dark .service-row-content p {
  color: #aab3ae;
}
.service-row-content .card-link {
  position: static;
  margin-top: auto;
  padding-top: 22px;
}
.services-process {
  margin-top: 90px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 38px;
}
.process-steps > div {
  border-left: 2px solid var(--copper);
  padding-left: 18px;
}
.process-steps span {
  color: var(--copper);
  font:
    500 12px "Space Grotesk",
    sans-serif;
}
.process-steps strong {
  display: block;
  font:
    600 17px "Space Grotesk",
    sans-serif;
  margin-top: 13px;
}
.process-steps p {
  color: var(--muted);
  font-size: 12px;
  margin: 7px 0 0;
}
@media (max-width: 800px) {
  .services-hero-grid {
    display: block;
  }
  .services-hero-note {
    margin-top: 45px;
  }
  .services-intro {
    display: block;
  }
  .services-intro > p {
    margin-top: 28px;
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 23px;
  }
}
.contact-hero-grid > div:first-child {
  max-width: 650px;
}
.contact-hero-note {
  width: 225px;
  flex: 0 0 225px;
  border-left: 1px solid #64706a;
  padding-left: 24px;
}
.contact-note-mark {
  display: block;
  color: #e2916d;
  font-size: 13px;
  margin-bottom: 27px;
}
.contact-hero-note strong {
  display: block;
  font:
    500 20px/1.08 "Space Grotesk",
    sans-serif;
}
.contact-hero-note small {
  display: block;
  color: #adb8b1;
  font-size: 11px;
  line-height: 1.5;
  margin-top: 28px;
}
.contact-content {
  gap: 120px;
}
.contact-content .quote-intro {
  padding-top: 12px;
}
.contact-content .direct-contact {
  gap: 0;
  width: min(100%, 350px);
  border-top: 1px solid var(--line);
}
.contact-detail {
  padding: 17px 0 15px;
  border-bottom: 1px solid var(--line);
}
.contact-detail small {
  margin-bottom: 6px;
}
.contact-detail a {
  display: block;
  line-height: 1.4;
}
.contact-detail img {
  margin-left: 5px;
  vertical-align: middle;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 34px 34px;
}
.contact-form .form-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 26px;
}
.form-heading span {
  display: block;
  color: var(--copper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
}
.form-heading strong {
  font:
    600 24px/1.1 "Space Grotesk",
    sans-serif;
}
.contact-form .button {
  margin-top: 12px;
  min-width: 150px;
}
@media (max-width: 800px) {
  .contact-hero-grid {
    display: block;
  }
  .contact-hero-note {
    margin-top: 45px;
  }
  .contact-content {
    gap: 0;
  }
  .contact-form {
    margin-top: 55px;
  }
}
@media (max-width: 480px) {
  .contact-form {
    padding: 24px 20px 25px;
  }
}
