:root {
  --green: #12642e; --green-dark: #083d21; --green-deep: #062f1a; --green-bright: #1c7a3e;
  --orange: #ed7d31; --ink: #1d251f; --muted: #667069; --cream: #f3f1ea; --cream-dark: #e9e5da;
  --white: #ffffff; --line: #d8ddd8; --shadow: 0 18px 50px rgba(15, 50, 27, 0.12);
  --font-display: "Roboto Slab", Rockwell, Georgia, serif; --font-body: Lato, Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; }
h2 { font-size: clamp(2.25rem, 4.2vw, 4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.35rem; }
.site-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 12px; z-index: 200; background: white; color: var(--green); padding: 10px 14px; }
.skip-link:focus { top: 12px; }

.utility-bar { background: var(--green-deep); color: rgba(255,255,255,.84); font-size: .78rem; letter-spacing: .02em; }
.utility-inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.utility-inner a { color: white; font-weight: 800; }
.site-header { position: relative; z-index: 50; background: white; border-bottom: 1px solid rgba(18,100,46,.12); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 136px; }
.brand img { width: 136px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 20px; margin-left: 8px; }
.main-nav a { position: relative; padding: 32px 0; color: #314037; font-size: .9rem; font-weight: 800; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 2px; background: var(--green); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 15px; margin-left: auto; }
.header-action { border: 0; background: transparent; padding: 10px 0; color: var(--ink); font-size: .88rem; font-weight: 800; cursor: pointer; }
.basket-button { border: 0; border-radius: 999px; background: var(--green); color: white; padding: 12px 17px; font-size: .86rem; font-weight: 800; cursor: pointer; }
.basket-button span { display: inline-grid; min-width: 21px; min-height: 21px; place-items: center; margin-left: 6px; border-radius: 50%; background: white; color: var(--green); }
.mobile-menu-button { display: none; }
.search-panel { position: absolute; inset-inline: 0; top: 100%; background: var(--cream); box-shadow: var(--shadow); border-top: 1px solid var(--line); }
.search-panel-inner { min-height: 125px; display: grid; grid-template-columns: .8fr 2fr auto; align-items: center; gap: 22px; }
.search-panel label { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.search-panel input { min-width: 0; border: 0; border-bottom: 2px solid var(--green); background: transparent; padding: 13px 4px; outline: none; }
.search-panel button { border: 0; background: var(--green); color: white; border-radius: 4px; padding: 14px 20px; font-weight: 800; cursor: pointer; }

.hero { position: relative; isolation: isolate; min-height: 690px; display: flex; align-items: center; overflow: hidden; background: var(--green-deep); color: white; }
.hero-media { position: absolute; inset: 0; z-index: -3; background: url("../images/hero-yard.jpg") center 48% / cover no-repeat; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,40,20,.95) 0%, rgba(5,42,22,.79) 47%, rgba(5,42,22,.22) 78%, rgba(5,42,22,.12) 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: -1; height: 180px; background: linear-gradient(transparent, rgba(5,36,20,.35)); }
.hero-content { padding-block: 100px 110px; }
.eyebrow { margin-bottom: 17px; color: var(--green); font-size: .74rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #a9d4b8; }
.hero h1 { max-width: 790px; margin-bottom: 24px; font-size: clamp(3.5rem, 7vw, 6.8rem); letter-spacing: -.055em; }
.hero p { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,.85); font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 52px; padding: 14px 22px; border: 1px solid transparent; border-radius: 4px; font-size: .9rem; font-weight: 900; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-bright); color: white; }
.button-primary:hover { background: #218a48; }
.button-light { border-color: rgba(255,255,255,.55); color: white; backdrop-filter: blur(6px); }
.button-light:hover { background: white; color: var(--green-deep); }
.button-white { background: white; color: var(--green-deep); }
.hero-proof { display: flex; gap: 0; margin-top: 55px; color: rgba(255,255,255,.72); font-size: .86rem; }
.hero-proof span { padding: 0 28px; border-right: 1px solid rgba(255,255,255,.25); }
.hero-proof span:first-child { padding-left: 0; }
.hero-proof span:last-child { border: 0; }
.hero-proof strong { display: block; color: white; font-family: var(--font-display); font-size: 1.1rem; }

.quick-strip { background: var(--green); color: white; }
.quick-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-strip a { display: flex; min-height: 104px; justify-content: center; flex-direction: column; padding: 22px 30px; border-right: 1px solid rgba(255,255,255,.2); transition: background .2s; }
.quick-strip a:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.quick-strip a:hover { background: rgba(255,255,255,.08); }
.quick-strip span { color: rgba(255,255,255,.68); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quick-strip strong { font-family: var(--font-display); font-size: 1.05rem; }

.section { padding-block: 110px; }
.section-cream { background: var(--cream); }
.section-heading { margin-bottom: 45px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.split-heading > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 1.05rem; }
.project-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; gap: 18px; }
.project-card { position: relative; isolation: isolate; min-height: 470px; overflow: hidden; border-radius: 4px; color: white; }
.project-card img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(0deg, rgba(3,31,17,.92), rgba(3,31,17,.06) 73%); }
.project-card::after { content: ""; position: absolute; inset: 0; z-index: -1; border: 1px solid rgba(255,255,255,.22); border-radius: inherit; }
.project-card:hover img { transform: scale(1.04); }
.project-card-copy { position: absolute; inset: auto 0 0; padding: 30px; }
.project-card-copy > span { display: inline-block; margin-bottom: 16px; color: #b5d5bf; font-family: var(--font-display); font-weight: 800; }
.project-card h3 { margin-bottom: 10px; font-size: clamp(1.65rem, 2.4vw, 2.35rem); }
.project-card p { min-height: 50px; margin-bottom: 21px; color: rgba(255,255,255,.75); font-size: .9rem; }
.project-card strong { font-size: .86rem; }
.category-links { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border-top: 1px solid #cbd2cb; border-bottom: 1px solid #cbd2cb; }
.category-links a { display: flex; justify-content: space-between; gap: 12px; padding: 21px 18px; border-right: 1px solid #cbd2cb; font-weight: 900; }
.category-links a:first-child { padding-left: 0; }
.category-links a:last-child { border: 0; }
.category-links span { color: var(--green); }

.product-heading { grid-template-columns: 1fr auto; }
.text-link { color: var(--green); font-weight: 900; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: white; transition: box-shadow .2s, transform .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #f2f2ef; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover .product-image-wrap img { transform: scale(1.04); }
.product-badge { position: absolute; top: 14px; left: 14px; border-radius: 999px; background: white; color: var(--green); padding: 6px 10px; font-size: .66rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.product-card-body { padding: 20px; }
.product-category { color: var(--green); font-size: .69rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { min-height: 49px; margin: 8px 0 20px; font-size: 1.25rem; }
.product-buy-row { display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.product-buy-row strong { display: block; font-family: var(--font-display); font-size: 1.12rem; }
.product-buy-row small { display: block; color: var(--muted); font-size: .7rem; }
.add-button { min-width: 74px; border: 1px solid var(--green); border-radius: 3px; background: transparent; color: var(--green); padding: 9px 11px; font-size: .74rem; font-weight: 900; cursor: pointer; transition: .2s; }
.add-button:hover, .add-button.added { background: var(--green); color: white; }

/* Homepage CNC service */
.cnc-home-band { overflow: hidden; background: var(--green); color: white; }
.cnc-home-grid { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 650px; }
.cnc-home-copy { align-self: center; padding: 85px 75px 85px 0; }
.cnc-home-copy h2 { margin-bottom: 24px; }
.cnc-home-copy > p { color: rgba(255,255,255,.72); font-size: 1.04rem; }
.cnc-panel-visual { position: relative; align-self: stretch; min-width: calc((100vw - min(1180px, calc(100vw - 40px))) / 2 + 100%); overflow: hidden; background:
  linear-gradient(rgba(6,47,26,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(6,47,26,.16) 1px, transparent 1px),
  linear-gradient(115deg, #d9b276 0%, #b9874f 50%, #d2a267 100%);
  background-size: 40px 40px, 40px 40px, cover; box-shadow: inset 30px 0 60px rgba(4,38,20,.18); }
.cnc-panel-visual::before { content: ""; position: absolute; inset: 42px; border: 2px solid rgba(6,47,26,.55); box-shadow: inset 0 0 0 11px rgba(255,255,255,.08); }
.cnc-panel-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,47,26,.35), transparent 25%); pointer-events: none; }
.cnc-axis { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; color: var(--green-deep); font-family: var(--font-display); font-size: .68rem; font-weight: 900; }
.cnc-axis::after { content: ""; display: block; width: 85px; height: 2px; background: var(--green-deep); }
.cnc-axis-x { left: 66px; top: 64px; }
.cnc-axis-y { left: 61px; top: 91px; transform: rotate(90deg); transform-origin: 10px center; }
.cnc-tool { position: absolute; z-index: 3; left: 49%; top: 17%; width: 82px; height: 190px; border-radius: 8px 8px 2px 2px; background: linear-gradient(90deg, #cbd0cb, #f4f5f2 50%, #9da59e); box-shadow: 0 14px 25px rgba(5,38,20,.28); }
.cnc-tool::before { content: ""; position: absolute; left: 18px; right: 18px; top: -33px; height: 42px; border-radius: 6px 6px 0 0; background: var(--green-deep); }
.cnc-tool span { position: absolute; left: 31px; bottom: -55px; width: 20px; height: 68px; background: linear-gradient(90deg, #89694a, #e0c098, #7a5b40); clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%); }
.cnc-cut { position: absolute; border: 10px solid rgba(80,50,24,.52); background: rgba(105,66,31,.25); box-shadow: inset 0 7px 15px rgba(50,31,16,.35); }
.cnc-cut-round { width: 125px; height: 125px; right: 15%; top: 19%; border-radius: 50%; }
.cnc-cut-slot { width: 47%; height: 72px; left: 17%; bottom: 28%; border-radius: 35px; }
.cnc-cut-pocket { width: 125px; height: 125px; right: 14%; bottom: 20%; border-radius: 18px; transform: rotate(9deg); }
.cnc-visual-label { position: absolute; z-index: 4; left: 42px; right: 42px; bottom: 42px; padding: 18px 22px; background: var(--green-deep); color: white; }
.cnc-visual-label span { display: block; color: #9ac6a9; font-size: .63rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.cnc-visual-label strong { font-family: var(--font-display); }

.trade-band { overflow: hidden; background: var(--green-deep); color: white; }
.trade-grid { display: grid; grid-template-columns: .96fr 1.04fr; min-height: 680px; }
.trade-copy { align-self: center; padding: 90px 80px 90px 0; }
.trade-copy h2 { margin-bottom: 26px; }
.trade-copy > p { max-width: 570px; color: rgba(255,255,255,.72); font-size: 1.06rem; }
.tick-list { margin: 30px 0 34px; padding: 0; list-style: none; }
.tick-list li { position: relative; margin: 13px 0; padding-left: 30px; color: rgba(255,255,255,.88); }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: #9ac6a9; font-weight: 900; }
.trade-image-card { position: relative; min-width: calc((100vw - min(1180px, calc(100vw - 40px))) / 2 + 100%); }
.trade-image-card img { width: 100%; height: 100%; object-fit: cover; }
.trade-stat { position: absolute; left: 30px; bottom: 30px; max-width: 205px; background: white; color: var(--green-deep); padding: 21px 24px; box-shadow: var(--shadow); }
.trade-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; }
.trade-stat span { color: var(--muted); font-size: .76rem; }

.service-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 105px; }
.service-intro h2 { max-width: 500px; }
.service-intro p { max-width: 480px; color: var(--muted); font-size: 1.03rem; }
.service-list article { display: grid; grid-template-columns: 58px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid #ccd1cb; }
.service-list article:last-child { border-bottom: 1px solid #ccd1cb; }
.service-list article > span { color: var(--green); font-family: var(--font-display); font-weight: 900; }
.service-list h3 { margin-bottom: 8px; font-size: 1.45rem; }
.service-list p { margin: 0; color: var(--muted); }
.service-list a { color: var(--green); font-weight: 900; }

.testimonial-section { background: #fdfdfb; }
.testimonial-grid { display: grid; grid-template-columns: .65fr 1fr .36fr; gap: 60px; align-items: center; }
.testimonial-grid h2 { margin: 0; font-size: clamp(2.2rem, 3.4vw, 3.5rem); }
.testimonial-grid blockquote { margin: 0; padding-left: 42px; border-left: 3px solid var(--green); font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.55; }
.testimonial-grid blockquote footer { display: flex; gap: 8px; flex-direction: column; margin-top: 22px; font-family: var(--font-body); font-size: .78rem; }
.testimonial-grid blockquote footer span { color: var(--muted); }
.review-score { text-align: center; }
.review-score strong { display: block; color: var(--green); font-family: var(--font-display); font-size: 2.4rem; }
.review-score span { color: var(--muted); font-size: .75rem; }

.visit-cta { position: relative; isolation: isolate; min-height: 500px; display: flex; align-items: center; color: white; overflow: hidden; }
.visit-bg { position: absolute; inset: 0; z-index: -2; background: url("../images/construction-timber.png") center / cover no-repeat; filter: saturate(.65); transform: scale(1.03); }
.visit-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4,47,25,.95), rgba(4,47,25,.77)); }
.visit-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-block: 80px; }
.visit-content h2 { margin: 0; }
.visit-details { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 35px; padding: 35px; border: 1px solid rgba(255,255,255,.32); background: rgba(3,40,20,.28); backdrop-filter: blur(6px); }
.visit-details p { margin: 0; color: rgba(255,255,255,.77); }
.visit-details p strong { color: white; }
.visit-details .button { grid-column: 1 / -1; }

.site-footer { background: #061f12; color: rgba(255,255,255,.72); padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 70px; padding-bottom: 65px; }
.footer-grid h2 { margin-bottom: 20px; color: white; font-family: var(--font-body); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 9px 0; font-size: .86rem; }
.footer-grid a:hover { color: white; }
.footer-grid p { font-size: .86rem; }
.footer-brand img { width: 150px; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { max-width: 270px; }
.footer-brand > a { color: white; font-weight: 800; }
.footer-directions { color: white; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; }
.footer-bottom div { display: flex; gap: 22px; }

/* Inner pages */
.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--green-deep); color: white; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(110deg, rgba(4,43,22,.95), rgba(4,43,22,.65)), url("../images/hero-yard.jpg") center 60% / cover; }
.page-hero::after { content: ""; position: absolute; right: -8vw; bottom: -19vw; z-index: -1; width: 44vw; height: 44vw; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-hero-grid { min-height: 480px; display: grid; grid-template-columns: 1.25fr .55fr; gap: 90px; align-items: center; padding-block: 80px; }
.page-hero h1, .contact-hero h1 { max-width: 800px; margin-bottom: 23px; font-size: clamp(3.2rem, 6vw, 6rem); letter-spacing: -.05em; }
.page-hero-grid > div:first-child > p, .contact-hero-grid > div:first-child > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.76); font-size: 1.12rem; }
.page-hero-note { padding: 30px; border-left: 2px solid #9ac6a9; background: rgba(3,35,18,.32); backdrop-filter: blur(5px); }
.page-hero-note span { display: block; color: #a9d4b8; font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.page-hero-note strong { display: block; margin: 8px 0 5px; color: white; font-family: var(--font-display); font-size: 1.3rem; }
.page-hero-note p { margin: 0; color: rgba(255,255,255,.64); font-size: .82rem; }

/* Catalogue */
.catalogue-section { padding-block: 54px 110px; background: var(--cream); }
.catalogue-toolbar { display: grid; grid-template-columns: 1fr 220px; gap: 20px; margin-bottom: 32px; padding: 20px; border: 1px solid var(--line); background: white; }
.catalogue-toolbar label { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.catalogue-toolbar label > span { font-size: .75rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.catalogue-toolbar input, .catalogue-toolbar select { min-width: 0; border: 1px solid var(--line); border-radius: 3px; background: #fbfbf9; padding: 11px 12px; outline: none; }
.catalogue-toolbar input:focus, .catalogue-toolbar select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(18,100,46,.1); }
.catalogue-layout { display: grid; grid-template-columns: 235px 1fr; gap: 34px; align-items: start; }
.catalogue-sidebar { position: sticky; top: 20px; padding: 26px 22px; border: 1px solid var(--line); background: white; }
.catalogue-sidebar h2 { margin-bottom: 17px; font-family: var(--font-body); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.catalogue-sidebar > button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 15px; border: 0; border-bottom: 1px solid #e7eae6; background: transparent; color: #425047; padding: 11px 3px; text-align: left; cursor: pointer; }
.catalogue-sidebar > button span { min-width: 24px; color: #89928c; text-align: right; font-size: .7rem; }
.catalogue-sidebar > button.active { color: var(--green); font-weight: 900; }
.sidebar-help { margin-top: 24px; padding: 19px; background: var(--green-deep); color: white; }
.sidebar-help strong { font-family: var(--font-display); }
.sidebar-help p { margin: 8px 0 12px; color: rgba(255,255,255,.68); font-size: .76rem; }
.sidebar-help a { color: #b8d9c2; font-size: .76rem; font-weight: 900; }
.results-heading { display: flex; justify-content: space-between; align-items: center; min-height: 44px; margin-bottom: 16px; }
.results-heading p { margin: 0; color: var(--muted); font-size: .84rem; }
.results-heading button { border: 0; background: transparent; color: var(--green); font-size: .76rem; font-weight: 900; cursor: pointer; }
.catalogue-grid { grid-template-columns: repeat(3, 1fr); }
.catalogue-grid .product-card h3 { min-height: 48px; }
.empty-results { min-height: 430px; display: grid; place-content: center; justify-items: center; padding: 50px; border: 1px dashed #bbc3bc; background: white; text-align: center; }
.empty-results h2 { margin-bottom: 10px; font-size: 2rem; }
.empty-results p { max-width: 470px; color: var(--muted); }
.empty-results button { border: 1px solid var(--green); background: transparent; color: var(--green); padding: 10px 16px; font-weight: 900; cursor: pointer; }
.catalogue-cta { background: var(--green); color: white; }
.catalogue-cta .site-container { min-height: 250px; display: flex; justify-content: space-between; align-items: center; gap: 45px; }
.catalogue-cta h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.6rem); }

/* Services */
.service-page-hero::before { background: linear-gradient(110deg, rgba(4,43,22,.96), rgba(4,43,22,.58)), url("../images/delivery-van.webp") center 58% / cover; }
.delivery-grid { display: grid; grid-template-columns: 1.08fr .72fr; gap: 90px; align-items: center; }
.lead-copy { color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.delivery-prices { display: grid; grid-template-columns: repeat(3, 1fr); margin: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.delivery-prices > div { padding: 20px 16px; border-right: 1px solid var(--line); }
.delivery-prices > div:first-child { padding-left: 0; }
.delivery-prices > div:last-child { border: 0; }
.delivery-prices strong { display: block; color: var(--green); font-family: var(--font-display); font-size: 1.55rem; }
.delivery-prices span { display: block; color: var(--muted); font-size: .72rem; }
.postcode-checker { margin-top: 34px; padding: 24px; background: var(--cream); }
.postcode-checker label { display: block; margin-bottom: 10px; font-size: .75rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.postcode-checker > div { display: grid; grid-template-columns: 1fr auto; }
.postcode-checker input { min-width: 0; border: 1px solid #cbd2cb; border-right: 0; background: white; padding: 13px 14px; text-transform: uppercase; }
.postcode-checker button { border: 0; background: var(--green); color: white; padding: 13px 18px; font-weight: 900; cursor: pointer; }
.postcode-checker > p { margin: 13px 0 0; color: var(--green); font-size: .8rem; font-weight: 800; }
.delivery-map-card { padding: 24px; background: var(--green-deep); color: white; }
.delivery-map-card img { width: 100%; background: white; }
.delivery-map-card p { margin: 20px 0 0; color: rgba(255,255,255,.68); font-size: .82rem; }
.delivery-map-card p strong { color: white; }
.cutting-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.cutting-image { position: relative; min-height: 610px; }
.cutting-image img { width: 100%; height: 610px; object-fit: cover; }
.cutting-image > span { position: absolute; left: 24px; bottom: 24px; background: white; color: var(--green); padding: 12px 17px; font-weight: 900; }
.service-steps { margin: 32px 0; padding: 0; list-style: none; }
.service-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid #ccd1cb; }
.service-steps li:last-child { border-bottom: 1px solid #ccd1cb; }
.service-steps li > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-family: var(--font-display); font-size: .82rem; font-weight: 900; }
.service-steps strong { font-family: var(--font-display); font-size: 1.05rem; }
.service-steps p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; }
.trade-support { display: grid; grid-template-columns: .6fr 1.4fr; gap: 80px; }
.support-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.support-cards article { min-height: 265px; display: flex; flex-direction: column; justify-content: end; padding: 28px; border: 1px solid var(--line); background: white; }
.support-cards article > span { margin-bottom: auto; color: var(--green); font-family: var(--font-display); font-weight: 900; }
.support-cards h3 { margin-bottom: 11px; }
.support-cards p { margin: 0; color: var(--muted); font-size: .84rem; }
.support-cards article.support-card-featured { background: var(--green); color: white; }
.support-cards article.support-card-featured > span, .support-cards article.support-card-featured p { color: rgba(255,255,255,.72); }
.support-cards article.support-card-featured a { display: inline-block; margin-top: 18px; color: white; font-size: .78rem; font-weight: 900; }
.faq-section { padding-block: 100px; background: var(--green-deep); color: white; }
.faq-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 100px; }
.faq-grid h2 { margin: 0; }
.faq-list details { border-top: 1px solid rgba(255,255,255,.2); }
.faq-list details:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.faq-list summary { position: relative; padding: 22px 45px 22px 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 5px; color: #a9d4b8; font-family: var(--font-body); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; margin: 0; padding: 0 40px 22px 0; color: rgba(255,255,255,.67); }

/* About */
.about-hero::before { background: linear-gradient(110deg, rgba(4,43,22,.95), rgba(4,43,22,.58)), url("../images/construction-timber.png") center / cover; }
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.story-image { position: relative; }
.story-image > img { width: 100%; min-height: 620px; object-fit: cover; }
.story-image > div { position: absolute; right: -30px; bottom: 34px; width: 210px; padding: 24px; background: var(--green); color: white; }
.story-image strong { display: block; font-family: var(--font-display); font-size: 2.4rem; }
.story-image span { display: block; color: rgba(255,255,255,.72); font-size: .76rem; }
.story-copy > p:not(.lead-copy) { color: var(--muted); }
.values-band { padding-block: 100px; background: var(--green-deep); color: white; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border-top: 1px solid rgba(255,255,255,.2); }
.values-grid article { padding: 36px 40px 5px; border-right: 1px solid rgba(255,255,255,.2); }
.values-grid article:first-child { padding-left: 0; }
.values-grid article:last-child { border: 0; }
.values-grid article > span { color: #9ac6a9; font-family: var(--font-display); font-weight: 900; }
.values-grid h2 { margin: 35px 0 15px; font-size: clamp(2rem, 3vw, 3rem); }
.values-grid p { color: rgba(255,255,255,.65); }
.location-story { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.location-story > img { width: 100%; padding: 25px; background: white; box-shadow: var(--shadow); }
.button-outline { border-color: var(--green); color: var(--green); }
.button-outline:hover { background: var(--green); color: white; }
.about-cta { background: var(--green); color: white; }
.about-cta .site-container { min-height: 290px; display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.about-cta h2 { margin: 0; }

/* Contact */
.contact-hero { padding-block: 90px 110px; background: var(--green-deep); color: white; }
.contact-hero-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: start; }
.contact-methods { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-methods a { display: flex; flex-direction: column; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-methods span { color: #a9d4b8; font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-methods strong { color: white; font-family: var(--font-display); font-size: 1.08rem; }
.contact-methods small { color: rgba(255,255,255,.55); }
.contact-form-card { padding: 38px; background: white; color: var(--ink); box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; margin-bottom: 7px; font-size: .72rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 2px; background: #fafaf7; padding: 12px 13px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(18,100,46,.1); }
.full-field { grid-column: 1 / -1; }
.contact-form .button { width: 100%; }
.form-note { margin: -7px 0 0; color: var(--muted); text-align: center; font-size: .76rem; }
.form-note a { color: var(--green); font-weight: 900; }
.form-success { min-height: 500px; display: grid; place-content: center; justify-items: start; }
.form-success > span { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; background: var(--green); color: white; font-weight: 900; }
.form-success h2 { font-size: 2.25rem; }
.form-success p { color: var(--muted); }
.form-success button { border: 0; border-bottom: 1px solid var(--green); background: transparent; color: var(--green); padding: 7px 0; font-weight: 900; cursor: pointer; }
.visit-info { padding-block: 100px; background: var(--cream); }
.visit-info-grid { display: grid; grid-template-columns: .75fr .65fr .6fr; gap: 45px; align-items: center; }
.visit-info h2 { font-size: 3rem; }
.visit-info > p { color: var(--muted); }
.hours-card { padding: 27px; border: 1px solid var(--line); background: white; }
.hours-card h3 { margin-bottom: 18px; }
.hours-card > div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid var(--line); font-size: .76rem; }
.hours-card > div strong { color: var(--green); }
.hours-card p { margin: 17px 0 0; color: var(--muted); font-size: .74rem; }
.visit-info-grid > img { width: 100%; padding: 14px; background: white; box-shadow: var(--shadow); }

/* Legal */
.legal-page { padding-block: 100px 120px; background: var(--cream); }
.legal-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.legal-grid aside { position: sticky; top: 30px; align-self: start; }
.legal-grid h1 { margin-bottom: 20px; font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -.05em; }
.legal-grid aside p { color: var(--muted); }
.legal-grid article { padding: 48px; background: white; box-shadow: var(--shadow); }
.legal-grid article h2 { margin: 35px 0 12px; color: var(--green); font-size: 1.5rem; }
.legal-grid article h2:first-child { margin-top: 0; }
.legal-grid article p { color: #515d55; }
.legal-grid article a { color: var(--green); font-weight: 900; }
.legal-note { margin-top: 35px; padding: 18px 20px; border-left: 3px solid var(--green); background: var(--cream); color: var(--muted); font-size: .8rem; }

/* CNC machining page */
.cnc-page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--green-deep); color: white; }
.cnc-page-hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 80% 40%, rgba(45,139,75,.32), transparent 31%), linear-gradient(115deg, #052d19 0%, #084728 62%, #06371f 100%); }
.cnc-page-hero::after { content: ""; position: absolute; z-index: -1; right: -8vw; top: -13vw; width: 48vw; height: 48vw; border: 2px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.cnc-page-hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.15fr .55fr; gap: 95px; align-items: center; padding-block: 90px; }
.cnc-page-hero h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(3.4rem, 6.8vw, 6.7rem); letter-spacing: -.055em; }
.cnc-page-hero-grid > div:first-child > p { max-width: 720px; margin-bottom: 34px; color: rgba(255,255,255,.76); font-size: 1.13rem; }
.cnc-hero-spec { position: relative; z-index: 2; padding: 34px; border: 1px solid rgba(255,255,255,.24); background: rgba(2,30,16,.52); backdrop-filter: blur(7px); }
.cnc-hero-spec > span { color: #a9d4b8; font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.cnc-hero-spec strong { display: block; margin: 10px 0 12px; font-family: var(--font-display); font-size: 1.55rem; }
.cnc-hero-spec p { margin: 0; color: rgba(255,255,255,.64); font-size: .84rem; }
.cnc-hero-gridlines { position: absolute; z-index: -2; inset: 0 0 0 51%; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px); background-size: 52px 52px; transform: perspective(550px) rotateY(-16deg) scale(1.12); transform-origin: right center; }
.cnc-intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 105px; align-items: start; }
.cnc-intro-grid h2 { margin: 0; }
.cnc-intro-grid > div:last-child > p:not(.lead-copy) { color: var(--muted); }
.cnc-capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.cnc-capability-grid article { position: relative; min-height: 360px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: 28px; border: 1px solid #ced4ce; background: #fdfdfb; }
.cnc-capability-grid article > span { position: absolute; left: 25px; top: 22px; color: var(--green); font-family: var(--font-display); font-size: .8rem; font-weight: 900; }
.cnc-capability-icon { position: absolute; right: -28px; top: 35px; width: 155px; height: 155px; border: 18px solid rgba(18,100,46,.1); border-radius: 50%; }
.cnc-capability-icon::after { content: ""; position: absolute; left: -46px; top: 50%; width: 110px; height: 18px; border-radius: 9px; background: rgba(18,100,46,.12); transform: translateY(-50%); }
.cnc-capability-grid article:nth-child(2) .cnc-capability-icon { border-radius: 12px; transform: rotate(12deg); }
.cnc-capability-grid article:nth-child(3) .cnc-capability-icon { border-style: dotted; }
.cnc-capability-grid article:nth-child(4) .cnc-capability-icon { box-shadow: -34px 34px 0 rgba(18,100,46,.07); }
.cnc-capability-grid h3 { margin-bottom: 12px; }
.cnc-capability-grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.cnc-process-section { padding-block: 105px; background: var(--green-deep); color: white; }
.cnc-process-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: start; }
.cnc-process-grid > div > p { color: rgba(255,255,255,.65); }
.cnc-process-grid ol { margin: 0; padding: 0; list-style: none; }
.cnc-process-grid li { display: grid; grid-template-columns: 60px 1fr; gap: 25px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.19); }
.cnc-process-grid li:last-child { border-bottom: 1px solid rgba(255,255,255,.19); }
.cnc-process-grid li > span { color: #9ac6a9; font-family: var(--font-display); font-weight: 900; }
.cnc-process-grid strong { font-family: var(--font-display); font-size: 1.25rem; }
.cnc-process-grid li p { margin: 5px 0 0; color: rgba(255,255,255,.62); }
.cnc-brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.cnc-brief-card { padding: 42px; background: var(--green); color: white; }
.cnc-brief-card h2 { font-size: clamp(2.3rem, 3.5vw, 3.5rem); }
.cnc-brief-card ul { margin: 28px 0 0; padding: 0; list-style: none; }
.cnc-brief-card li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); }
.cnc-brief-card li:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.cnc-brief-card li::before { content: "→"; position: absolute; left: 0; color: #b8d9c2; }

@media (max-width: 1060px) {
  .header-inner { min-height: 76px; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; margin: 0; padding: 10px 20px 24px; border-top: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 5px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .mobile-menu-button { display: flex; width: 34px; height: 34px; justify-content: center; flex-direction: column; gap: 5px; border: 0; background: transparent; }
  .mobile-menu-button span { width: 21px; height: 2px; background: var(--green); }
  .brand { flex-basis: 118px; } .brand img { width: 118px; } .contact-link { display: none; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card:first-child { grid-column: 1 / -1; min-height: 400px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-copy { padding-right: 45px; }
  .service-grid { gap: 55px; }
  .testimonial-grid { grid-template-columns: .7fr 1fr; }
  .review-score { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid { gap: 45px; }
  .delivery-grid, .cutting-grid, .story-grid { gap: 55px; }
  .support-cards { grid-template-columns: 1fr; }
  .support-cards article { min-height: 205px; }
  .contact-hero-grid { gap: 45px; }
  .visit-info-grid { grid-template-columns: 1fr 1fr; }
  .visit-info-grid > img { display: none; }
  .cnc-home-copy { padding-right: 45px; }
  .cnc-page-hero-grid { gap: 50px; }
  .cnc-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .cnc-process-grid, .cnc-intro-grid { gap: 55px; }
}

@media (max-width: 720px) {
  .site-container { width: min(100% - 28px, 1180px); }
  .utility-inner span:first-child { display: none; }
  .utility-inner { min-height: 32px; font-size: .68rem; }
  .header-inner { gap: 14px; } .header-actions { gap: 10px; } .header-action { display: none; }
  .basket-button { padding: 10px 12px; font-size: .76rem; } .basket-button span { min-width: 18px; min-height: 18px; }
  .search-panel-inner { min-height: 165px; grid-template-columns: 1fr auto; padding-block: 20px; }
  .search-panel label { grid-column: 1 / -1; }
  .hero { min-height: 650px; } .hero-media { background-position: 63% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,40,20,.95), rgba(5,42,22,.72)); }
  .hero-content { padding-block: 78px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.4rem); } .hero p { font-size: 1rem; }
  .button-row { align-items: stretch; flex-direction: column; }
  .hero-proof { gap: 20px; flex-wrap: wrap; margin-top: 36px; }
  .hero-proof span { flex: 1 1 40%; padding: 0; border: 0; }
  .quick-strip-grid { grid-template-columns: 1fr; }
  .quick-strip a, .quick-strip a:first-child { min-height: 84px; padding: 17px 8px; border: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .section { padding-block: 75px; } .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card, .project-card:first-child { grid-column: auto; min-height: 400px; }
  .category-links { grid-template-columns: 1fr 1fr; }
  .category-links a, .category-links a:first-child { padding: 16px 8px; border-bottom: 1px solid #cbd2cb; }
  .category-links a:nth-child(2) { border-right: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { aspect-ratio: 1.25 / 1; }
  .trade-grid { grid-template-columns: 1fr; } .trade-copy { padding: 75px 0; }
  .trade-image-card { min-width: 100%; min-height: 360px; }
  .service-grid { grid-template-columns: 1fr; gap: 45px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 35px; }
  .testimonial-grid blockquote { padding-left: 22px; }
  .visit-content { grid-template-columns: 1fr; gap: 35px; }
  .visit-details { grid-template-columns: 1fr; padding: 26px; } .visit-details .button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom > span:last-child { display: none; }
  .page-hero-grid { min-height: 570px; grid-template-columns: 1fr; gap: 38px; padding-block: 65px; }
  .page-hero h1, .contact-hero h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .page-hero-note { padding: 22px; }
  .catalogue-toolbar { grid-template-columns: 1fr; }
  .catalogue-toolbar label { grid-template-columns: 1fr; gap: 5px; }
  .catalogue-layout { grid-template-columns: 1fr; }
  .catalogue-sidebar { position: static; }
  .catalogue-sidebar > button { display: none; }
  .catalogue-sidebar > button.active { display: flex; }
  .catalogue-sidebar h2::after { content: " — current filter"; color: var(--muted); font-weight: 400; text-transform: none; }
  .catalogue-grid { grid-template-columns: 1fr; }
  .catalogue-cta .site-container, .about-cta .site-container { min-height: 330px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .delivery-grid, .cutting-grid, .trade-support, .faq-grid, .story-grid, .location-story { grid-template-columns: 1fr; gap: 50px; }
  .delivery-prices { grid-template-columns: 1fr; }
  .delivery-prices > div, .delivery-prices > div:first-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .postcode-checker > div { grid-template-columns: 1fr; gap: 9px; }
  .postcode-checker input { border-right: 1px solid #cbd2cb; }
  .cutting-image, .cutting-image img { min-height: 400px; height: 400px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article, .values-grid article:first-child { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .story-image > img { min-height: 460px; }
  .story-image > div { right: 0; }
  .contact-hero { padding-block: 70px; }
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 25px 20px; }
  .contact-form { grid-template-columns: 1fr; }
  .full-field { grid-column: auto; }
  .visit-info-grid { grid-template-columns: 1fr; }
  .visit-info-grid > img { display: block; }
  .legal-grid { grid-template-columns: 1fr; gap: 35px; }
  .legal-grid aside { position: static; }
  .legal-grid article { padding: 30px 22px; }
  .cnc-home-grid { grid-template-columns: 1fr; }
  .cnc-home-copy { padding: 75px 0; }
  .cnc-panel-visual { min-width: 100%; min-height: 520px; }
  .cnc-tool { left: 43%; }
  .cnc-page-hero-grid { min-height: 720px; grid-template-columns: 1fr; gap: 42px; padding-block: 75px; }
  .cnc-page-hero h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .cnc-hero-gridlines { inset: 35% 0 0; }
  .cnc-intro-grid, .cnc-process-grid, .cnc-brief-grid { grid-template-columns: 1fr; gap: 48px; }
  .cnc-capability-grid { grid-template-columns: 1fr; }
  .cnc-capability-grid article { min-height: 300px; }
  .cnc-brief-card { padding: 30px 23px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }

/* Potting sheds page */
.shed-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--green-deep); color: white; }
.shed-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 78% 42%, rgba(92, 167, 100, .3), transparent 33%), linear-gradient(120deg, #052d19 0%, #084728 62%, #06351e 100%); }
.shed-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(90deg, transparent 30%, black 100%); }
.shed-hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: center; padding-block: 90px; }
.shed-hero-copy h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(3.5rem, 6.7vw, 6.5rem); letter-spacing: -.055em; }
.shed-hero-copy > p { max-width: 700px; margin-bottom: 32px; color: rgba(255,255,255,.74); font-size: 1.13rem; }
.shed-hero-points { display: flex; flex-wrap: wrap; gap: 12px 25px; margin: 35px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.shed-hero-points li { position: relative; padding-left: 20px; color: rgba(255,255,255,.78); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.shed-hero-points li::before { content: ""; position: absolute; left: 0; top: .32em; width: 9px; height: 9px; border: 2px solid #9bd0aa; border-radius: 50%; }
.shed-blueprint { position: relative; min-height: 490px; overflow: hidden; padding: 30px; border: 1px solid rgba(255,255,255,.25); background: rgba(2,30,16,.55); box-shadow: 0 28px 70px rgba(0,0,0,.18); backdrop-filter: blur(5px); }
.shed-blueprint-label span { display: block; color: #9fd0ad; font-size: .63rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.shed-blueprint-label strong { display: block; margin-top: 5px; font-family: var(--font-display); font-size: 1.5rem; }
.shed-elevation { position: absolute; left: 13%; right: 13%; bottom: 82px; height: 250px; }
.shed-roof { position: absolute; left: -5%; right: -5%; top: 0; height: 80px; border: 3px solid rgba(190,225,199,.82); border-bottom: 0; clip-path: polygon(0 100%, 17% 40%, 100% 0, 100% 100%); }
.shed-shell { position: absolute; left: 0; right: 0; bottom: 0; height: 178px; border: 3px solid rgba(190,225,199,.82); background: repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.055) 34px 36px); }
.shed-window, .shed-door { position: absolute; top: 22px; border: 2px solid rgba(190,225,199,.78); background: repeating-linear-gradient(90deg, rgba(190,225,199,.11) 0 30px, transparent 30px 32px); }
.shed-window::after, .shed-door::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: rgba(190,225,199,.72); }
.shed-window.one { left: 18px; width: 29%; height: 88px; }
.shed-window.two { left: 35%; width: 29%; height: 88px; }
.shed-door { right: 17px; width: 27%; height: 150px; }
.shed-bench { position: absolute; left: 16px; bottom: 22px; width: 62%; height: 12px; border: 2px solid rgba(190,225,199,.65); border-width: 2px 0; }
.shed-dimension { position: absolute; color: rgba(255,255,255,.5); font-size: .59rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.shed-dimension.width { left: 13%; right: 13%; bottom: 34px; border-top: 1px solid rgba(255,255,255,.4); text-align: center; }
.shed-dimension.width::before, .shed-dimension.width::after { content: ""; position: absolute; top: -4px; width: 7px; height: 7px; border: solid rgba(255,255,255,.45); transform: rotate(45deg); }
.shed-dimension.width::before { left: 0; border-width: 0 0 1px 1px; }
.shed-dimension.width::after { right: 0; border-width: 1px 1px 0 0; }
.shed-dimension.width span { position: relative; top: 7px; padding-inline: 9px; background: #083d23; }
.shed-dimension.height { right: 17px; top: 130px; bottom: 82px; display: grid; place-items: center; border-left: 1px solid rgba(255,255,255,.4); writing-mode: vertical-rl; }
.shed-dimension.height span { padding-block: 8px; background: #083d23; }
.shed-intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 105px; align-items: start; }
.shed-intro-grid h2 { margin: 0; }
.shed-intro-grid > div:last-child > p:not(.lead-copy) { color: var(--muted); }
.shed-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.shed-benefit-grid article { min-height: 310px; display: flex; flex-direction: column; justify-content: end; padding: 30px; border: 1px solid #ced4ce; background: #fdfdfb; }
.shed-benefit-grid article > span { margin-bottom: auto; color: var(--green); font-family: var(--font-display); font-size: .78rem; font-weight: 900; }
.shed-benefit-grid h3 { margin: 45px 0 12px; }
.shed-benefit-grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.shed-planning-section { padding-block: 105px; background: var(--green-deep); color: white; }
.shed-planning-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: center; }
.shed-planning-copy > p { max-width: 620px; color: rgba(255,255,255,.65); }
.shed-planning-copy .button { margin-top: 16px; }
.shed-question-card { padding: 42px; border: 1px solid rgba(255,255,255,.21); background: rgba(255,255,255,.07); }
.shed-question-card > span { display: block; margin-bottom: 20px; color: #a8d4b5; font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.shed-question-card ul { margin: 0; padding: 0; list-style: none; }
.shed-question-card li { position: relative; padding: 13px 0 13px 28px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.84); }
.shed-question-card li::before { content: "→"; position: absolute; left: 0; color: #a8d4b5; }
.shed-question-card li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.shed-question-card p { margin: 20px 0 0; color: rgba(255,255,255,.55); font-size: .75rem; }
.shed-process-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 105px; align-items: start; }
.shed-process-grid > div > p { color: var(--muted); }
.shed-process-grid ol { margin: 0; padding: 0; list-style: none; }
.shed-process-grid li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 24px 0; border-top: 1px solid var(--line); }
.shed-process-grid li:last-child { border-bottom: 1px solid var(--line); }
.shed-process-grid li > span { color: var(--green); font-family: var(--font-display); font-size: .8rem; font-weight: 900; }
.shed-process-grid strong { font-family: var(--font-display); font-size: 1.22rem; }
.shed-process-grid li p { margin: 5px 0 0; color: var(--muted); }

@media (max-width: 1060px) {
  .shed-hero-grid { gap: 45px; }
  .shed-blueprint { min-height: 440px; }
  .shed-intro-grid, .shed-planning-grid, .shed-process-grid { gap: 55px; }
  .shed-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .shed-hero-grid { min-height: 900px; grid-template-columns: 1fr; gap: 48px; padding-block: 70px; }
  .shed-hero-copy h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .shed-hero-points { gap: 10px 18px; }
  .shed-blueprint { min-height: 410px; padding: 24px; }
  .shed-elevation { left: 10%; right: 10%; bottom: 75px; height: 225px; }
  .shed-dimension.width { left: 10%; right: 10%; }
  .shed-dimension.height { display: none; }
  .shed-intro-grid, .shed-planning-grid, .shed-process-grid { grid-template-columns: 1fr; gap: 48px; }
  .shed-benefit-grid { grid-template-columns: 1fr; }
  .shed-benefit-grid article { min-height: 250px; }
  .shed-question-card { padding: 30px 23px; }
}

/* WordPress navigation, content and WooCommerce integration */
[hidden] { display: none !important; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.screen-reader-text:focus { z-index: 100000; top: 10px; left: 10px; width: auto; height: auto; clip: auto; padding: 12px 16px; background: white; color: var(--green); }
.main-nav-list { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.main-nav-list li { margin: 0; }
.main-nav .current-menu-item > a, .main-nav .current_page_item > a { color: var(--green); }
.page-hero-note a { color: inherit; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-error { grid-column: 1 / -1; margin-bottom: 18px; border-left: 4px solid #9f2d22; background: #fff0ee; color: #722017; padding: 13px 15px; font-weight: 800; }
.content-page { min-height: 60vh; padding-block: 100px; background: var(--cream); }
.content-shell { max-width: 880px; }
.content-shell > article, .post-card { padding: 44px; border: 1px solid var(--line); background: white; }
.content-shell > .eyebrow + h1, .content-shell article > h1 { margin-bottom: 32px; font-size: clamp(2.8rem, 6vw, 5rem); }
.entry-content > * { max-width: 760px; }
.entry-content > .alignwide { max-width: 1180px; margin-inline: calc((880px - 1180px) / 2); }
.entry-content img { height: auto; }
.entry-featured { margin-bottom: 34px; }
.post-list { display: grid; gap: 20px; margin-top: 38px; }
.post-card h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.post-meta { margin-bottom: 8px; color: var(--muted); font-size: .78rem; }
.not-found .content-shell { text-align: left; }
.not-found p { max-width: 620px; color: var(--muted); font-size: 1.05rem; }

.woocommerce-main { padding-block: 70px 110px; background: var(--cream); }
.woocommerce-shell { min-height: 420px; }
.woocommerce .woocommerce-breadcrumb { margin-bottom: 24px; color: var(--muted); font-size: .8rem; }
.woocommerce .woocommerce-result-count { color: var(--muted); }
.woocommerce .woocommerce-ordering select { border: 1px solid var(--line); background: white; padding: 11px 34px 11px 12px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; clear: both; margin: 34px 0 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { float: none; width: auto; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 1 / 1; margin: 0; object-fit: cover; background: #f2f2ef; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 60px; margin: 0; padding: 20px 20px 8px; color: var(--ink); font-size: 1.25rem; }
.woocommerce ul.products li.product .price { min-height: 29px; margin: 0; padding: 0 20px; color: var(--green); font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; }
.woocommerce ul.products li.product .button { width: calc(100% - 40px); margin: 18px 20px 20px; background: var(--green); color: white; text-align: center; }
.woocommerce span.onsale { top: 12px; left: 12px; min-width: 0; min-height: 0; margin: 0; border-radius: 999px; background: var(--orange); padding: 6px 10px; line-height: 1.2; }
.woocommerce div.product { padding: 34px; background: white; }
.woocommerce div.product div.images, .woocommerce div.product div.summary { margin-bottom: 30px; }
.woocommerce div.product .product_title { font-size: clamp(2.3rem, 4vw, 4rem); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--green); font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.woocommerce .quantity .qty { min-height: 48px; border: 1px solid var(--line); }
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .woocommerce #respond input#submit { border-radius: 4px; background: var(--green); color: white; padding: 14px 18px; font-weight: 900; }
.woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce input.button:hover { background: var(--green-bright); color: white; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--green); background: white; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--green); }
.woocommerce-error { border-top-color: #9f2d22; background: white; }
.woocommerce table.shop_table { border-color: var(--line); border-radius: 4px; background: white; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .select2-container--default .select2-selection--single { min-height: 48px; border: 1px solid var(--line); border-radius: 3px; background: white; padding: 10px 12px; }
.woocommerce-checkout #payment { background: var(--cream); }
.woocommerce .col2-set, .woocommerce-page .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; width: 100%; }
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 { float: none; width: auto; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; margin: 3px; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { min-width: 42px; min-height: 42px; display: grid; place-items: center; background: white; color: var(--green); }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--green); color: white; }

@media (max-width: 1060px) {
  .main-nav-list { align-items: stretch; flex-direction: column; gap: 0; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .main-nav-list { width: 100%; }
  .catalogue-sidebar > button { display: flex; }
  .catalogue-sidebar h2::after { content: ""; }
  .content-page { padding-block: 64px; }
  .content-shell > article, .post-card { padding: 28px 21px; }
  .entry-content > .alignwide { max-width: 100%; margin-inline: 0; }
  .woocommerce-main { padding-block: 45px 70px; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .woocommerce div.product { padding: 20px; }
  .woocommerce .col2-set, .woocommerce-page .col2-set { grid-template-columns: 1fr; }
}
