/* Design tokens and global foundations */
:root {
  --ink: #201f1d;
  --wine: #5A170D;
  --wine-deep: #270908;
  --gold: #f2bd4d;
  --cream: #f7f3ed;
  --paper: #fff;
  --muted: #696661;
  --line: rgba(32, 31, 29, .12);
  --max: 1200px;
  --sans: Jost, Arial, sans-serif;
  --display: Jost, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: #fff;
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
  width: auto;
  height: auto;
  clip-path: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.header-inner {
  height: 84px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}
.brand img {
  width: 240px;
  height: auto;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: 30px 0;
}
.nav-links a[aria-current=page] {
  color: var(--gold);
}
.header-actions {
  display: flex;
  gap: 8px;
}
.header-actions a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, .12);
  font-weight: 800;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
}
.hero {
  position: relative;
  min-height: clamp(660px, 90vh, 920px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #222;
}
.hero-slide {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s linear;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 14, 13, .66), rgba(15, 14, 13, .42) 56%, rgba(15, 14, 13, .55));
}
.topo-lines {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/line_body_w.webp');
  background-size: cover;
  opacity: .16;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 140px 20px 70px;
}
.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 5.1vw, 4.7rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
  margin: 14px 0 24px;
}
.hero-content>p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .75rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 0 12px;
}
.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--wine-deep);
}
.content-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.section-soft {
  background-color: var(--cream);
  background-image: linear-gradient(rgba(247, 243, 237, .94), rgba(247, 243, 237, .94)), url('/assets/images/pattern1.webp');
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 80px;
  align-items: center;
}
.split-reverse .section-copy {
  order: 2;
}
.section-copy {
  position: relative;
}
.section-copy h2,.section-heading h2,.contact-card h2 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -2px;
  margin: 0 0 26px;
  color: var(--wine);
}
.section-copy p {
  color: var(--muted);
  margin: 0 0 18px;
}
.outline-word {
  position: absolute;
  z-index: -1;
  top: -80px;
  left: -8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(70, 16, 14, .12);
  white-space: nowrap;
}
.section-media {
  min-width: 0;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.image-grid figure {
  margin: 0;
  min-height: 250px;
  overflow: hidden;
  background: #ddd;
}
.image-grid figure:first-child:nth-last-child(3) {
  grid-row: span 2;
}
.image-grid img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform .5s;
}
.image-grid figure:hover img {
  transform: scale(1.035);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}
