﻿:root {
  --ink: #171a17;
  --ink-soft: #242923;
  --bark: #5a3825;
  --orange: #b38a54;
  --orange-dark: #765837;
  --moss: #505a49;
  --sage: #919987;
  --sawdust: #d8c8aa;
  --canvas: #e8e3d9;
  --paper: #f5f2eb;
  --white: #fffdf8;
  --muted: #66685f;
  --line: rgba(23, 26, 23, 0.18);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.wrap,
.section-inner,
.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  color: var(--white);
  background: var(--ink);
  border-bottom: 4px solid var(--orange);
}

.nav {
  width: min(var(--max), calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-grid;
  text-decoration: none;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.brand span {
  margin-top: 7px;
  color: var(--sawdust);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: rgba(255, 253, 248, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-links .basket-link {
  margin-left: 8px;
  color: var(--ink);
  background: var(--orange);
}

.nav-links .basket-link:hover {
  color: var(--ink);
  background: #ec9249;
}

.nav-links .basket-link.has-items {
  box-shadow: inset 0 0 0 2px var(--white);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 21px;
  height: 2px;
  display: block;
  background: currentColor;
}

.menu-toggle span {
  margin: 5px 0;
}

.shop-hero {
  min-height: min(720px, calc(100vh - 76px));
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 18, 16, 0.92) 0%, rgba(16, 18, 16, 0.68) 46%, rgba(16, 18, 16, 0.2) 78%),
    url("../images/firewood-yard-v2.webp") center 58% / cover;
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: var(--orange);
}

.shop-hero .hero-inner {
  padding: 72px 0 76px;
}

.hero-copy {
  max-width: 720px;
}

.shop-hero h1 {
  max-width: 700px;
  margin-bottom: 20px;
}

.hero-kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy .lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 2px solid var(--ink);
  border-radius: 1px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.is-added {
  border-color: var(--moss);
  background: var(--moss);
  color: var(--white);
}

.btn.orange,
.btn.gold {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.btn.outline,
.btn.light {
  border-color: currentColor;
  background: transparent;
  color: var(--white);
}

.btn.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.yard-strip {
  color: var(--white);
  background: var(--ink);
}

.yard-strip .wrap {
  min-height: 104px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.yard-fact {
  padding: 23px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.yard-fact:first-child {
  padding-left: 0;
}

.yard-fact:last-child {
  border-right: 0;
}

.yard-fact strong {
  display: block;
  color: var(--sawdust);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.yard-fact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.band {
  padding: 84px 0;
}

.band.paper {
  background: var(--paper);
}

.band.dark {
  color: var(--white);
  background: var(--ink-soft);
}

.band.moss {
  color: var(--white);
  background: var(--moss);
}

.band.alt {
  background: var(--sawdust);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head p,
.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .section-head p,
.dark .section-lead,
.moss .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.dark h2,
.dark h3,
.moss h2,
.moss h3 {
  color: var(--white);
}

.stock-list {
  border-top: 2px solid var(--ink);
}

.stock-item {
  min-height: 370px;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.stock-item:nth-child(even) {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
}

.stock-item:nth-child(even) .stock-image {
  order: 2;
}

.stock-image {
  min-height: 370px;
  overflow: hidden;
  background: #d6ceb9;
}

.stock-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-copy {
  padding: 44px clamp(28px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stock-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 16px;
}

.stock-top h3 {
  max-width: 420px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.price {
  margin: 0;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  white-space: nowrap;
}

.stock-copy > p {
  max-width: 580px;
  color: var(--muted);
}

.stock-notes {
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.stock-notes li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: #474a43;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
}

.work-photo {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.work-photo.small {
  min-height: 255px;
}

.work-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.work-stack {
  display: grid;
  gap: 10px;
}

.work-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 22px 18px;
  z-index: 1;
  color: var(--white);
  background: linear-gradient(transparent, rgba(15, 17, 15, 0.9));
}

.work-caption strong {
  display: block;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.work-caption span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.image-frame {
  min-height: 440px;
  overflow: hidden;
  background: var(--ink);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.page-intro {
  padding: 68px 0 62px;
  color: var(--white);
  background: var(--ink-soft);
  border-bottom: 8px solid var(--orange);
}

.page-intro h1 {
  max-width: 940px;
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-intro .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  border-top: 2px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(170px, 0.55fr) minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.service-row h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  min-height: 600px;
  border-top: 1px solid var(--line);
}

.service-feature.reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
}

.service-feature.reverse .service-feature-image {
  order: 2;
}

.service-feature-image {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.service-feature-copy {
  padding: clamp(44px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.service-feature-copy h2 {
  max-width: 650px;
  text-transform: none;
}

.service-feature-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-detail-list {
  margin: 18px 0 4px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-detail-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #3f443e;
  font-weight: 700;
}

.service-feature.dark-copy .service-feature-copy {
  color: var(--white);
  background: var(--ink-soft);
}

.service-feature.dark-copy .service-feature-copy h2 {
  color: var(--white);
}

.service-feature.dark-copy .service-feature-copy > p:not(.eyebrow),
.service-feature.dark-copy .service-detail-list li {
  color: rgba(255, 255, 255, 0.72);
}

.service-feature.dark-copy .service-detail-list,
.service-feature.dark-copy .service-detail-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.service-assurance {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.service-assurance-list {
  border-top: 2px solid var(--ink);
}

.service-assurance-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.service-assurance-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.service-assurance-list p {
  margin: 0;
  color: var(--muted);
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.quote-panel {
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background: var(--ink);
}

.quote-panel h2,
.quote-panel h3 {
  color: var(--white);
}

.contact-grid,
.order-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 116px;
}

.contact-details a {
  display: block;
  margin: 7px 0 22px;
  font-size: 1.15rem;
  font-weight: 900;
}

.form {
  display: grid;
  gap: 16px;
}

.form h2 {
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.field {
  display: grid;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #aca58f;
  border-radius: 0;
  outline: none;
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 3px rgba(215, 123, 50, 0.2);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hp {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}

.cart-shell {
  padding: clamp(24px, 4vw, 44px);
  border: 2px solid var(--ink);
  background: var(--paper);
}

.cart-table {
  width: 100%;
  margin: 14px 0 34px;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 15px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.cart-table th {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.cart-table input {
  width: 72px;
  min-height: 42px;
}

.cart-table .btn {
  min-height: 40px;
  padding: 7px 10px;
  font-size: 0.8rem;
}

.notice {
  padding: 23px;
  border-left: 7px solid var(--orange);
  background: var(--sawdust);
}

.notice h2 {
  font-size: 1.45rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
}

.card h2,
.card h3 {
  color: var(--ink);
}

.list {
  padding-left: 20px;
  color: var(--muted);
}

.policy {
  max-width: 860px;
}

.policy h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.policy h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}

.site-footer {
  padding: 54px 0 24px;
  color: var(--white);
  background: #111310;
  border-top: 8px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 30px;
}

.footer-grid h3 {
  color: var(--sawdust);
  text-transform: uppercase;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.chat-link {
  display: none;
}

.basket-notice {
  width: min(430px, calc(100% - 28px));
  min-height: 86px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 14px 14px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
  border-left: 6px solid var(--orange);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.basket-notice.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.basket-notice.error {
  border-left-color: #b94b3f;
}

.basket-notice strong,
.basket-notice span {
  display: block;
}

.basket-notice strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.basket-notice span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.basket-notice .btn {
  min-height: 44px;
  padding: 9px 14px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 80px 0 auto;
    display: none;
    padding: 12px 18px 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink);
    border-bottom: 4px solid var(--orange);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links .basket-link {
    margin: 6px 0 0;
  }

  .shop-hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .shop-hero .hero-inner {
    padding: 110px 0 58px;
  }

  .yard-strip .wrap,
  .grid,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .yard-fact,
  .yard-fact:first-child {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .stock-item,
  .stock-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .stock-item:nth-child(even) .stock-image {
    order: 0;
  }

  .stock-image {
    min-height: 330px;
  }

  .split,
  .contact-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    position: static;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-photo,
  .work-photo.small {
    min-height: 400px;
  }

  .service-row {
    grid-template-columns: 60px 1fr;
  }

  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }

  .service-feature.reverse .service-feature-image {
    order: 0;
  }

  .service-feature-image {
    min-height: 460px;
  }

  .service-assurance {
    grid-template-columns: 1fr;
  }

  .service-row p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .wrap,
  .section-inner,
  .hero-inner,
  .nav {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    inset-block-start: 72px;
  }

  .shop-hero {
    min-height: 560px;
  }

  .shop-hero h1 {
    max-width: 100%;
    font-size: 2.3rem;
    overflow-wrap: anywhere;
  }

  .hero-copy .lead {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .band {
    padding: 58px 0;
  }

  .stock-image {
    min-height: 280px;
  }

  .stock-copy {
    padding: 29px 20px 34px;
  }

  .stock-top {
    display: block;
  }

  .price {
    margin-top: 12px;
  }

  .actions .btn {
    width: 100%;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-feature-image {
    min-height: 380px;
  }

  .service-feature-copy {
    padding: 40px 22px 46px;
  }

  .service-assurance-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-row p {
    grid-column: 1;
  }

  .cart-shell {
    padding: 18px;
    overflow-x: auto;
  }

  .cart-table {
    min-width: 660px;
  }

  .basket-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }
}

