@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --benlotex-white: #fff;
  --benlotex-ivory: #f7f4ee;
  --benlotex-sand: #e8e0d4;
  --benlotex-charcoal: #1d1d1d;
  --benlotex-black: #090909;
  --benlotex-taupe: #9b8d7c;
  --benlotex-gold: #b39a67;
  --benlotex-font-heading: "Cormorant Garamond", Georgia, serif;
  --benlotex-font-body: "Inter", Arial, sans-serif;
  --benlotex-radius-small: 4px;
  --benlotex-radius-medium: 8px;
  --benlotex-radius-large: 16px;
  --benlotex-container: 1440px;
  --benlotex-content: 1200px;
  --benlotex-space-xs: 0.5rem;
  --benlotex-space-sm: 1rem;
  --benlotex-space-md: 2rem;
  --benlotex-space-lg: clamp(3.5rem, 7vw, 7rem);
  --benlotex-space-xl: clamp(5rem, 10vw, 10rem);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--benlotex-charcoal);
  background: var(--benlotex-white);
  font-family: var(--benlotex-font-body);
  font-size: 16px;
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
:focus-visible {
  outline: 2px solid var(--benlotex-gold);
  outline-offset: 4px;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 9999;
  background: #fff;
  padding: 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.content-shell {
  width: min(calc(100% - 40px), var(--benlotex-content));
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.display,
h1,
h2,
h3 {
  font-family: var(--benlotex-font-heading);
  font-weight: 500;
  line-height: 1.04;
}
h1 {
  font-size: clamp(2.8rem, 7vw, 6.8rem);
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  margin: 0 0 1.25rem;
}
h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}
.section {
  padding-block: var(--benlotex-space-lg);
}
.section-intro {
  max-width: 700px;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}
.section-intro p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--benlotex-charcoal);
  border-radius: var(--benlotex-radius-small);
  background: var(--benlotex-charcoal);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s;
}
.button:hover {
  background: var(--benlotex-black);
}
.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--benlotex-black);
}
.button--outline {
  background: transparent;
  color: inherit;
}
.button--outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
  color: #fff;
}
.text-link {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}
.announcement {
  position: relative;
  z-index: 1001;
  min-height: 30px;
  padding: 0.38rem 1rem;
  background: var(--benlotex-black);
  color: #fff;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement-mobile {
  display: none;
}
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  transition:
    background 0.3s,
    color 0.3s;
}
.has-overlay-header .site-header:not(.is-scrolled) {
  position: absolute;
  top: 30px;
  width: 100%;
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  backdrop-filter: none;
}
.header-shell {
  width: min(calc(100% - 40px), var(--benlotex-container));
  min-height: 72px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.brand {
  font: 600 1.25rem/1 var(--benlotex-font-body);
  letter-spacing: 0.2em;
  text-decoration: none;
}
.custom-logo {
  width: auto;
  max-height: 38px;
}
.primary-nav {
  justify-self: center;
}
.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-menu a {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-menu a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s;
}
.site-menu a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.header-actions a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-decoration: none;
}
.cart-count {
  margin-left: 0.25rem;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}
.hero {
  position: relative;
  min-height: calc(100svh - 30px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #4d463d;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 9, 9, 0.58) 0%,
    rgba(9, 9, 9, 0.18) 48%,
    rgba(9, 9, 9, 0.05) 100%
  );
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-block: clamp(8rem, 18vh, 13rem) clamp(4rem, 10vh, 8rem);
}
.hero .display {
  margin: 0.1em 0;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: 0.02em;
}
.hero .descriptor {
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.26em;
}
.hero .tagline {
  font: 500 clamp(1.7rem, 3.2vw, 3.4rem) / 1.1 var(--benlotex-font-heading);
  margin: 0.55rem 0;
}
.hero .tagline,
.hero .lede {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero .lede {
  max-width: 590px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--benlotex-sand);
  border: 1px solid var(--benlotex-sand);
}
.benefit {
  padding: 2rem;
  background: #fff;
}
.benefit .number {
  display: block;
  color: #806d47;
  font-family: var(--benlotex-font-heading);
  font-size: 2rem;
}
.hero-placeholder-label {
  position: absolute;
  display: block;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(9, 9, 9, 0.48);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}
