:root {
  --ink: #182019;
  --forest: #2e4133;
  --cream: #f4efe4;
  --sand: #d3bd93;
  --stone: #746b60;
  --white: #fff;
  --line: #d9d1c3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.nav {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 5vw, 76px);
  color: #fff;
}
.brand {
  display: inline-flex;
  align-items: center;
  background: #ffe500;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
}
.brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
}
.footer-brand {
  display: inline-flex;
  background: #ffe500;
  padding: 5px 8px;
  border-radius: 3px;
}
.footer-brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links a,
.nav-links .active {
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #ffffff66;
  border-radius: 999px;
  padding: 9px 16px;
  background: #1220164d;
  backdrop-filter: blur(8px);
  line-height: 1.4;
}
.nav-links .active {
  display: inline-block;
  background: #ffe500;
  color: #050505;
  border-color: #ffe500;
  cursor: default;
}
.nav-links a:active {
  background: #ffe500;
  color: #050505;
  border-color: #ffe500;
}
.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  position: relative;
  background:
    linear-gradient(90deg, #102016d9 0%, #10201680 48%, #10201620 100%),
    url("/onlystone-pebbles-hero.webp") center/cover no-repeat;
  color: #fff;
  padding: 150px clamp(22px, 7vw, 100px) 70px;
}
.hero-copy {
  max-width: 730px;
}
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
  color: #e1c894;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  margin: 18px 0 24px;
  font-weight: 500;
}
.hero p {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 640px;
  color: #f3f0e8;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 3px;
  padding: 14px 22px;
  font-weight: 800;
}
.btn.primary {
  background: #e6ca8f;
  color: #172118;
}
.btn.secondary {
  border: 1px solid #ffffff88;
  color: #fff;
  background: #ffffff14;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 90px clamp(22px, 7vw, 100px);
  align-items: center;
}
.intro h2,
.products h2,
.uses h2,
.section-title {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  margin: 0;
}
.intro p {
  font-size: 18px;
  color: #4d554e;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fact {
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  border-bottom: 4px solid var(--sand);
  transition: 0.2s transform;
}
.fact:hover,
.product-card:hover {
  transform: translateY(-4px);
}
.fact img {
  height: 150px;
}
.fact div {
  padding: 18px 20px;
}
.fact b {
  display: block;
  font-size: 18px;
}
.fact span {
  font-size: 14px;
  color: var(--stone);
}
.products {
  background: var(--forest);
  color: #fff;
  padding: 84px clamp(22px, 7vw, 100px);
}
.products header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}
.products header p {
  max-width: 470px;
  color: #d5dfd7;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  background: #f5f0e5;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s transform;
}
.card img {
  height: 260px;
}
.card div {
  padding: 20px;
}
.card h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  margin: 0 0 4px;
}
.card p {
  margin: 0;
  color: #62665f;
  font-size: 15px;
}
.uses {
  padding: 90px clamp(22px, 7vw, 100px);
}
.uses-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.use {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #faf7f0;
}
.use b {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
.use span {
  color: var(--stone);
}
.contact {
  margin: 0 clamp(22px, 5vw, 70px) 60px;
  background: #d8bf8e;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.contact h2 {
  font:
    500 clamp(31px, 4vw, 53px) / 1.05 Georgia,
    serif;
  margin: 0 0 12px;
}
.contact p {
  margin: 0;
}
.contact .btn {
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px clamp(22px, 5vw, 76px);
  background: #151c17;
  color: #d8ddd8;
  font-size: 14px;
}
.page-hero {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--forest);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 150px clamp(22px, 7vw, 100px) 74px;
}
.products-hero {
  background-image:
    linear-gradient(90deg, #102016e6 0%, #102016a8 44%, #10201638 100%),
    url("/images/polished-pebbles-products-hero.webp");
}
.applications-hero {
  background-image:
    linear-gradient(90deg, #102016e6 0%, #102016a0 44%, #10201632 100%),
    url("/images/landscape-pebbles-applications-hero.webp");
}
.enquire-hero {
  background-image:
    linear-gradient(90deg, #102016e6 0%, #102016a8 44%, #10201638 100%),
    url("/images/decorative-pebbles-enquiry-hero.webp");
}
.page-hero p {
  max-width: 680px;
  font-size: 19px;
  color: #d5dfd7;
}
.catalog {
  padding: 70px clamp(22px, 7vw, 100px);
}
.catalog-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.catalog-head p {
  color: var(--stone);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: #fff;
  scroll-margin-top: 28px;
  transition: 0.2s transform;
}
.product-card img {
  height: 290px;
}
.product-copy {
  padding: 18px;
}
.product-copy h3 {
  font:
    500 25px/1.1 Georgia,
    serif;
  margin: 0 0 8px;
}
.product-copy p {
  color: var(--stone);
  font-size: 15px;
  min-height: 120px;
}
.text-link {
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--sand);
}
.note {
  padding: 18px;
  background: #ebe2d1;
  border-left: 4px solid var(--sand);
  margin-top: 34px;
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.application {
  background: #fff;
}
.application img {
  height: 430px;
}
.application div {
  padding: 24px;
}
.application h3 {
  font:
    500 30px/1.1 Georgia,
    serif;
  margin: 0 0 8px;
}
.finish-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 35px;
}
.finish-strip figure {
  margin: 0;
  background: white;
}
.finish-strip img {
  height: 180px;
}
.finish-strip figcaption {
  display: block;
  padding: 16px;
}
.finish-strip figcaption b {
  display: block;
  font:
    500 21px/1.15 Georgia,
    serif;
  margin-bottom: 8px;
}
.finish-strip figcaption span {
  display: block;
  color: var(--stone);
  font-size: 14px;
}
.back {
  display: inline-block;
  margin-top: 28px;
  font-weight: 800;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 950px) {
  .product-grid,
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro {
    grid-template-columns: 1fr;
  }
  .products header,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .hero {
    background-position: 62% center;
  }
  .grid,
  .product-grid,
  .facts,
  .application-grid,
  .finish-strip,
  .uses-list {
    grid-template-columns: 1fr;
  }
  .nav {
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .brand img {
    height: 48px;
  }
  .footer-brand img {
    height: 42px;
  }
  .nav-links {
    gap: 6px;
    flex-wrap: wrap;
  }
  .nav-links a,
  .nav-links .active {
    padding: 6px 9px;
    font-size: 12px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }
  .intro,
  .products,
  .uses,
  .catalog {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .card img,
  .product-card img {
    height: 300px;
  }
  .application img {
    height: 300px;
  }
}
.enquiry-panel{margin:70px clamp(22px,7vw,100px);display:grid;grid-template-columns:minmax(240px,.7fr) minmax(0,1.3fr);gap:42px;align-items:start}.enquiry-intro h2{font:500 clamp(34px,4vw,56px)/1.08 Georgia,serif;margin:10px 0 16px}.enquiry-intro p{color:var(--stone);font-size:18px}.enquiry-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;background:#fff;padding:clamp(24px,4vw,42px);border-top:5px solid var(--sand)}.form-field{display:flex;flex-direction:column;gap:7px}.form-field.full,.form-submit.full{grid-column:1/-1}.form-field label{font-weight:800;font-size:14px}.form-field input,.form-field select,.form-field textarea{width:100%;border:1px solid #a69b88;border-radius:3px;background:#fff;color:var(--ink);font:inherit;padding:12px}.form-field textarea{resize:vertical}.form-honeypot{position:absolute;left:-9999px}.form-submit{display:flex;align-items:center;gap:18px;flex-wrap:wrap}.form-submit .btn{border:0;background:var(--ink);color:#fff;cursor:pointer}.form-submit .btn:disabled{opacity:.55;cursor:wait}.form-submit p{margin:0;font-weight:700;color:#2e4133}@media(max-width:760px){.enquiry-panel{grid-template-columns:1fr}.enquiry-form{grid-template-columns:1fr}.form-field.full,.form-submit.full{grid-column:auto}}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: #fff;
  color: #182019;
  padding: 12px 16px;
  border: 3px solid #182019;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid #ffe500;
  outline-offset: 4px;
}
.product-filter {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px clamp(22px, 7vw, 100px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px #18201912;
}
.product-filter strong {
  margin-right: 6px;
}
.filter-button {
  appearance: none;
  border: 1px solid #9c927f;
  background: #f4efe4;
  color: #182019;
  border-radius: 999px;
  padding: 9px 15px;
  font:
    700 14px/1.2 Inter,
    Arial,
    sans-serif;
  cursor: pointer;
}
.filter-button[aria-pressed="true"] {
  background: #2e4133;
  color: #fff;
  border-color: #2e4133;
}
.catalog[hidden] {
  display: none;
}
.whatsapp-float {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 8px;
  background: #137c42;
  color: #fff;
  padding: 13px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 26px #0004;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
@media (max-width: 620px) {
  .product-filter {
    top: 0;
    padding: 12px 16px;
    gap: 7px;
  }
  .product-filter strong {
    width: 100%;
    font-size: 14px;
  }
  .filter-button {
    font-size: 13px;
    padding: 8px 11px;
  }
  .whatsapp-float {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
}
