:root {
  --ink: #101312;
  --ink-2: #1a1f1c;
  --paper: #f5f3ed;
  --paper-2: #ffffff;
  --muted: #6f766f;
  --line: rgba(16, 19, 18, 0.12);
  --lime: #8dc63f;
  --lime-2: #5a941f;
  --gold: #d7b85b;
  --danger: #b84a4a;
  --success: #4f8a23;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  border-radius: 6px;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 126px;
  padding: 20px 12px 18px;
  text-align: center;
  text-transform: uppercase;
  background:
    linear-gradient(145deg, rgba(141, 198, 63, 0.18), rgba(16, 19, 18, 0.88)),
    #111;
  border: 3px solid var(--lime);
  clip-path: polygon(50% 0, 100% 20%, 100% 73%, 50% 100%, 0 73%, 0 20%);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.brand-leaf {
  width: 32px;
  height: 24px;
  margin-bottom: 1px;
  color: var(--lime);
}

.brand-leaf svg,
.button svg,
.proof-item svg,
.contact-methods svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-small,
.brand-guys {
  display: block;
  color: var(--lime);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.brand-large {
  display: block;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 38px;
  line-height: 0.92;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(180deg, #9bd447, #659b24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(56, 91, 18, 0.35);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(180deg, #addf5d, #6fa928);
}

.button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.dark-ghost {
  color: var(--ink);
  border-color: rgba(16, 19, 18, 0.22);
}

.dark-ghost:hover,
.dark-ghost:focus-visible {
  background: rgba(16, 19, 18, 0.08);
}

.hero {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  color: #fff;
  background: #070908;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("/assets/images/hero-garden.png");
  background-position: center right;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.82) 35%, rgba(5, 7, 6, 0.22) 70%, rgba(5, 7, 6, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.78));
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.16;
  content: "";
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 178px 0 150px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--lime);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  color: #f4f4f0;
  font-size: 78px;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.34);
}

.hero h1 strong {
  display: block;
  color: var(--lime);
  font-size: 118px;
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.45);
}

.hero h1 .brush {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 28px 8px;
  color: var(--ink);
  font-size: 54px;
  background: #fff;
  transform: rotate(-1deg);
  box-shadow: 18px 0 0 #fff, -18px 0 0 #fff;
}