.benefit h3 {
  margin: 0.5rem 0;
}
.collections {
  background: var(--benlotex-ivory);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.collection-card {
  position: relative;
  min-height: clamp(360px, 48vw, 650px);
  overflow: hidden;
  background: #d9d1c5;
}
.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 9, 9, 0.7), transparent 60%);
  z-index: 1;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.collection-card:hover img {
  transform: scale(1.025);
}
.collection-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: #fff;
}
.collection-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 4rem);
}
.collection-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #d8cdbf, #8d7e6c);
  display: grid;
  place-items: center;
}
.placeholder-label {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.fibre-visual {
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--benlotex-ivory);
}
.fibre-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--benlotex-sand);
}
.fibre-line {
  height: 4px;
  margin-top: 0.75rem;
  background: var(--benlotex-taupe);
  border-radius: 99px;
}
.fibre-line.long {
  width: 100%;
  background: var(--benlotex-gold);
}
.fibre-line.short {
  width: 48%;
  box-shadow:
    70px 0 var(--benlotex-taupe),
    140px 0 var(--benlotex-taupe);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.comparison > div {
  padding: 1.5rem;
  border: 1px solid var(--benlotex-sand);
}
.comparison ul,
.standards-grid {
  padding: 0;
  list-style: none;
}
.comparison li {
  margin: 0.6rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.comparison li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--benlotex-gold);
}
.products-section {
  background: #fff;
}
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}
.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product a img {
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--benlotex-ivory);
  margin-bottom: 1rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font: 500 1.35rem/1.2 var(--benlotex-font-heading);
  padding: 0;
}
.woocommerce ul.products li.product .price {
  color: var(--benlotex-charcoal);
  font-size: 0.9rem;
}
.woocommerce ul.products li.product .button {
  margin-top: 0.5rem;
}
.process {
  background: var(--benlotex-black);
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  counter-reset: process;
}
.process-step {
  counter-increment: process;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 1rem;
  color: var(--benlotex-gold);
  font: 500 1.4rem var(--benlotex-font-heading);
}
.process-step h3 {
  font: 500 1rem/1.3 var(--benlotex-font-body);
}
.detail-spotlight {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--benlotex-ivory);
}
.detail-image {
  min-height: 500px;
  background: url("../images/hero-placeholder.jpg") center/cover;
}
.detail-copy {
  align-self: center;
  padding: clamp(2rem, 7vw, 7rem);
}
.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  padding: 0;
  list-style: none;
}
.detail-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--benlotex-sand);
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--benlotex-sand);
}
.standards-grid li {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: #fff;
  text-align: center;
  font: 500 1.3rem var(--benlotex-font-heading);
}
.statement {
  padding-block: var(--benlotex-space-xl);
  background: var(--benlotex-sand);
  text-align: center;
}
.statement .content-shell {
  max-width: 900px;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.journal-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--benlotex-ivory);
}
.journal-card h3 {
  margin: 0.8rem 0;
}
.newsletter {
  background: var(--benlotex-charcoal);
  color: #fff;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
}
.newsletter-note {
  font-size: 0.75rem;
  color: #d3cec6;
}
.site-footer {
  padding-top: var(--benlotex-space-lg);
  background: var(--benlotex-black);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
}
.footer-grid h2 {
  font: 600 0.72rem var(--benlotex-font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-grid ul {
  padding: 0;
  list-style: none;
}
.footer-grid li {
  margin: 0.45rem 0;
}
.footer-grid a,
.footer-grid p {
  font-size: 0.85rem;
  color: #d8d3cc;
  text-decoration: none;
}
.footer-brand p {
  max-width: 280px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  margin-top: 4rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #aaa49c;
  font-size: 0.7rem;
}
.site-main:not(.front-main) {
  min-height: 60vh;
  padding-block: var(--benlotex-space-lg);
}
.page-header {
  max-width: 800px;
  margin-bottom: 3rem;
}
.commerce-main {
  padding-block: 4rem;
}
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}
.woocommerce button.button.alt,
.woocommerce a.button.alt {
  background: var(--benlotex-black);
  color: #fff;
}
.woocommerce .quantity .qty {
  min-height: 48px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 48px;
  padding: 0.7rem;
  border: 1px solid #bbb;
  border-radius: 2px;
}
.wpcf7 form,
.wpcf7 label,
.wpcf7-form-control-wrap,
.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
  display: block;
  width: 100%;
  max-width: 100%;
}
.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
  min-height: 48px;
  padding: 0.75rem;
  border: 1px solid #bbb;
  border-radius: 2px;
}
.wpcf7 textarea {
  min-height: 160px;
  resize: vertical;
}
.benlotex-accordion {
  border-top: 1px solid var(--benlotex-sand);
}
.benlotex-accordion button {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--benlotex-sand);
  background: none;
  text-align: left;
}
.benlotex-accordion-panel {
  padding: 1rem 0;
}
.placeholder-notice {
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--benlotex-gold);
  background: var(--benlotex-ivory);
  font-size: 0.85rem;
}
@media (max-width: 1100px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .header-shell {
    grid-template-columns: auto auto 1fr;
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    inset: var(--benlotex-menu-top, 102px) 0 auto;
    width: 100vw;
    max-width: 100vw;
    justify-self: auto;
    height: calc(100vh - var(--benlotex-menu-top, 102px));
    height: calc(100dvh - var(--benlotex-menu-top, 102px));
    max-height: calc(100dvh - var(--benlotex-menu-top, 102px));
    display: none;
    padding: 2rem;
    background: var(--benlotex-ivory);
    color: var(--benlotex-charcoal);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .has-overlay-header .primary-nav {
    top: var(--benlotex-menu-top, 102px);
  }
  .primary-nav.is-open {
    display: block;
  }
  .site-menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .site-menu li {
    width: 100%;
  }
  .site-menu a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid var(--benlotex-sand);
    font-size: 0.85rem;
  }
  .header-actions {
    justify-self: end;
  }
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: 2fr repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .content-shell {
    width: min(calc(100% - 32px), var(--benlotex-content));
  }
  .header-shell {
    width: calc(100% - 24px);
    min-height: 64px;
    gap: 0.35rem;
  }
  .primary-nav,
  .has-overlay-header .primary-nav {
    top: var(--benlotex-menu-top, 94px);
  }
  .header-actions a:first-child,
  .header-actions a:nth-child(2) {
    display: none;
  }
  .brand {
    font-size: 1rem;
  }
  .hero {
    min-height: 820px;
    align-items: end;
  }
  .hero-media {
    object-position: 62% center;
  }
  .hero::before {
    background: rgba(9, 9, 9, 0.72);
  }
  .hero-content {
    width: calc(100% - 32px);
    min-width: 0;
    padding-block: 8rem 3rem;
    text-shadow: 0 1px 8px rgba(9, 9, 9, 0.45);
  }
  .hero .display {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.2rem);
    letter-spacing: -0.025em;
    white-space: nowrap;
  }
  .hero .descriptor {
    font-size: 0.72rem;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-placeholder-label {
    right: 1rem;
    bottom: 0.4rem;
    max-width: calc(100% - 2rem);
    font-size: 0.5rem;
    white-space: normal;
    text-align: right;
  }
  .benefit-grid,
  .collection-grid,
  .split,
  .comparison,
  .detail-spotlight,
  .newsletter-grid,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .collection-card {
    min-height: 480px;
  }
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .woocommerce ul.products li.product .button {
    width: 100%;
    padding: 0.7rem 0.4rem;
    font-size: 0.65rem;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-image {
    min-height: 520px;
  }
  .standards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom > * {
    margin-bottom: 0.6rem;
  }
  .detail-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 430px) {
  .announcement {
    padding-inline: 0.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }
  .announcement-desktop {
    display: none;
  }
  .announcement-mobile {
    display: inline;
  }
}
@media (max-width: 360px) {
  .benefit-grid,
  .standards-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  .header-actions {
    gap: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
