/* KG Farming LLC — Professional, value-driven. Excavating (orange/black) + Farming (green) */
:root {
  --black: #1a1a1a;
  --charcoal: #2d2d2d;
  --steel: #4a4a4a;
  --amber: #e5a00d;
  --amber-dim: #c48a0a;
  --farm-green: #2e5a27;
  --farm-green-light: #3d6b34;
  --white: #f5f5f5;
  --offwhite: #e8e8e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--offwhite);
  background: var(--black);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header — Columbia County focus */
.site-header {
  background: var(--charcoal);
  border-bottom: 3px solid var(--amber);
  padding: 1rem 1.25rem;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  text-decoration: none;
  display: block;
}

.tagline {
  margin: 0.25rem 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--offwhite);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--amber);
}
nav a[href="#area-served"]:hover {
  color: var(--farm-green);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  padding: 3rem 1.25rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--offwhite);
  margin: 0 0 1.75rem;
}

.cta {
  display: inline-block;
  background: var(--amber);
  color: var(--black);
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(229, 160, 13, 0.4);
  border: 2px solid var(--amber);
  transition: background 0.2s, box-shadow 0.2s;
}

.cta:hover {
  background: var(--amber-dim);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(229, 160, 13, 0.5);
}

/* Sections */
.section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--steel);
}

.section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  margin: 0 0 0.75rem;
}

.section-lead {
  margin: 0 0 1.25rem;
  color: var(--offwhite);
}

.philosophy {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--charcoal);
  border-left: 4px solid var(--farm-green);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: var(--offwhite);
}

.service-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--offwhite);
}

.service-list li {
  margin-bottom: 0.5rem;
}

/* Services — side-by-side: list left, dump truck image right */
.services-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.services-content {
  flex: 1 1 280px;
  min-width: 0;
}
.services-layout .section-image-wrap.services-image-wrap {
  flex: 0 1 340px;
  margin: 0;
  min-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.services-layout .section-image-wrap .section-img {
  max-height: 340px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Section image placeholders */
.section-image-wrap {
  width: 100%;
  margin: 0 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--steel);
}
.section-image-wrap.services-image-wrap {
  border-color: rgba(229, 160, 13, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.section-image-wrap.area-image-wrap {
  border-color: rgba(46, 90, 39, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.section-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

/* Area Served — side-by-side: text left, KG Farming image right */
.area-served {
  background: var(--charcoal);
  border-top-color: var(--farm-green);
}
.area-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.area-content {
  flex: 1 1 280px;
  min-width: 0;
}
.area-layout .section-image-wrap.area-image-wrap {
  flex: 0 1 340px;
  margin: 0;
  min-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.area-layout .section-image-wrap .section-img {
  max-height: 340px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.area-served h2 {
  color: var(--farm-green);
}

.area-copy-single {
  margin: 0 0 1.25rem;
  color: var(--offwhite);
}

.area-copy {
  margin-bottom: 1.25rem;
}

.area-copy p {
  margin: 0;
  color: var(--offwhite);
}

.area-pit-stops h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.5rem 0 0.75rem;
}

.pit-stops {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--offwhite);
}

.pit-stops li {
  margin-bottom: 0.5rem;
}

/* Bullet version — farming green */
.area-bullets {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--black);
  border-left: 4px solid var(--farm-green);
  border-radius: 0 6px 6px 0;
}

.area-bullets ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--offwhite);
}

.area-bullets li {
  margin-bottom: 0.4rem;
}

/* Contact — side-by-side: contact info left, equipment image right */
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.contact-content {
  flex: 1 1 280px;
  min-width: 0;
}
.contact-lead {
  margin: 0 0 0.75rem;
  color: var(--offwhite);
}
.contact-layout .section-image-wrap.contact-image-wrap {
  flex: 0 1 340px;
  margin: 0;
  min-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  border-color: rgba(229, 160, 13, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.contact-layout .section-image-wrap .section-img {
  max-height: 340px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-address {
  color: var(--amber);
  font-weight: 600;
}

.contact-link {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Quote page */
.quote-main {
  padding: 2.5rem 0 4rem;
}
.container--narrow {
  max-width: 560px;
}
.quote-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  margin: 0 0 0.5rem;
}
.quote-intro {
  color: var(--offwhite);
  margin: 0 0 1.75rem;
}
.quote-form-wrap {
  background: var(--charcoal);
  padding: 1.5rem 1.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--steel);
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.quote-legend {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: block;
}
.quote-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.quote-label-text {
  font-weight: 600;
  color: var(--offwhite);
  font-size: 0.95rem;
}
.quote-label-text em {
  font-weight: 400;
  color: var(--steel);
  font-style: normal;
}
.quote-input,
.quote-textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--steel);
  border-radius: 6px;
}
.quote-input:focus,
.quote-textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 2px rgba(229, 160, 13, 0.25);
}
.quote-textarea {
  resize: vertical;
  min-height: 80px;
}
.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.quote-label--half {
  flex: 1 1 200px;
  min-width: 0;
}
.quote-label--radio {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.quote-label--radio input {
  margin: 0;
}
.quote-label--radio span {
  color: var(--offwhite);
}
.quote-submit {
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  background: var(--amber);
  border: 2px solid var(--amber);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(229, 160, 13, 0.4);
}
.quote-submit:hover {
  background: var(--amber-dim);
  border-color: var(--amber-dim);
  box-shadow: 0 6px 20px rgba(229, 160, 13, 0.5);
}
.quote-thanks {
  text-align: center;
  padding: 2rem;
  background: var(--charcoal);
  border-radius: 12px;
  border-left: 4px solid var(--farm-green);
}
.quote-thanks-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.quote-thanks p:last-of-type {
  margin: 0 0 1.25rem;
  color: var(--offwhite);
}

/* Footer — excavating + farming cohesion */
.site-footer {
  padding: 1.5rem 1.25rem;
  background: var(--charcoal);
  border-top: 2px solid var(--farm-green);
  text-align: center;
  font-size: 0.9rem;
  color: var(--steel);
}

.footer-area {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
}

@media (max-width: 639px) {
  .services-layout {
    flex-direction: column;
  }
  .services-layout .section-image-wrap.services-image-wrap {
    flex: 1 1 auto;
    min-width: 100%;
  }
  .area-layout {
    flex-direction: column;
  }
  .area-layout .section-image-wrap.area-image-wrap {
    flex: 1 1 auto;
    min-width: 100%;
  }
  .contact-layout {
    flex-direction: column;
  }
  .contact-layout .section-image-wrap.contact-image-wrap {
    flex: 1 1 auto;
    min-width: 100%;
  }
}

@media (min-width: 600px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 1.5rem;
  }

  .tagline {
    margin: 0;
  }

  nav {
    margin-left: auto;
  }
}