.hero-copy {
  max-width: 480px;
  margin: 28px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-badge {
  position: absolute;
  z-index: 6;
  right: max(28px, calc((100% - 1180px) / 2));
  bottom: 46px;
  min-width: 250px;
  padding: 18px 24px 18px 72px;
  color: #fff;
  text-transform: uppercase;
  background: rgba(5, 7, 6, 0.78);
  border: 1px solid rgba(141, 198, 63, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badge::before {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 38px;
  height: 38px;
  background: var(--lime);
  border-radius: 80% 0 80% 0;
  content: "";
  transform: translateY(-50%) rotate(-35deg);
}

.hero-badge::after {
  position: absolute;
  left: 29px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: rgba(16, 19, 18, 0.42);
  content: "";
  transform: translateY(-50%) rotate(-35deg);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  font-size: 15px;
  font-weight: 800;
}

.hero-badge strong {
  color: var(--lime);
  font-size: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 26px max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(180deg, #1a1e1c, #0e100f),
    var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.proof-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 74px;
  padding: 0 28px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  border-right: 1px solid rgba(141, 198, 63, 0.55);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item svg {
  width: 42px;
  height: 42px;
  color: var(--lime);
  flex: 0 0 auto;
}

.section {
  padding: 74px max(20px, calc((100% - 1180px) / 2));
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section h2,
.quote-copy h2,
.admin-panel h1 {
  margin: 0;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 54px;
  line-height: 1;
}

.services-section {
  background:
    linear-gradient(135deg, rgba(16, 19, 18, 0.04) 0 2px, transparent 2px 28px),
    var(--paper-2);
}

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

.service-card {
  min-height: 226px;
  padding: 20px 14px 18px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(30, 39, 33, 0.94), rgba(9, 11, 10, 0.98)),
    #111;
  border: 1px solid rgba(141, 198, 63, 0.78);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.service-card svg {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  color: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.service-card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 56px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(12, 15, 13, 0.96), rgba(13, 17, 14, 0.9)),
    #101312;
  overflow: hidden;
}

.about-section::before,
.quote-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgba(141, 198, 63, 0.12), transparent 34%),
    linear-gradient(250deg, rgba(215, 184, 91, 0.08), transparent 42%);
  content: "";
}

.about-copy,
.about-photo-wrap,
.quote-copy,
.quote-form {
  position: relative;
  z-index: 1;
}

.about-copy p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.about-copy h2 span,
.quote-copy h2 span {
  color: var(--lime);
}

.about-photo-wrap {
  min-height: 430px;
  padding: 18px;
}

.about-photo-wrap::before {
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(50% 0, 100% 16%, 100% 100%, 0 100%, 0 16%);
  content: "";
}

.about-photo {
  position: relative;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
  clip-path: polygon(50% 0, 100% 16%, 100% 100%, 0 100%, 0 16%);
  box-shadow: var(--shadow);
}

.location-badge {
  position: absolute;
  right: 34px;
  top: 74px;
  display: grid;
  justify-items: center;
  width: 172px;
  min-height: 196px;
  padding: 24px 18px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: rgba(102, 151, 35, 0.92);
  border: 2px solid rgba(255, 255, 255, 0.82);
  clip-path: polygon(50% 0, 100% 19%, 100% 76%, 50% 100%, 0 76%, 0 19%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.location-badge svg {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.location-badge strong {
  font-size: 15px;
  line-height: 1.1;
}

.location-badge span {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(16, 19, 18, 0.12);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 900;
}

.quote-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 36px;
  padding: 66px max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(180deg, rgba(77, 115, 21, 0.95), rgba(34, 57, 13, 0.98)),
    #28440f;
}

.quote-copy h2 {
  max-width: 520px;
}

.quote-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}

.contact-methods a,
.method-static {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
}

.contact-methods svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--lime-2);
}

.contact-methods span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.contact-methods strong {
  font-size: 16px;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

label span {
  font-size: 14px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 19, 18, 0.22);
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime-2);
  box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.18);
}

.check-field {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 600;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--lime-2);
}

