/* ============================================================
 * Tree Services Weatherford TX
 * Palette sampled from the client's reference poster:
 * cream field, deep pine green banners, harvest orange accents.
 * ============================================================ */

:root {
  --cream: #f5f0e1;
  --parch: #eae1ca;
  --pine: #204327;
  --pine-deep: #16301b;
  --harvest: #c96f27;
  --harvest-deep: #a85a1d;
  --ink: #2b2b22;
  --font-display: "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: "Source Sans 3", "Helvetica Neue", system-ui, sans-serif;
  --font-script: "Kaushan Script", "Brush Script MT", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

html {
  background-color: var(--cream);
  color: var(--ink);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--pine);
  color: var(--cream);
}

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

.wrap {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .wrap {
    padding-inline: 1.5rem;
  }
}

section[id] {
  scroll-margin-top: 5rem;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgb(32 67 39 / 0.15);
  background: rgb(245 240 225 / 0.95);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  height: 2.75rem;
  width: 2.75rem;
  mix-blend-mode: multiply;
}

.brand-name {
  line-height: 1;
}

.brand-name .brand-top {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pine);
}

.brand-name .brand-sub {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--harvest);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  font-weight: 600;
  color: var(--pine);
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--harvest);
}

/* Nav CTA garment: compact orange stamp, presses in on click. */
.cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--harvest);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 0.5rem 0.95rem;
  border-radius: 0.45rem;
  box-shadow: 0 3px 0 var(--harvest-deep);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.cta-nav:hover {
  background: var(--harvest-deep);
}

.cta-nav:active {
  transform: translateY(3px);
  box-shadow: 0 0 0 var(--harvest-deep);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-leaves {
  pointer-events: none;
  position: absolute;
  left: -4rem;
  bottom: 0;
  width: 14rem;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .hero-leaves {
    width: 18rem;
  }
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 1rem;
    padding-top: 3.5rem;
  }
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 36rem;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--pine);
}

.h1-deck {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgb(32 67 39 / 0.85);
}

.h1-deck .rule {
  height: 1px;
  width: 2.5rem;
  background: var(--harvest);
}

.h1-line-1 {
  display: block;
  font-size: 3.75rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.h1-line-2 {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .h1-line-1 {
    font-size: 4.5rem;
  }
  .h1-line-2 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .h1-line-1 {
    font-size: 5.5rem;
  }
  .h1-line-2 {
    font-size: 4.6rem;
  }
}

.hero-divider {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-divider .rule {
  height: 2px;
  width: 4rem;
  background: var(--harvest);
}

.hero-divider img {
  height: 2rem;
  width: 2rem;
  mix-blend-mode: multiply;
}

.hero-sub {
  margin-top: 1.25rem;
  max-width: 52ch;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(43 43 34 / 0.85);
}

.hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

/* Hero CTA garment: large orange block, arrow slides on hover. */
.cta-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--harvest);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  padding: 0.95rem 1.6rem;
  border-radius: 0.65rem;
  border: 2px solid var(--harvest-deep);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cta-hero .cta-hero-arrow {
  transition: transform 0.2s ease;
}

.cta-hero:hover {
  background: var(--harvest-deep);
}

.cta-hero:hover .cta-hero-arrow {
  transform: translateX(6px);
}

.cta-hero:active {
  transform: scale(0.98);
}

/* Secondary hero link: underlined, chevron travels down on hover. */
.link-services {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--pine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--harvest);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.link-services .link-services-chev {
  transition: transform 0.2s ease;
}

.link-services:hover .link-services-chev {
  transform: translateY(4px);
}

/* Soft organic fade so the hero photo melts into the cream field. */
.hero-photo {
  width: 100%;
  height: auto;
  -webkit-mask-image: radial-gradient(110% 115% at 72% 38%, #000 48%, transparent 78%);
  mask-image: radial-gradient(110% 115% at 72% 38%, #000 48%, transparent 78%);
}

/* Mount-fired hero entrance. */
.rise {
  animation: rise-in 0.7s ease-out both;
}

.rise-late {
  animation: rise-in 0.7s 0.18s ease-out both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Brush bands ---------- */

.brush-band {
  background: var(--pine);
  clip-path: polygon(
    1% 14%, 2.5% 4%, 9% 0%, 22% 5%, 36% 1%, 51% 5%, 66% 0%, 80% 4%,
    92% 1%, 98.6% 10%, 100% 44%, 99.2% 86%, 96% 99%, 86% 95%, 72% 100%,
    58% 95%, 44% 100%, 30% 96%, 15% 100%, 5.5% 97%, 1.2% 89%, 0% 52%
  );
}

.band-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-align: center;
}

@media (min-width: 768px) {
  .band-title {
    font-size: 1.5rem;
  }
}

/* ---------- Services ---------- */

.services {
  padding-bottom: 4rem;
}

.services .brush-band {
  padding: 1rem 1.5rem;
}

.services-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 2.5rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .services-grid li + li {
    border-left: 1px solid rgb(32 67 39 / 0.15);
  }
}

.services-grid li {
  padding-inline: 0.75rem;
  text-align: center;
}

.services-grid img {
  margin-inline: auto;
  height: 6rem;
  width: 6rem;
  mix-blend-mode: multiply;
}

.services-grid h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--pine);
}

