:root {
  --green: #176f53;
  --green-dark: #0d4c39;
  --sage: #e9f1ec;
  --cream: #f7f3eb;
  --gold: #c59a45;
  --ink: #20332d;
  --muted: #6b7771;
  --line: rgba(32, 51, 45, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(32, 51, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.action-strip {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.95rem;
}

.action-strip-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.action-strip a {
  font-weight: 700;
}

.action-strip-inner > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-link {
  background: var(--gold);
  color: #20160a;
  padding: 0.55rem 1rem;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  width: 92px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.site-nav a,
.nav-link-button {
  color: var(--ink);
}

.site-nav a:hover,
.mobile-nav a:hover,
.nav-link-button:hover,
.mobile-nav-button:hover {
  color: var(--green);
}

.nav-link-button,
.mobile-nav-button {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  width: min(320px, calc(100vw - 40px));
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1.1rem;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav-button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.mobile-nav-button:last-child {
  border-bottom: 0;
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #17231f;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 76, 57, 0.88), rgba(13, 76, 57, 0.48) 45%, rgba(13, 76, 57, 0.08));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 5rem 0;
}

.hero-content > * {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  max-width: 760px;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions,
.catalogue-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.range-section {
  padding: 3.25rem 0 3.75rem;
  background: var(--cream);
}

.product-group {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section-heading h3 {
  margin: 0;
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 380px);
  align-items: end;
  gap: 2rem;
}

.split-heading > p {
  color: var(--muted);
  font-weight: 600;
}

.range-grid,
.offer-grid,
.gallery-grid,
.visit-grid,
.uk-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.range-grid {
  grid-template-columns: repeat(3, 1fr);
}

.range-card {
  min-height: 340px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.range-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.range-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(13, 76, 57, 0.9));
}

.range-card:hover img {
  transform: scale(1.04);
}

.range-card div {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  display: grid;
  justify-items: center;
  text-align: center;
  width: 100%;
  align-self: end;
  background: linear-gradient(180deg, rgba(13, 76, 57, 0.04) 0%, rgba(13, 76, 57, 0.78) 100%);
}

.range-card h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 1.1rem;
}

.thumbnail-card {
  justify-items: center;
  text-align: center;
}

.thumbnail-card img {
  object-position: center;
  object-fit: contain;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.92);
}

.range-card span,
.offer-card a {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
}

.offers-section {
  background: var(--white);
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(32, 51, 45, 0.08);
}

.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--sage);
}

.offer-card span,
.offer-card h3,
.offer-card a {
  margin-inline: 1.2rem;
}

.offer-card span {
  display: inline-flex;
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.6rem;
  background: var(--sage);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-card h3 {
  min-height: 2.7em;
  margin-bottom: 1rem;
}

.offer-card a {
  margin-bottom: 1.2rem;
}

.visit-section {
  padding: 4.5rem 0;
  background: var(--sage);
}

.visit-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.visit-grid > div:first-child p:not(.eyebrow),
.uk-copy p,
.contact-grid p {
  color: var(--muted);
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.steps span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.steps h3,
.steps p {
  margin-bottom: 0;
}

.steps p {
  color: var(--muted);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--cream);
}

.gallery-grid h3,
.gallery-grid p {
  margin-inline: 1.15rem;
}

.gallery-grid h3 {
  margin-top: 1.15rem;
  margin-bottom: 0.55rem;
}

.gallery-grid p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.uk-section {
  padding: 4.5rem 0;
  background: var(--green-dark);
  color: var(--white);
}

.uk-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.uk-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.uk-grid img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  background: var(--white);
}

.terms-section {
  background: var(--white);
}

.terms-content {
  max-width: 860px;
}

.terms-content h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--green-dark);
}

.terms-content p,
.terms-content li {
  color: var(--muted);
  font-weight: 600;
}

.terms-highlight {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--sage);
  border-radius: 8px;
}

.terms-highlight ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.terms-highlight li + li {
  margin-top: 0.45rem;
}

.catalogue-strip {
  background: var(--cream);
}

.catalogue-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
}

.catalogue-inner h2 {
  margin-bottom: 0.4rem;
}

.catalogue-inner p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.catalogue-inner p a {
  color: var(--green);
}

.sister-section {
  background: var(--white);
}

.sister-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--sage);
}

.sister-inner h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.sister-inner p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--sage);
}

.contact-card p {
  margin-bottom: 1rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card strong {
  display: block;
  color: var(--ink);
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  background: #15231f;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.footer-logo {
  width: 120px;
  height: auto;
  background: var(--white);
  margin-bottom: 1rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.site-footer p a {
  display: inline;
}

.site-footer p {
  margin-bottom: 0.6rem;
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

/* Lightbox styles for fullscreen product images */
.modal,
.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms;
  z-index: 1200;
  padding: 1rem;
}
.modal.open,
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  padding: 2rem;
}

.modal-close {
  position: sticky;
  top: 0.5rem;
  float: right;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--sage);
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal .terms-content {
  max-width: none;
  padding-right: 0.2rem;
}

.lightbox-image {
  max-width: 100%;
  max-height: min(84vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  color: #fff;
  max-width: min(92%, 680px);
  text-align: center;
  font-weight: 700;
  padding: 0.6rem 0.9rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
}


.product-grid img,
.range-card img {
  cursor: zoom-in;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .range-grid,
  .offer-grid,
  .gallery-grid,
  .visit-grid,
  .uk-grid,
  .contact-grid,
  .footer-grid,
  .split-heading,
  .catalogue-inner,
  .sister-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(13, 76, 57, 0.9), rgba(13, 76, 57, 0.45));
  }

  .catalogue-inner div {
    margin-top: 0.5rem;
  }

  .sister-inner {
    padding: 1.5rem;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .lightbox {
    padding: 0.75rem;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .lightbox-image {
    max-height: 78vh;
    margin-top: 1rem;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
  }

  .lightbox-caption {
    bottom: 8px;
    font-size: 0.95rem;
    padding: 0.55rem 0.8rem;
  }

  .action-strip-inner {
    min-height: 0;
    padding: 0.7rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .action-strip-inner > div {
    width: 100%;
    justify-content: space-between;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(13, 76, 57, 0.9), rgba(13, 76, 57, 0.64));
  }

  .hero-content {
    padding: 4rem 0;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions,
  .catalogue-inner div {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .range-card {
    min-height: 280px;
  }

  .range-card div {
    padding: 1rem 0.9rem;
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .site-nav a,
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .range-section,
  .section,
  .visit-section,
  .uk-section {
    padding-block: 3.2rem;
  }

  .range-card {
    min-height: 280px;
  }
}