.check-field span {
  text-transform: none;
  font-size: 14px;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-note a,
.legal-content a,
.cookie-actions a {
  color: var(--lime-2);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.form-status {
  display: none;
  padding: 11px 12px;
  font-weight: 800;
  border-radius: 6px;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-success {
  color: #234111;
  background: rgba(141, 198, 63, 0.22);
  border: 1px solid rgba(79, 138, 35, 0.4);
}

.form-status.is-error {
  color: #6f1f1f;
  background: rgba(184, 74, 74, 0.16);
  border: 1px solid rgba(184, 74, 74, 0.35);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.88);
  background: #0b0d0c;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a,
.footer-links button {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-links button {
  padding: 0;
  background: transparent;
  border: 0;
  font-weight: inherit;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  font-size: 12px;
  background: var(--lime-2);
  border-radius: 6px;
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(7, 9, 8, 0.92), rgba(12, 16, 13, 0.82)),
    url("/assets/images/hero-garden.png") center / cover fixed;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(20px, calc((100% - 1040px) / 2));
  color: #fff;
  background: #0b0d0c;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}

.legal-nav a[aria-current="page"],
.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--lime);
}

.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.legal-content h1 {
  margin: 0;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 58px;
  line-height: 1;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.legal-content section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content p,
.legal-content li {
  color: #343b36;
}

.legal-updated {
  margin: 8px 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  color: #fff;
  background: var(--ink);
}

.legal-button {
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: min(720px, 100%);
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 19, 18, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  pointer-events: auto;
}

.cookie-card h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.cookie-card p {
  margin: 10px 0 0;
  color: #343b36;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.cookie-preferences {
  display: grid;
  gap: 10px;
}

.cookie-toggle {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
}

.cookie-toggle input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
  accent-color: var(--lime-2);
}

.cookie-toggle span {
  text-transform: none;
  font-size: 14px;
}

.cookie-toggle strong {
  display: block;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 14px;
}

.cookie-toggle.is-disabled {
  opacity: 0.78;
}

.admin-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 60px;
}

.admin-brand {
  margin-bottom: 34px;
}

.admin-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-panel {
  max-width: 460px;
}

.login-panel form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-panel .button-ghost {
  color: var(--ink);
  border-color: rgba(16, 19, 18, 0.24);
}

.enquiry-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.enquiry-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.enquiry-card.is-unread {
  border-color: rgba(141, 198, 63, 0.85);
  box-shadow: inset 4px 0 0 var(--lime);
}

.enquiry-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.enquiry-card h2 {
  margin: 0;
  font-size: 24px;
}

.enquiry-meta {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.email-status {
  align-self: start;
  min-width: 124px;
  padding: 7px 9px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  border-radius: 6px;
}

.status-sent {
  color: #234111;
  background: rgba(141, 198, 63, 0.22);
}

.status-failed {
  color: #6f1f1f;
  background: rgba(184, 74, 74, 0.16);
}

.status-not_configured,
.status-pending,
.status-disabled {
  color: #604b0b;
  background: rgba(215, 184, 91, 0.22);
}

.enquiry-details {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 0 14px;
}

.enquiry-details div {
  min-width: 0;
  padding: 10px;
  background: var(--paper);
  border-radius: 6px;
}

.enquiry-details dt {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.enquiry-details dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.enquiry-message {
  margin: 0 0 14px;
  white-space: pre-wrap;
}

.enquiry-error {
  margin: 0 0 14px;
  color: var(--danger);
  font-weight: 800;
}

.enquiry-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.empty-state {
  margin: 0;
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header > .button {
    justify-self: start;
    grid-column: 2;
  }

  .main-nav {
    justify-content: end;
    gap: 18px;
    flex-wrap: wrap;
  }

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

  .enquiry-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    width: 100%;
    padding: 18px 20px;
    color: #fff;
    background: #0b0d0c;
  }

  .brand-mark {
    width: 116px;
    min-height: 100px;
  }

  .brand-large {
    font-size: 29px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header > .button {
    grid-column: auto;
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 80px 0 140px;
  }

  .hero h1 span {
    font-size: 52px;
  }

  .hero h1 strong {
    font-size: 78px;
  }

  .hero h1 .brush {
    font-size: 39px;
  }

  .hero-badge {
    left: 20px;
    right: auto;
    bottom: 28px;
  }

  .proof-strip,
  .about-section,
  .gallery-grid,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .proof-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(141, 198, 63, 0.45);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section h2,
  .quote-copy h2,
  .admin-panel h1 {
    font-size: 42px;
  }

  .about-section {
    gap: 34px;
  }

  .about-photo-wrap {
    min-height: 360px;
  }

  .about-photo {
    height: 360px;
  }

  .site-footer,
  .legal-header,
  .dashboard-topbar,
  .enquiry-card-header,
  .enquiry-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-header > .button {
    justify-self: stretch;
  }

  .main-nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 56px 0 150px;
  }

  .hero h1 span {
    font-size: 42px;
  }

  .hero h1 strong {
    font-size: 62px;
  }

  .hero h1 .brush {
    font-size: 31px;
    box-shadow: 10px 0 0 #fff, -10px 0 0 #fff;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-badge {
    min-width: 0;
    width: calc(100% - 40px);
  }

  .section,
  .quote-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .service-grid,
  .field-grid,
  .enquiry-details {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .about-photo-wrap {
    padding: 10px;
    min-height: 320px;
  }

  .about-photo {
    height: 320px;
  }

  .location-badge {
    right: 18px;
    top: 44px;
    width: 142px;
    min-height: 166px;
    padding: 20px 14px;
  }

  .location-badge strong {
    font-size: 13px;
  }

  .quote-form,
  .admin-panel {
    padding: 18px;
  }

  .legal-content {
    width: min(100% - 28px, 920px);
    padding: 44px 0 58px;
  }

  .legal-content h1 {
    font-size: 42px;
  }

  .cookie-banner {
    inset: auto 10px 10px;
  }

  .cookie-card {
    padding: 16px;
  }

  .admin-shell {
    width: min(100% - 24px, 1040px);
  }
}
