:root {
  --green: #006b39;
  --green-mid: #1f7b4c;
  --green-dark: #073f27;
  --green-deep: #061f16;
  --green-soft: #e7f2eb;
  --ink: #111b15;
  --muted: #5d6b62;
  --line: #d8e4dc;
  --cream: #f6faf7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 40, 24, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
a:hover { color: var(--green); }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 92px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  width: min(370px, 36vw);
  min-width: 230px;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  border-bottom: 3px solid transparent;
  padding: 34px 0 30px;
  white-space: nowrap;
}
.main-nav a.is-active,
.main-nav a:hover { border-color: var(--green); color: var(--green-dark); }
.phone-link {
  background: var(--green-dark);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}
.phone-link:hover { background: var(--green); color: #fff; }

.hero {
  --hero-bg: url('/assets/img/storage-containers.webp');
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: var(--green-dark);
}
.hero-services { --hero-bg: url('/assets/img/container-row.webp'); }
.hero-contact { --hero-bg: url('/assets/img/site-entrance.webp'); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(5,31,22,.96), rgba(5,31,22,.78), rgba(5,31,22,.26)),
    var(--hero-bg);
  background-position: center;
  background-size: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 2px, transparent 2px 118px),
    linear-gradient(180deg, transparent, rgba(0,0,0,.18));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 420px;
  align-items: center;
  gap: 52px;
  padding: 92px 0;
}
.hero__content { max-width: 780px; }
.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
  font-weight: 900;
  color: var(--green);
}
.eyebrow { color: #d8f1df; }
.section-kicker.light { color: #d8f1df; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; }
h1 { font-size: clamp(44px, 6vw, 78px); text-transform: uppercase; letter-spacing: -.045em; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; }
h3 { font-size: 22px; }
p { margin-top: 0; }
.hero p { font-size: 20px; max-width: 690px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-facts {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow);
  padding: 30px;
}
.hero-facts__label {
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
.hero-facts__row strong { font-size: 17px; }
.hero-facts__row span { text-align: right; color: var(--green-dark); font-weight: 900; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-secondary:hover { background: var(--green-dark); color: #fff; }
.btn-outline { border-color: rgba(255,255,255,.72); color: #fff; background: rgba(255,255,255,.08); }
.btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.18); }
.btn-light { background: #fff; color: var(--green-dark); }
.btn-light:hover { color: var(--green); }

.trust-strip { background: var(--green-deep); color: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,.14);
}
.trust-grid div {
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.trust-grid strong { display: block; font-size: 18px; line-height: 1.2; }
.trust-grid span { display: block; color: #cfe4d6; margin-top: 5px; }

.section { padding: 88px 0; }
.section-light { background: var(--cream); }
.section-green { background: var(--green-dark); color: #fff; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { grid-template-columns: .95fr 1.05fr; }
.feature-card,
.info-card,
.service-card,
.contact-form {
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
}
.feature-card--photo {
  position: relative;
  overflow: hidden;
}
.feature-card--photo::after {
  content: '';
  display: block;
  height: 190px;
  margin: 28px -34px -34px;
  background: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.08)), url('/assets/img/site-lighting.webp') center / cover;
}
.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 24px;
}
.text-link { font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.photo-panel {
  min-height: 430px;
  border: 10px solid #fff;
  box-shadow: var(--shadow);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.22));
  pointer-events: none;
}
.photo-containers { background-image: url('/assets/img/storage-containers.webp'); }
.photo-gate { background-image: url('/assets/img/gate-keypad.webp'); }
.photo-site { background-image: url('/assets/img/site-entrance.webp'); }
.narrow { max-width: 860px; }
.centre { text-align: center; }
blockquote { font-size: clamp(26px, 4vw, 42px); line-height: 1.25; margin: 0; font-weight: 900; }
.review-name { margin-top: 22px; font-weight: 900; color: #d8f1df; }
.review-link-wrap { margin-top: 26px; }
.cards-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.dark-card { background: var(--green-dark); color: #fff; }
.large-line,
.price-line { font-size: 24px; font-weight: 900; color: var(--green-dark); }
.dark-card .large-line { color: #fff; }
.price-card h2 { min-height: 104px; }
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.mini-gallery figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.mini-gallery figcaption {
  padding: 16px 18px;
  font-weight: 900;
}
.tick-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.tick-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}
.tick-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  line-height: 1;
}
.faq-list { display: grid; gap: 14px; margin-top: 28px; }
details { border: 1px solid var(--line); background: #fff; padding: 20px 24px; }
summary { cursor: pointer; font-weight: 900; font-size: 19px; }
details p { margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.large-contact-list { font-size: 19px; }
.contact-photo {
  min-height: 230px;
  margin-top: 30px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  background: url('/assets/img/container-row.webp') center / cover;
}
.contact-form { display: grid; gap: 12px; }
.contact-form label { font-weight: 900; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #b9c8bf;
  padding: 14px 12px;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 3px solid rgba(0,107,57,.18); border-color: var(--green); }
.hidden-field { position: absolute; left: -9999px; height: 1px; width: 1px; overflow: hidden; }
.site-footer { background: #111b15; color: #dfe9e2; padding: 58px 0 24px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-logo { width: min(320px, 100%); background: #fff; padding: 10px; margin-bottom: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 30px; padding-top: 20px; color: #bccdc2; }
.message-page { min-height: 100vh; display: grid; place-items: center; background: var(--cream); padding: 20px; }
.message-box { max-width: 620px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 42px; }

@media (max-width: 1050px) {
  .header-inner { flex-wrap: wrap; padding: 14px 0; }
  .brand-logo { width: 320px; }
  .main-nav { order: 3; width: 100%; gap: 18px; flex-wrap: wrap; }
  .main-nav a { padding: 0 0 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-facts { max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .phone-link { margin-left: auto; }
  .hero { min-height: auto; }
  .split,
  .split-reverse,
  .contact-grid,
  .cards-three,
  .cards-two,
  .footer-grid,
  .mini-gallery { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .photo-panel { min-height: 330px; }
  .price-card h2 { min-height: 0; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 26px, 1180px); }
  .header-inner { gap: 14px; }
  .brand-logo { min-width: 0; width: 260px; }
  .phone-link { width: 100%; text-align: center; justify-content: center; }
  .hero-grid { padding: 70px 0; }
  .hero__actions .btn { width: 100%; }
  .hero-facts { padding: 22px; }
  .hero-facts__row { display: block; }
  .hero-facts__row span { display: block; text-align: left; margin-top: 4px; }
  .trust-grid { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .feature-card,
  .info-card,
  .service-card,
  .contact-form { padding: 24px; }
  .feature-card--photo::after { margin: 24px -24px -24px; }
}