.services-grid p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(43 43 34 / 0.8);
}

/* ---------- Why Weatherford Chooses Us ---------- */

.why {
  padding-bottom: 4rem;
}

.why .brush-band {
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .why .brush-band {
    padding-inline: 2.5rem;
  }
}

.why-list {
  margin: 1.5rem auto 0;
  max-width: 56rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 2.5rem;
  row-gap: 1.25rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-disc {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--cream);
}

.why-disc img {
  height: 1.75rem;
  width: 1.75rem;
  mix-blend-mode: multiply;
}

.why-item span:last-child {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}

/* ---------- Rooted in care ---------- */

.rooted {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .rooted {
    grid-template-columns: 1fr 1fr;
  }
}

.rooted h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--pine);
}

@media (min-width: 768px) {
  .rooted h2 {
    font-size: 3rem;
  }
}

.script-line {
  margin-top: 0.5rem;
  font-family: var(--font-script);
  font-size: 2.25rem;
  line-height: 1.35;
  color: var(--harvest);
}

@media (min-width: 768px) {
  .script-line {
    font-size: 3rem;
  }
}

.rooted-copy {
  margin-top: 1.5rem;
  max-width: 54ch;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(43 43 34 / 0.85);
}

/* Banner CTA garment: pine poster block, lifts, sub-line slides orange. */
.cta-banner {
  margin-top: 2rem;
  max-width: 28rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--pine);
  color: var(--cream);
  border: 2px solid var(--pine-deep);
  border-radius: 0.8rem;
  padding: 1rem 1.4rem;
  box-shadow: 0 6px 18px rgb(22 48 27 / 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner-icon {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--harvest);
}

.cta-banner-icon svg {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--cream);
}

.cta-banner-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.cta-banner-sub {
  display: block;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--parch);
  transition: transform 0.2s ease, color 0.2s ease;
}

.cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgb(22 48 27 / 0.32);
}

.cta-banner:hover .cta-banner-sub {
  transform: translateX(5px);
  color: #e9a768;
}

.cta-banner:active {
  transform: translateY(-1px) scale(0.99);
}

.ba-figure {
  position: relative;
}

.crew-img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 4px solid rgb(32 67 39 / 0.15);
  box-shadow: 0 10px 26px rgb(22 48 27 / 0.18);
}

.ba-label {
  position: absolute;
  top: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgb(22 48 27 / 0.3);
}

.ba-before {
  left: 0.85rem;
  background: var(--pine);
}

.ba-after {
  right: 0.85rem;
  background: var(--harvest);
}

/* ---------- Service area ---------- */

.area {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgb(32 67 39 / 0.15);
  border-bottom: 1px solid rgb(32 67 39 / 0.15);
  background: rgb(234 225 202 / 0.6);
}

.area-leaves {
  pointer-events: none;
  position: absolute;
  right: -3.5rem;
  top: -2.5rem;
  width: 14rem;
  transform: rotate(180deg);
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.area-inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.area h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--pine);
}

@media (min-width: 768px) {
  .area h2 {
    font-size: 2.25rem;
  }
}

.area p {
  margin-top: 1rem;
  max-width: 70ch;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(43 43 34 / 0.85);
}

.towns {
  margin-top: 1.5rem;
  max-width: 56rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.town-chip {
  display: inline-block;
  border: 1px solid rgb(32 67 39 / 0.3);
  background: rgb(255 255 255 / 0.45);
  color: var(--pine);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 48rem;
  margin-inline: auto;
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .faq {
    padding-inline: 1.5rem;
  }
}

.faq h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--pine);
}

@media (min-width: 768px) {
  .faq h2 {
    font-size: 2.25rem;
  }
}

.faq-list {
  margin-top: 2rem;
  border-top: 1px solid rgb(32 67 39 / 0.2);
}

