:root {
  --ink: #1f1a17;
  --muted: #796d63;
  --line: #e4d8ce;
  --paper: #ffffff;
  --panel: #f8f4f0;
  --panel-strong: #f2ebe5;
  --teal: #b8794e;
  --teal-soft: #f3e2d5;
  --wine: #6e4335;
  --amber: #d7a274;
  --shadow: 0 24px 80px rgba(24, 31, 38, 0.12);
  --radius: 8px;
  color-scheme: light;
  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;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(228, 216, 206, 0.45) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(180deg, #fdfbf9 0%, #f6efe9 48%, #ffffff 100%);
}

body,
button {
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
dd {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(228, 216, 206, 0.95);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  display: block;
  width: clamp(150px, 16vw, 270px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: #514740;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--wine);
}

.hero-shell,
.catalogue-intro,
.about-section,
.range-section,
.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(44px, 8vw, 104px) clamp(20px, 5vw, 78px);
}

.hero-shell {
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.eyebrow,
.product-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 9.5ch;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.95;
}

h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.hero-intro,
.catalogue-intro > p,
.range-grid p,
.contact-strip p,
.product-copy p {
  color: #514740;
  line-height: 1.7;
}

.hero-intro {
  max-width: 46ch;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

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

.primary-link,
.secondary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.primary-link {
  padding: 12px 18px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 30px rgba(184, 121, 78, 0.24);
}

.secondary-link {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: #26313b;
}

.text-link {
  justify-content: flex-start;
  width: fit-content;
  margin-top: 28px;
  color: var(--teal);
}

.primary-link:hover,
.secondary-link:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--wine);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.hero-stats div,
.spec-list div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-stats dt,
.hero-stats dd,
.spec-list dt,
.spec-list dd {
  margin: 0;
}

.hero-stats dt,
.spec-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: clamp(460px, 60vw, 720px);
}

.hero-stage::before {
  position: absolute;
  inset: 10% 0 4% 10%;
  z-index: -2;
  border: 1px solid rgba(130, 144, 156, 0.22);
  border-radius: 30% 8px 8px 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 226, 213, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(184, 121, 78, 0.14), transparent 32%);
  box-shadow: var(--shadow);
  content: "";
}

.hero-panel {
  position: absolute;
  margin: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 72px rgba(23, 27, 31, 0.12);
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-shears {
  top: 4%;
  right: 6%;
  width: min(66%, 500px);
  aspect-ratio: 1 / 1;
  transform: rotate(-4deg);
}

.hero-panel-black {
  right: 12%;
  bottom: 8%;
  width: min(45%, 320px);
  aspect-ratio: 1 / 1;
  transform: rotate(2deg);
}

.hero-panel-pink {
  left: 0;
  bottom: 14%;
  width: min(36%, 240px);
  aspect-ratio: 1 / 1;
  transform: rotate(5deg);
}

.steel-rule {
  position: absolute;
  right: 0;
  bottom: 18%;
  width: min(52%, 380px);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), var(--amber), var(--teal));
  box-shadow: 0 12px 22px rgba(23, 27, 31, 0.1);
}

.catalogue-intro {
  align-items: end;
}

.catalogue-intro > p {
  margin: 0;
  font-size: 1.05rem;
}

.about-section {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 240, 0.98)),
    linear-gradient(90deg, rgba(184, 121, 78, 0.1), rgba(110, 67, 53, 0.05));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-text {
  max-width: 68ch;
}

.about-text p {
  margin: 0 0 18px;
  color: #514740;
  line-height: 1.75;
  font-size: 1.04rem;
}

.filter-band {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px clamp(20px, 5vw, 78px);
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(248, 244, 240, 0.94);
  backdrop-filter: blur(16px);
}

