* { box-sizing: border-box; }

:root {
  --green-950: #0b241d;
  --green-900: #103429;
  --green-800: #184b3b;
  --green-700: #235c49;
  --gold: #c99532;
  --gold-dark: #a9751d;
  --cream: #f5f1e7;
  --stone: #eee9de;
  --paper: #ffffff;
  --ink: #15201c;
  --muted: #69726e;
  --line: #dedbd2;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; }

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

.utility-bar {
  background: var(--green-950);
  color: #fff;
  font-size: 0.86rem;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-actions {
  display: flex;
  gap: 22px;
}

.utility-actions a {
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 16px rgba(11,36,29,.06);
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link img {
  display: block;
  width: 272px;
  max-width: 34vw;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 27px;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: #27322e;
  font-weight: 800;
  font-size: .92rem;
}

.desktop-nav a:hover {
  color: var(--gold-dark);
}

.header-cta,
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  border-radius: 5px;
}

.header-cta {
  background: var(--gold);
  color: #fff;
  padding: 12px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(201,149,50,.22), transparent 29%),
    linear-gradient(115deg, #09251e 0%, #103c30 60%, #0c2b23 100%);
  color: #fff;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image:
    linear-gradient(30deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff),
    linear-gradient(150deg, #fff 12%, transparent 12.5%, transparent 87%, #fff 87.5%, #fff);
  background-size: 110px 190px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 650px;
  padding: 94px 0 86px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 62px;
  align-items: center;
}

.kicker {
  margin: 0 0 12px;
  color: #e4b457;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
}

.dark-kicker { color: var(--gold-dark); }

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.08;
}

h1 {
  margin: 0 0 25px;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  letter-spacing: -.045em;
  max-width: 820px;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  letter-spacing: -.035em;
}

h3 {
  font-size: 1.45rem;
}

.hero-lead {
  max-width: 720px;
  color: #d8e3de;
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 31px 0 42px;
}

.btn {
  padding: 14px 20px;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover { background: var(--gold-dark); }

.btn-ghost {
  border-color: rgba(255,255,255,.72);
  color: #fff;
}

.btn-dark {
  background: var(--green-950);
  color: #fff;
}

.full { width: 100%; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}

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

.hero-proof strong { color: #fff; }

.hero-proof span {
  margin-top: 3px;
  font-size: .85rem;
  color: #aebdb7;
}

.hero-card {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  padding: 38px;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  border-top: 6px solid var(--gold);
}

.small-label {
  display: block;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .74rem;
}

.hero-card h2 {
  font-size: 2.15rem;
  margin-top: 13px;
}

.hero-card ul {
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.hero-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #4b5651;
  font-weight: 700;
}

.hero-card li::before {
  content: "✓";
  color: var(--green-700);
  font-weight: 900;
  margin-right: 10px;
}

.text-link {
  color: var(--green-800);
  font-weight: 900;
}

.business-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.strip-grid > div {
  padding: 27px 22px;
  border-right: 1px solid #d8d0c2;
}

.strip-grid > div:last-child { border-right: 0; }

.strip-grid span,
.strip-grid strong,
.strip-grid small {
  display: block;
}

.strip-grid span {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: .72rem;
}

.strip-grid strong {
  margin-top: 7px;
  font-size: 1rem;
}

.strip-grid small {
  margin-top: 3px;
  color: var(--muted);
}

.section { padding: 92px 0; }

.services-section {
  background:
    linear-gradient(rgba(255,255,255,.97), rgba(255,255,255,.97)),
    repeating-linear-gradient(45deg, #f4f1ea 0 2px, #fff 2px 9px);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.section-intro > p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

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

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  min-height: 245px;
  box-shadow: 0 8px 22px rgba(16,52,41,.045);
}

.service-card:hover {
  border-color: #c7b58e;
  transform: translateY(-3px);
  transition: .18s ease;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 28px;
}

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

.about-section {
  background: var(--green-900);
  color: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 68px;
  align-items: center;
}

.brand-panel {
  background: #fff;
  padding: 46px 40px;
  min-height: 385px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 24px 58px rgba(0,0,0,.22);
}

.brand-panel img {
  width: 100%;
  max-width: 390px;
}

.brand-panel-line {
  width: 60px;
  height: 4px;
  margin: 30px 0 21px;
  background: var(--gold);
}

.brand-panel p {
  margin: 0;
  color: #59645f;
  font-size: 1.04rem;
}

.about-copy > p:not(.kicker) {
  color: #d2ddd8;
  font-size: 1.04rem;
}

.about-features {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
}

.about-features > div {
  padding-top: 18px;
  border-top: 2px solid rgba(201,149,50,.65);
}

.about-features strong,
.about-features span {
  display: block;
}

.about-features span {
  margin-top: 5px;
  color: #b8c8c1;
  font-size: .84rem;
}

.service-area-section {
  background: var(--stone);
}

.area-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 65px;
  align-items: center;
}

.area-layout > div:first-child p:not(.kicker) {
  color: var(--muted);
  max-width: 690px;
}

.area-box {
  background: #fff;
  border-left: 6px solid var(--gold);
  padding: 35px;
  border-radius: 7px;
  box-shadow: 0 12px 34px rgba(16,52,41,.07);
}

.area-box h3 {
  font-size: 1.8rem;
  margin: 13px 0;
}

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

.contact-section {
  background:
    radial-gradient(circle at 10% 80%, rgba(201,149,50,.15), transparent 24%),
    var(--green-950);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: start;
}

.contact-copy > p:not(.kicker) {
  color: #c6d3cd;
}

.contact-buttons {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-buttons a {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  text-decoration: none;
  border-radius: 6px;
}

.contact-buttons span,
.contact-buttons strong {
  display: block;
}

.contact-buttons span {
  color: #d8aa50;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.contact-buttons strong {
  margin-top: 4px;
  font-size: 1.05rem;
}

.quote-form {
  background: #fff;
  color: var(--ink);
  padding: 32px;
  border-radius: 9px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form label {
  display: block;
  font-weight: 800;
  font-size: .91rem;
  margin-bottom: 17px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  font: inherit;
  border: 1px solid #bbbdb9;
  border-radius: 5px;
  background: #fff;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .78rem;
}

.site-footer {
  background: #071a15;
  color: #fff;
  border-top: 1px solid #264138;
}

.footer-layout {
  min-height: 145px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-layout img {
  width: 235px;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
}

.footer-layout > div:nth-child(2) strong,
.footer-layout > div:nth-child(2) span {
  display: block;
}

.footer-layout > div:nth-child(2) span {
  color: #8da49a;
  margin-top: 3px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer-contact a {
  text-decoration: none;
  margin: 3px 0;
  font-weight: 800;
}

.mobile-bar { display: none; }

@media (max-width: 930px) {
  body { padding-bottom: 58px; }
  .desktop-nav { display: none; }
  .hero-layout,
  .section-intro,
  .about-layout,
  .area-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-layout { gap: 38px; }
  .strip-grid,
  .services-grid,
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
  .footer-layout {
    grid-template-columns: 1fr;
    padding: 35px 0;
  }
  .footer-contact { text-align: left; }
  .mobile-bar {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background: var(--green-950);
    border-top: 1px solid #315447;
  }
  .mobile-bar a {
    text-align: center;
    padding: 16px 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    border-right: 1px solid #315447;
  }
  .mobile-bar a:last-child {
    border-right: 0;
    background: var(--gold);
  }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1160px); }
  .utility-inner > span { display: none; }
  .utility-inner { justify-content: center; }
  .header-cta { display: none; }
  .logo-link img { width: 235px; max-width: 70vw; }
  .hero-layout { min-height: auto; padding: 70px 0 62px; }
  .hero-proof,
  .strip-grid,
  .services-grid,
  .about-features,
  .form-row {
    grid-template-columns: 1fr;
  }
  .strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid #d8d0c2;
  }
  .section { padding: 70px 0; }
  .hero-card { padding: 28px; }
}
