:root {
  --green-950: #092d20;
  --green-900: #103f2c;
  --green-800: #165838;
  --sage-200: #dfe6d3;
  --sage-500: #8aa270;
  --gold-600: #b98432;
  --gold-200: #efd9a6;
  --clay-600: #a75036;
  --cream-100: #fffaf0;
  --cream-200: #f5ead7;
  --white: #fffdf8;
  --ink: #241e19;
  --muted: #76685d;
  --line: #e1ccb0;
  --shadow: 0 18px 50px rgba(47, 35, 24, 0.12);
  font-family: "Segoe UI", Aptos, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf0, #f5ead7);
}

.site-watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.site-watermark img {
  width: min(108vmax, 1380px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 0.22;
  border-radius: 8px;
}

.site-header,
main,
.site-footer {
  position: relative;
}

.site-header {
  z-index: 30;
}

main,
.site-footer {
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 54px);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(225, 204, 176, 0.9);
  box-shadow: 0 10px 28px rgba(22, 18, 14, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--green-900);
  font-size: 17px;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--green-950);
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--cream-200);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.primary-button {
  color: #fff;
  background: var(--clay-600);
}

.secondary-button {
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--green-950);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(185, 132, 50, 0.18), transparent 34%),
    linear-gradient(0deg, rgba(9, 45, 32, 0.78), rgba(16, 63, 44, 0.72));
}

.hero-section::after {
  content: none;
}

.hero-media {
  display: none;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: clamp(74px, 9vw, 110px) -34px clamp(22px, 4vw, 44px) -34px;
  z-index: -1;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(9, 45, 32, 0.64), rgba(9, 45, 32, 0.18) 68%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  padding: clamp(110px, 13vw, 150px) 0 clamp(58px, 8vw, 88px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-600);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-content .eyebrow {
  color: var(--gold-200);
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(50px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--green-950);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 21px;
}

.hero-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 34px auto 0;
  background: rgba(239, 217, 166, 0.3);
  border: 1px solid rgba(239, 217, 166, 0.3);
}

.trust-list div {
  min-height: 104px;
  padding: 16px;
  background: rgba(16, 63, 44, 0.68);
}

.trust-list dt {
  color: var(--gold-200);
  font-weight: 900;
}

.trust-list dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.intro-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 6vw, 76px);
  color: #fff;
  background: var(--green-900);
}

.intro-band p,
.intro-band a {
  margin: 0;
  font-weight: 900;
}

.intro-band a {
  color: var(--gold-200);
  text-decoration: none;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 76px);
}

.hero-section,
.services-section,
.pricing-section,
.zone-section,
.contact-section {
  background-attachment: scroll;
  background-position: initial;
  background-repeat: initial;
  background-size: initial;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 860px;
}

.section-heading p,
.zone-section p,
.contact-copy p,
.quote-panel p,
.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.services-section {
  background: rgba(255, 253, 248, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffefb, #fbf3e5);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-800);
  font-weight: 900;
}

.pricing-section {
  background: rgba(245, 234, 215, 0.68);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: stretch;
}

.pricing-table,
.quote-panel,
.zone-box,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-table {
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  font-weight: 800;
}

.price-row strong {
  justify-self: end;
  min-width: 128px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-800);
  text-align: center;
}

.quote-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}

.quote-panel img {
  width: 116px;
}

.zone-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: center;
  background: rgba(223, 230, 211, 0.68);
}

.zone-box {
  display: grid;
  gap: 10px;
  padding: 28px;
  color: #fff;
  background: var(--green-900);
  border-color: rgba(255, 255, 255, 0.16);
}

.zone-box strong {
  font-size: 24px;
}

.zone-box span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 28px;
  background: rgba(255, 253, 248, 0.7);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  width: fit-content;
  color: var(--green-900);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffefb;
}

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

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 34px 18px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--green-950);
  text-align: center;
}

.site-footer img {
  width: 92px;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--cream-200);
}

.thanks-panel {
  width: min(560px, 100%);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-panel img {
  width: 130px;
}

.thanks-panel h1 {
  color: var(--green-950);
  font-size: clamp(34px, 8vw, 56px);
}

.standalone-form {
  min-height: calc(100vh - 78px);
}

.legal-page {
  max-width: 980px;
}

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

.legal-page h1 {
  color: var(--green-950);
  font-size: clamp(40px, 7vw, 72px);
}

.legal-page h2 {
  font-size: 26px;
}

.admin-login-form {
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
}

.admin-login-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
  text-align: left;
}

.form-error {
  color: #9d2d1c;
  font-weight: 800;
}

.admin-page {
  background: var(--cream-100);
}

.admin-dashboard h1 {
  color: var(--green-950);
  font-size: clamp(38px, 7vw, 72px);
}

.admin-list {
  display: grid;
  gap: 18px;
}

.admin-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.empty-state {
  padding: 24px;
  color: var(--muted);
  font-weight: 800;
}

.admin-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-left: 8px solid var(--gold-600);
}

.admin-card.status-accepted {
  border-left-color: var(--green-800);
}

.admin-card.status-refused {
  border-left-color: var(--clay-600);
}

.admin-card.status-done {
  border-left-color: var(--sage-500);
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.admin-card-head strong,
.admin-card-head span {
  display: block;
}

.admin-card-head strong {
  color: var(--green-950);
  font-size: 22px;
}

.admin-card-head span {
  width: fit-content;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-800);
  font-weight: 900;
  font-size: 13px;
}

.admin-card-head small {
  color: var(--muted);
  font-weight: 800;
}

.admin-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
}

.admin-details div {
  min-width: 0;
}

.admin-details dt {
  color: var(--gold-600);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.admin-details dd {
  margin: 5px 0 0;
  color: var(--ink);
  line-height: 1.45;
}

.admin-update-form {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.admin-update-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 900;
}

.admin-update-form textarea {
  min-height: 70px;
}

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

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    display: none;
    min-width: min(280px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .header-cta {
    display: none;
  }

  .services-grid,
  .pricing-layout,
  .zone-section,
  .contact-section,
  .admin-details,
  .admin-update-form {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 760px;
  }

  body::before {
    content: none;
  }

  .site-watermark img {
    width: min(112vmax, 780px);
    opacity: 0.18;
  }

}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 80px;
  }

  .brand small {
    display: none;
  }

  .site-header {
    min-height: 68px;
    padding: 8px 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 118px 0 42px;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .trust-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-list {
    margin-top: 22px;
  }

  .trust-list div {
    min-height: 0;
    padding: 13px 14px;
  }

  .intro-band {
    display: grid;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row strong {
    justify-self: start;
  }

  .section {
    padding: 44px 16px;
  }

  .site-watermark {
    align-items: start;
    padding-top: 92px;
  }

  .site-watermark img {
    width: min(135vw, 620px);
    opacity: 0.16;
  }
}