.faq-item {
  border-bottom: 1px solid rgb(32 67 39 / 0.22);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--pine);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--harvest);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 65ch;
  padding-bottom: 1.25rem;
  line-height: 1.65;
  color: rgb(43 43 34 / 0.85);
}

/* ---------- Estimate form ---------- */

.estimate {
  border-top: 1px solid rgb(32 67 39 / 0.15);
  background-image: url("/assets/paper.jpg");
  background-size: cover;
  background-position: center;
}

.estimate-grid {
  display: grid;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .estimate-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.form-card {
  border: 2px solid rgb(32 67 39 / 0.2);
  border-radius: 0.75rem;
  background: rgb(245 240 225 / 0.9);
  padding: 1.5rem;
  box-shadow: 0 10px 26px rgb(22 48 27 / 0.12);
}

@media (min-width: 640px) {
  .form-card {
    padding: 2rem;
  }
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--pine);
}

@media (min-width: 768px) {
  .form-card h2 {
    font-size: 2.25rem;
  }
}

.form-card .form-sub {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: rgb(43 43 34 / 0.8);
}

.lead-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lead-form {
    grid-template-columns: 1fr 1fr;
  }
  .form-row-full {
    grid-column: span 2;
  }
}

.lead-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--pine);
}

.lead-form label .opt {
  font-weight: 400;
  color: rgb(43 43 34 / 0.5);
}

.field {
  width: 100%;
  border: 1px solid rgb(32 67 39 / 0.32);
  background: rgb(255 255 255 / 0.72);
  color: var(--ink);
  border-radius: 0.5rem;
  padding: 0.65rem 0.8rem;
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.5;
}

.field::placeholder {
  color: rgb(43 43 34 / 0.45);
}

.field:focus {
  outline: 2px solid var(--harvest);
  outline-offset: 1px;
}

.hp-field {
  display: none;
}

/* Submit garment: wide pine bar. */
.cta-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--pine);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0.55rem;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-submit:hover {
  background: var(--pine-deep);
}

.cta-submit:active {
  transform: scale(0.99);
}

.aside-next {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .aside-next {
    padding-top: 2.5rem;
  }
}

.aside-next h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pine);
}

.steps {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  display: flex;
  gap: 1rem;
}

.step-num {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--harvest);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.steps p {
  padding-top: 0.25rem;
  line-height: 1.6;
  color: rgb(43 43 34 / 0.85);
}

.ticks {
  margin-top: 2rem;
  border-top: 1px solid rgb(32 67 39 / 0.2);
  padding-top: 1.5rem;
  display: grid;
  gap: 0.625rem;
}

.ticks li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
  color: var(--pine);
}

.ticks svg {
  height: 1rem;
  width: 1rem;
  color: var(--harvest);
  flex-shrink: 0;
}

/* ---------- Thanks page ---------- */

.thanks-main {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.thanks-card {
  max-width: 32rem;
  text-align: center;
  border: 2px solid rgb(32 67 39 / 0.25);
  border-radius: 0.75rem;
  background: rgb(234 225 202 / 0.7);
  padding: 2.5rem 2rem;
}

.thanks-check {
  margin-inline: auto;
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 999px;
  background: var(--pine);
}

.thanks-check svg {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--cream);
}

.thanks-card h1 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pine);
}

.thanks-card p {
  margin-top: 0.75rem;
  color: rgb(43 43 34 / 0.8);
}

.back-home {
  margin-top: 1.5rem;
  display: inline-block;
  border-radius: 0.5rem;
  background: var(--pine);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.4rem;
  transition: background-color 0.2s ease;
}

.back-home:hover {
  background: var(--pine-deep);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--pine-deep);
  color: var(--cream);
}

.footer-inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  height: 5rem;
  width: 5rem;
  border-radius: 999px;
}

.footer-wordmark {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-sub {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--harvest);
}

.footer-sub .rule {
  height: 1px;
  width: 2rem;
  background: var(--harvest);
}

.footer-tagline {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgb(245 240 225 / 0.7);
}

.footer-grid {
  margin-top: 2.5rem;
  border-top: 1px solid rgb(245 240 225 / 0.15);
  padding-top: 2rem;
  display: grid;
  gap: 2rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-grid .col-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(245 240 225 / 0.9);
}

.footer-grid ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.footer-grid p {
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-grid ul,
.footer-grid p {
  color: rgb(245 240 225 / 0.75);
}

.footer-grid a {
  transition: color 0.15s ease;
}

.footer-grid a:hover {
  color: var(--harvest);
}

.copyright {
  margin-top: 2.5rem;
  border-top: 1px solid rgb(245 240 225 / 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgb(245 240 225 / 0.6);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