.feature-list li {
  position: relative;
  min-height: 20px;
  padding-left: 30px;
}
.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: .22em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: .7rem;
  font-weight: 900;
  line-height: 1;
}
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.about-collage img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.about-collage img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  margin-top: 70px;
}
.about-collage img:first-child {
  grid-column: 1;
  grid-row: 1;
}
.experience {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  justify-self: stretch;
  margin-top: 348px;
  margin-right: 0;
  background: #f8f5fa;
  padding: 28px 46px;
  text-align: center;
  transform: none;
}
.experience strong {
  display: block;
  font-family: var(--display);
  font-size: 3.6rem;
  color: var(--wine);
  line-height: 1;
}
.experience span {
  font-weight: 800;
  color: var(--muted);
}
.section-heading {
  position: relative;
  max-width: 930px;
  margin: 0 auto 54px;
  text-align: center;
}
.contact-band {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-top: 90px;
  padding: 90px 0;
}
.contact-band>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-band:after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(24, 31, 25, .68);
}
.contact-band .container {
  position: relative;
  z-index: 1;
}
.contact-band h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1;
  max-width: 1040px;
  margin: 0 auto 38px;
  letter-spacing: -2px;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 0;
  align-items: stretch;
}
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field {
  display: grid;
  gap: 7px;
}
.field-full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 800;
}
.field input,.field textarea,.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 15px;
  font: inherit;
}
.field textarea {
  min-height: 160px;
  resize: vertical;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
}
.contact-card {
  background: var(--wine);
  color: #fff;
  padding: 48px;
}
.contact-card h2 {
  color: #fff;
  font-size: 2.4rem;
}
.contact-card h3 {
  color: var(--gold);
  margin: 28px 0 8px;
}
.simple-hero {
  padding: 180px 0 110px;
  background: var(--wine);
  color: #fff;
}
.simple-hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  margin: 0 0 18px;
}
.prose {
  max-width: 780px;
}
.prose h2 {
  margin: 42px 0 10px;
  color: var(--wine);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
}
.prose code {
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--cream);
  font-size: .9em;
}
.text-button {
  border: 0;
  padding: 0;
  color: var(--wine);
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.footer-cookie-settings {
  border: 0;
  margin-left: 16px;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 1180px;
  margin-inline: auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: var(--wine-deep);
  box-shadow: 0 18px 60px rgba(24, 6, 5, .32);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner h2 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 1.25rem;
}
.cookie-banner p {
  max-width: 700px;
  margin: 0;
}
.cookie-banner a {
  color: var(--gold);
}
.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.cookie-banner .btn-secondary {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  background: transparent;
}
.cookie-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  border: 0;
  padding: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 20px 80px rgba(24, 6, 5, .38);
}
.cookie-dialog::backdrop {
  background: rgba(24, 6, 5, .68);
}
.cookie-dialog form {
  padding: 34px;
}
.cookie-dialog__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
}
.cookie-dialog__heading h2 {
  margin: 0;
  color: var(--wine);
  font-size: 2rem;
  line-height: 1.1;
}
.cookie-dialog__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  color: var(--wine);
  background: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.cookie-option h3,.cookie-option p {
  margin: 0;
}
.cookie-option h3 {
  color: var(--wine);
}
.cookie-option>span {
  flex: 0 0 auto;
  color: var(--wine);
  font-weight: 800;
}
.cookie-switch {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.cookie-switch input {
  width: 20px;
  height: 20px;
  accent-color: var(--wine);
}
.cookie-dialog__actions {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.site-footer {
  background: #2b0908;
  color: #ddd;
  padding-top: 76px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr 1fr .9fr;
  gap: 45px;
  padding-bottom: 62px;
}
.footer-intro img {
  margin-bottom: 26px;
}
.site-footer h2 {
  font-family: var(--display);
  color: #fff;
  font-size: 1.5rem;
}
.footer-nav,.footer-phone {
  display: grid;
  gap: 7px;
}
.footer-nav a,.footer-phone a {
  text-decoration: none;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
}
.newsletter button {
  border: 0;
  background: var(--gold);
  padding: 0 18px;
  font-weight: 800;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #210706;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: .82rem;
}
/* Homepage refinement: original Jost typography, staggered services, CTA copy and reviews */
@font-face {
  font-family: Jost;
  src: url('/assets/fonts/jost-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Jost;
  src: url('/assets/fonts/jost-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}
.services-showcase {
  padding-bottom: 0;
  background-color: #faf9fd;
  background-image: linear-gradient(rgba(250, 249, 253, .91), rgba(250, 249, 253, .91)), url('/assets/images/pattern1.webp');
  background-size: auto, 620px auto;
}
.services-showcase .section-heading h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.08;
}
.services-stagger {
  width: min(1600px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(390px, 32vw));
}
.service-stagger {
  display: contents;
}
.service-stagger figure {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.service-stagger figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-stagger:hover figure img {
  transform: scale(1.035);
}
.service-stagger__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
  text-align: center;
  background: rgba(255, 255, 255, .93);
}
.service-stagger__copy h3 {
  margin: 0 0 24px;
  color: var(--wine);
  font-size: clamp(1.8rem, 2.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.15;
}
.service-stagger__copy p {
  max-width: 340px;
  margin: 0 0 26px;
  color: #757575;
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  line-height: 1.5;
}
.stagger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
}
.stagger-link:hover {
  background: var(--wine);
  color: #fff;
}
.service-stagger--0 figure {
  grid-column: 1;
  grid-row: 1;
}
.service-stagger--0 .service-stagger__copy {
  grid-column: 2;
  grid-row: 1;
}
.service-stagger--1 figure {
  grid-column: 2;
  grid-row: 2;
}
.service-stagger--1 .service-stagger__copy {
  grid-column: 1;
  grid-row: 2;
}
.service-stagger--2 figure {
  grid-column: 3;
  grid-row: 1;
}
.service-stagger--2 .service-stagger__copy {
  grid-column: 4;
  grid-row: 1;
}
.service-stagger--3 figure {
  grid-column: 4;
  grid-row: 2;
}
.service-stagger--3 .service-stagger__copy {
  grid-column: 3;
  grid-row: 2;
}
.contact-band__copy {
  max-width: 1080px;
  margin: 0 auto 36px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}
.contact-band__copy p {
  margin: 0 auto 24px;
}
.testimonials {
  padding: 0;
  background: #fff;
}
.testimonials-heading {
  padding: 105px 0 42px;
  background-color: #faf9fd;
  background-image: linear-gradient(rgba(250, 249, 253, .88), rgba(250, 249, 253, .88)), url('/assets/images/pattern1.webp');
  background-size: auto, 720px auto;
}
.testimonials-heading .section-heading {
  margin-bottom: 0;
}
.testimonials-body {
  padding: 58px 0 105px;
  background: #fff;
}
.reviews-slider {
  position: relative;
  margin: 15px 0 48px;
  --review-columns: 3;
}
.reviews-viewport {
  overflow: hidden;
  transition: height .35s ease;
}
.reviews-track {
  display: flex;
  align-items: flex-start;
  transition: transform .5s ease;
  will-change: transform;
}
.review-slide {
  flex: 0 0 calc(100% / var(--review-columns));
  margin: 0;
  padding: 28px 38px;
  text-align: center;
}
.review-slide p {
  margin: 0;
  color: #757575;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-style: normal;
  line-height: 1.45;
}
.review-slide footer {
  margin-top: 28px;
  font-style: normal;
}
.review-slide footer strong {
  display: block;
  color: var(--wine);
  font-size: 1.1rem;
  font-weight: 600;
}
.review-slide footer span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}
.reviews-controls>button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(70, 16, 14, .25);
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  font: 600 1.15rem Jost, sans-serif;
  cursor: pointer;
}
.reviews-controls>button:disabled {
  opacity: .35;
  cursor: default;
}
.review-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.review-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9d9db;
  cursor: pointer;
}
.review-dots button[aria-current='true'] {
  background: var(--wine);
  transform: scale(1.15);
}
.review-links {
  display: grid;
  grid-template-columns: 220px auto 220px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 42px;
}
.review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
}
.review-badge img {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 86px;
  object-fit: contain;
}
.skip-link:not(:focus) {
  top: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.site-header.is-scrolled {
  background: #5A170D;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}
.site-header.is-scrolled .header-inner {
  border-bottom-color: transparent;
}
/* Gates page: source-corrected, large interactive image galleries */
.page-gates .slider-section .split {
  grid-template-columns: minmax(330px, .82fr) minmax(520px, 1.18fr);
  gap: 72px;
}
.page-gates .slider-section .split-reverse {
  grid-template-columns: minmax(520px, 1.18fr) minmax(330px, .82fr);
}
.media-slider {
  width: 100%;
}
.media-slider__viewport {
  position: relative;
  min-height: clamp(480px, 43vw, 620px);
  overflow: hidden;
  background: #e9e5df;
}
.media-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .5s ease, transform .7s ease, visibility .5s;
}
.media-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-slider__controls {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: rgba(43, 9, 8, .9);
  color: #fff;
}
.media-slider__controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: #fff;
  font: 600 1.15rem Jost, sans-serif;
  cursor: pointer;
}
.media-slider__controls span {
  min-width: 48px;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .08em;
}
.media-slider__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}
.media-slider__dots button {
  width: 38px;
  height: 4px;
  padding: 0;
  border: 0;
  background: #d7d1cb;
  cursor: pointer;
  transition: background-color .25s ease;
}
.media-slider__dots button[aria-current='true'] {
  background: var(--wine);
}
.page-gates .feature-section {
  position: relative;
  background-color: #fff;
  background-image: linear-gradient(rgba(255, 255, 255, .91), rgba(255, 255, 255, .91)), url('/assets/images/pattern1.webp');
  background-size: auto, 680px auto;
  color: var(--ink);
}
.page-gates .feature-section:before {
  content: '';
  position: absolute;
  inset: 0 calc(55% - 100px) 0 0;
  background-color: var(--wine);
  background-image: linear-gradient(rgba(90, 23, 13, .91), rgba(90, 23, 13, .91)), url('/assets/images/pattern1.webp');
  background-size: auto, 680px auto;
}
.page-gates .split--text-only {
  display: block;
}
.page-gates .split--text-only .section-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  grid-template-rows: auto auto;
  column-gap: 92px;
  align-items: center;
  max-width: none;
  margin: 0;
  text-align: left;
}
.page-gates .split--text-only .section-copy h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 470px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 4vw, 4.25rem);
  line-height: 1.02;
}
.page-gates .split--text-only .outline-word {
  display: none;
}
.page-gates .split--text-only .btn {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  margin-top: 30px;
}
.feature-groups {
  grid-column: 2;
  grid-row: 1/3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}