.filter-label {
  margin: 0 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.filter-button {
  min-width: max-content;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #5b4f47;
  cursor: pointer;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: rgba(184, 121, 78, 0.34);
  background: var(--teal-soft);
  color: #724528;
  transform: translateY(-1px);
}

.filter-button.is-active {
  border-color: rgba(184, 121, 78, 0.6);
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 22px rgba(184, 121, 78, 0.2);
}

.product-catalogue {
  display: grid;
}

.product-entry {
  display: grid;
  grid-template-columns: 72px minmax(320px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) clamp(20px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.product-entry-alt {
  background: rgba(248, 244, 240, 0.88);
}

.product-entry.is-hidden {
  display: none;
}

.product-number {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  border-right: 1px solid var(--line);
  color: #9b8778;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 14px;
  align-items: stretch;
}

.gallery-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 0;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(228, 216, 206, 0.88);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 235, 229, 0.82)),
    repeating-linear-gradient(90deg, rgba(155, 135, 120, 0.08) 0 1px, transparent 1px 20px);
}

.gallery-main-image {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(23, 27, 31, 0.12));
}

.gallery-thumbs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.gallery-thumb {
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1 / 1;
  padding: 8px;
  border: 1px solid rgba(228, 216, 206, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  border-color: rgba(184, 121, 78, 0.38);
  box-shadow: 0 14px 28px rgba(23, 27, 31, 0.08);
  transform: translateY(-2px);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-copy {
  max-width: 660px;
}

.product-meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.crafted-for {
  margin: 10px 0 0;
  color: #6c5c51;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
}

.customer-quote {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(184, 121, 78, 0.52);
  background: rgba(248, 244, 240, 0.9);
}

.customer-quote p,
.customer-quote cite {
  margin: 0;
}

.customer-quote p {
  color: var(--ink);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.55;
}

.customer-quote cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.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;
}

.product-copy p {
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.spec-list dd {
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.rating-link {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-color: rgba(110, 67, 53, 0.28);
  text-underline-offset: 0.16em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.rating-link:hover,
.rating-link:focus-visible {
  color: var(--teal);
  text-decoration-color: rgba(184, 121, 78, 0.52);
}

.range-section {
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.range-section .eyebrow {
  color: #d7a274;
}

.range-grid {
  display: grid;
  gap: 18px;
}

.range-grid div {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.range-grid span {
  color: #d7a274;
  font-size: 0.78rem;
  font-weight: 900;
}

.range-grid h3 {
  margin-top: 10px;
  font-size: 1.18rem;
}

.range-grid p {
  margin: 10px 0 0;
  color: #cbd4dc;
}

.contact-strip {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(243, 226, 213, 0.95), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(184, 121, 78, 0.14), rgba(110, 67, 53, 0.08));
}

.contact-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  max-width: 10ch;
}

.contact-strip p {
  max-width: 42ch;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 78px);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-logo {
  width: clamp(116px, 12vw, 156px);
  height: auto;
  opacity: 0.78;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
  transition: color 180ms ease, opacity 180ms ease;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.social-icon {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-link span {
  line-height: 1.1;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--wine);
  opacity: 0.9;
}

@media (max-width: 1080px) {
  .hero-shell,
  .catalogue-intro,
  .about-section,
  .range-section,
  .contact-strip {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    min-height: 520px;
  }

  .product-entry {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .product-gallery,
  .product-copy {
    grid-column: 2;
  }

  .product-number {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: clamp(132px, 40vw, 220px);
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

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

  .hero-stage {
    min-height: 420px;
  }

  .hero-panel-shears {
    right: -2%;
    width: 74%;
  }

  .hero-panel-black {
    width: 48%;
  }

  .hero-panel-pink {
    width: 40%;
  }

  .filter-band {
    top: 0;
  }

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

  .product-number {
    justify-content: flex-start;
    min-height: 0;
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-gallery,
  .product-copy {
    grid-column: auto;
  }

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

  .gallery-stage {
    min-height: 300px;
  }

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

  .gallery-thumb {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