.feature-groups>div {
  padding: 34px 32px;
  background: var(--cream);
  border-top: 4px solid var(--gold);
}
.feature-groups h3 {
  margin: 0 0 20px;
  color: var(--wine);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.page-gates .split--text-only .feature-list {
  grid-template-columns: 1fr;
  margin: 0;
}
.page-gates .split--text-only .feature-list li {
  text-align: left;
}
/* Refined service-page system, following the approved Home and Gates direction */
:is(.page-electric,.page-railings,.page-handrails,.page-finishes) .slider-section .split {
  grid-template-columns: minmax(340px, .82fr) minmax(540px, 1.18fr);
  gap: 76px;
}
:is(.page-electric,.page-railings,.page-handrails,.page-finishes) .slider-section .split-reverse {
  grid-template-columns: minmax(540px, 1.18fr) minmax(340px, .82fr);
}
:is(.page-electric,.page-railings,.page-handrails,.page-finishes) .section-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.15rem);
}
.editorial-section .image-grid {
  display: block;
}
.editorial-section .image-grid figure {
  height: clamp(500px, 44vw, 650px);
  min-height: 0;
}
.editorial-section .image-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.section-list-title {
  margin: 34px 0 16px;
  color: var(--wine);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.statement-section {
  background-color: var(--wine);
  background-image: linear-gradient(rgba(90, 23, 13, .91), rgba(90, 23, 13, .91)), url('/assets/images/pattern1.webp');
  background-size: auto, 700px auto;
  color: #fff;
}
.statement-section .split--text-only {
  display: block;
}
.statement-section .section-copy {
  max-width: 950px;
  margin-inline: auto;
  text-align: center;
}
.statement-section .section-copy h2 {
  max-width: 850px;
  margin-inline: auto;
  color: #fff;
}
.statement-section .section-copy p {
  max-width: 800px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}
.statement-section .outline-word {
  -webkit-text-stroke-color: rgba(255, 255, 255, .14);
}
.statement-section .btn {
  margin-top: 12px;
}
.gallery-columns-section .section-heading {
  max-width: none;
  margin-bottom: 52px;
  text-align: left;
}
.gallery-columns-section .section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.7rem, 4vw, 4.2rem);
}
.gallery-columns-section .outline-word {
  z-index: 0;
}
.gallery-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-columns figure {
  height: clamp(330px, 34vw, 500px);
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.gallery-columns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-columns figure:hover img {
  transform: scale(1.035);
}
/* Contact page refinement */
.contact-section {
  background-color: #faf9fd;
  background-image: linear-gradient(rgba(250, 249, 253, .91), rgba(250, 249, 253, .91)), url('/assets/images/pattern1.webp');
  background-size: auto, 680px auto;
}
.contact-form-panel {
  position: relative;
  z-index: 1;
  padding: 62px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(43, 9, 8, .09);
}
.contact-form-panel>h2 {
  max-width: 670px;
  margin: 0 0 34px;
  color: var(--wine);
  font-size: clamp(2.7rem, 4.2vw, 4.3rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -2px;
}
.contact-form-panel .outline-word {
  z-index: 0;
  top: -52px;
}
.contact-section .contact-card {
  position: relative;
  margin-left: -12px;
  padding: 64px 54px;
  background-color: var(--wine);
  background-image: linear-gradient(rgba(90, 23, 13, .93), rgba(90, 23, 13, .93)), url('/assets/images/pattern1.webp');
  background-size: 650px auto;
  box-shadow: 0 24px 70px rgba(43, 9, 8, .2);
}
.contact-section .contact-card h2 {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1.08;
}
.contact-section .contact-card a {
  text-underline-offset: 4px;
}
.contact-section .field input,.contact-section .field textarea {
  border: 0;
  border-bottom: 1px solid rgba(90, 23, 13, .22);
  background: var(--cream);
}
/* Responsive adjustments */
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-slide {
    transition: none;
  }
  .media-slide {
    transition: none;
  }
}
@media (max-width:1020px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }
  .nav-links {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    background: #1c1b19;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 13px 10px;
  }
  .menu-toggle {
    display: grid;
    gap: 6px;
    margin-right: 10px;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
  }
  .split,.contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .split-reverse .section-copy {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-stagger {
    width: min(900px, calc(100% - 40px));
    display: block;
  }
  .service-stagger {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 370px;
  }
  .service-stagger figure,.service-stagger .service-stagger__copy {
    grid-column: auto;
    grid-row: auto;
  }
  .service-stagger:nth-child(even) figure {
    order: 2;
  }
  .reviews-slider {
    --review-columns: 2;
  }
  .contact-band {
    min-height: 650px;
  }
  .page-gates .slider-section .split,.page-gates .slider-section .split-reverse {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .page-gates .slider-section .split-reverse .section-copy {
    order: 0;
  }
  .media-slider__viewport {
    min-height: 560px;
  }
  .page-gates .feature-section:before {
    inset: 0 0 auto;
    height: 390px;
  }
  .page-gates .split--text-only .section-copy {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-gates .split--text-only .section-copy h2 {
    grid-column: 1;
    grid-row: 1;
    max-width: 720px;
    margin-inline: auto;
  }
  .page-gates .split--text-only .btn {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }
  .feature-groups {
    grid-column: 1;
    grid-row: 3;
    margin-top: 115px;
  }
  :is(.page-electric,.page-railings,.page-handrails,.page-finishes) .slider-section .split,:is(.page-electric,.page-railings,.page-handrails,.page-finishes) .slider-section .split-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  :is(.page-electric,.page-railings,.page-handrails,.page-finishes) .slider-section .split-reverse .section-copy {
    order: 0;
  }
  .editorial-section .image-grid figure {
    height: 580px;
  }
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-panel {
    padding: 54px;
  }
  .contact-section .contact-card {
    margin: 0 34px;
    padding: 54px;
  }
}
@media (max-width:680px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .header-inner {
    height: 72px;
  }
  .brand img {
    width: 200px;
  }
  .header-actions {
    display: none;
  }
  .nav-links {
    top: 72px;
    left: 14px;
    right: 14px;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    padding-top: 120px;
  }
  .content-section {
    padding: 78px 0;
  }
  .outline-word {
    top: -46px;
    font-size: 4.2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .image-grid figure {
    min-height: 180px;
  }
  .image-grid img {
    min-height: 180px;
  }
  .about-collage img {
    height: 240px;
  }
  .experience {
    margin-top: 258px;
    margin-right: 0;
    padding: 22px;
    transform: none;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .contact-band {
    min-height: 720px;
    margin-top: 60px;
    padding: 70px 0;
  }
  .enquiry-form {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .contact-card {
    padding: 30px;
  }
  .footer-bottom .container {
    flex-direction: column;
  }
  .footer-cookie-settings {
    margin-left: 12px;
  }
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-dialog form {
    padding: 24px 20px;
  }
  .cookie-option {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .newsletter {
    grid-template-columns: 1fr;
  }
  .newsletter button {
    min-height: 50px;
  }
  .hero-content h1 {
    font-size: 3.15rem;
    letter-spacing: -1.5px;
  }
  .services-stagger {
    width: 100%;
  }
  .service-stagger {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .service-stagger figure,.service-stagger:nth-child(even) figure {
    order: 0;
    height: 320px;
  }
  .service-stagger__copy {
    order: 1;
    padding: 46px 28px;
  }
  .service-stagger__copy p {
    font-size: 1.05rem;
  }
  .reviews-slider {
    --review-columns: 1;
  }
  .review-slide {
    padding: 20px 18px;
  }
  .review-slide p {
    font-size: 1rem;
    line-height: 1.42;
  }
  .testimonials-heading {
    padding: 78px 0 34px;
  }
  .testimonials-body {
    padding: 42px 0 78px;
  }
  .review-links {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review-links .btn {
    grid-row: 1;
  }
  .review-badge {
    min-height: 64px;
  }
  .review-badge img {
    max-width: 190px;
    max-height: 70px;
  }
  .contact-band h2 {
    font-size: 2.7rem;
  }
  .contact-band__copy {
    font-size: 1rem;
  }
  .media-slider__viewport {
    min-height: 430px;
  }
  .media-slider__controls {
    right: 12px;
    bottom: 12px;
  }
  .media-slider__dots button {
    width: 26px;
  }
  .page-gates .feature-section:before {
    height: 365px;
  }
  .page-gates .split--text-only .section-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
  .feature-groups {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 105px;
  }
  .feature-groups>div {
    padding: 28px 24px;
  }
  .page-gates .slider-section .section-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
  :is(.page-electric,.page-railings,.page-handrails,.page-finishes) .section-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
  .editorial-section .image-grid figure {
    height: 430px;
  }
  .gallery-columns-section .section-heading {
    margin-bottom: 34px;
  }
  .gallery-columns-section .section-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
  .gallery-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-columns figure {
    height: 360px;
  }
  .section-list-title {
    margin-top: 28px;
  }
  .statement-section .section-copy {
    text-align: left;
  }
  .statement-section .section-copy h2,.statement-section .section-copy p {
    margin-inline: 0;
  }
  .contact-form-panel {
    padding: 42px 24px;
  }
  .contact-form-panel>h2 {
    font-size: 2.55rem;
  }
  .contact-section .contact-card {
    margin: 0;
    padding: 40px 26px;
  }
  .contact-section .enquiry-form {
    grid-template-columns: 1fr;
  }
  .contact-section .field-full {
    grid-column: auto;
  }
}
