/* ============================================================
   Full Scape Land Solutions — styles
   Palette:
     forest 900 #142a1f  700 #1f3a2b  500 #2f4f3a  300 #4a6b54
     soil   700 #3b2a1c  600 #5a4128  500 #7a6644
     stone  900 #2c1f12  500 #7a7470  300 #c9c4b2  200 #d9d4c4
     cream  100 #f6efe1  50  #fbf6ea
     clay   500 #c87a3c  600 #a85a26
   ============================================================ */

:root {
  --forest-900: #142a1f;
  --forest-700: #1f3a2b;
  --forest-500: #2f4f3a;
  --forest-300: #4a6b54;

  --soil-700: #3b2a1c;
  --soil-600: #5a4128;
  --soil-500: #7a6644;

  --stone-900: #2c1f12;
  --stone-500: #7a7470;
  --stone-300: #c9c4b2;
  --stone-200: #e2dccb;

  --cream-100: #f6efe1;
  --cream-50:  #fbf6ea;

  --clay-500: #c87a3c;
  --clay-600: #a85a26;

  --bg: var(--cream-50);
  --surface: var(--cream-100);
  --text: var(--stone-900);
  --text-muted: #5a4a36;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(20, 42, 31, 0.06), 0 1px 1px rgba(20, 42, 31, 0.04);
  --shadow-md: 0 6px 18px -8px rgba(20, 42, 31, 0.18), 0 2px 4px rgba(20, 42, 31, 0.05);
  --shadow-lg: 0 18px 40px -16px rgba(20, 42, 31, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--forest-700); text-decoration: none; transition: color 0.18s var(--ease); }
a:hover { color: var(--clay-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest-900);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest-700); color: var(--cream-50);
  padding: 10px 14px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s var(--ease), background 0.18s var(--ease),
              border-color 0.18s var(--ease), color 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-700);
  color: var(--cream-50);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--forest-900);
  color: var(--cream-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--forest-700);
  border-color: var(--stone-300);
}
.btn-ghost:hover {
  border-color: var(--forest-700);
  color: var(--forest-900);
}
.btn.block { display: flex; width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--stone-200);
  background: rgba(251, 246, 234, 0.95);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--forest-900);
}
.brand:hover { color: var(--forest-900); }
.brand-mark { display: none; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-name.light { color: var(--cream-50); font-size: 18px; }
.brand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soil-500);
  margin-top: 4px;
}

.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.primary-nav ul {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--stone-900);
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--forest-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { padding: 10px 18px; font-size: 14px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--forest-900);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--stone-200);
  padding: 18px 24px 24px;
  background: var(--cream-50);
}
.mobile-menu ul { list-style: none; margin: 0 0 18px; padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--stone-200); }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--forest-900);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.95);
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 239, 225, 0.94) 0%, rgba(246, 239, 225, 0.82) 44%, rgba(246, 239, 225, 0.36) 70%, rgba(31, 58, 43, 0.2) 100%),
    linear-gradient(180deg, rgba(246, 239, 225, 0.75) 0%, rgba(246, 239, 225, 0.38) 48%, rgba(31, 58, 43, 0.55) 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(59, 42, 28, 0.12) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.24;
}

.hero-inner {
  padding: 104px 24px 104px;
  max-width: 1100px;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soil-500);
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.2vw, 104px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.006em;
  color: var(--forest-900);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--clay-600);
}
.hero-title .amp {
  font-weight: 400;
  color: var(--soil-600);
  margin-left: 0.16em;
}

.hero-sub {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border: 1px solid rgba(31, 58, 43, 0.16);
  border-radius: 22px;
  background: rgba(249, 245, 236, 0.88);
  box-shadow: 0 18px 50px rgba(31, 58, 43, 0.12);
  backdrop-filter: blur(8px);
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
.hero-meta span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   SECTIONS — common
   ============================================================ */
.section {
  padding: clamp(72px, 9vw, 128px) 0;
}
.section-cream { background: var(--cream-100); }
.section-forest {
  background: var(--forest-700);
  color: var(--cream-50);
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-600);
  font-weight: 600;
  margin-bottom: 16px;
}
.kicker.light { color: var(--clay-500); }

.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.section-title.light { color: var(--cream-50); }

.section-head { margin-bottom: 56px; max-width: 760px; }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 58ch;
}

/* ============================================================
   OVERVIEW (pillars)
   ============================================================ */
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 80px;
  align-items: start;
}
.overview-intro .section-title { margin-bottom: 24px; }

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
}
.pillars li {
  border-top: 1px solid var(--stone-200);
  padding-top: 20px;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--clay-600);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}
.pillars h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.pillars p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   SERVICES dropdowns
   ============================================================ */
.service-accordion {
  display: grid;
  gap: 14px;
}
.service-panel {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 58, 43, 0.06);
}
.service-panel summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.service-panel summary::-webkit-details-marker { display: none; }
.service-summary-text {
  display: grid;
  gap: 5px;
}
.service-label {
  font-size: 19px;
  font-weight: 650;
  color: var(--forest-900);
  letter-spacing: -0.005em;
}
.service-summary-text span:last-child {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-muted);
}
.service-toggle {
  flex: 0 0 auto;
  min-width: 74px;
  text-align: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--forest-700);
  color: var(--cream-50);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-panel[open] .service-toggle::before {
  content: "Close";
}
.service-panel:not([open]) .service-toggle::before {
  content: "Open";
}
.service-toggle {
  font-size: 0;
}
.service-panel-body {
  border-top: 1px solid var(--stone-200);
  padding: 22px 24px 26px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: rgba(251, 246, 234, 0.7);
}
.service-photo {
  width: 168px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 58, 43, 0.16);
  box-shadow: 0 10px 24px rgba(31, 58, 43, 0.12);
}
.service-panel-copy p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.service-panel-copy ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.service-panel-copy li {
  font-size: 14.5px;
  color: var(--forest-900);
}

/* ============================================================
   LAND solutions
   ============================================================ */
.land-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 80px;
  align-items: start;
}
.land-copy .section-title { margin-bottom: 24px; }
.land-copy .lead { margin-bottom: 40px; }

.land-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
.land-bullets li {
  border-left: 2px solid var(--clay-500);
  padding-left: 20px;
}
.land-bullets h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}
.land-bullets p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.land-visual {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--stone-200);
}
.site-plan-board {
  background: var(--cream-50);
  padding: 18px;
  display: grid;
  gap: 16px;
}
.plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.plan-kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-600);
  font-weight: 700;
  margin-bottom: 6px;
}
.plan-header h3 {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.015em;
  color: var(--forest-900);
  max-width: 15ch;
}
.plan-badge {
  flex: 0 0 auto;
  border: 1px solid rgba(31, 58, 43, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream-100);
}
.plan-map {
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  border: 1px solid rgba(31, 58, 43, 0.16);
  background: var(--cream-100);
}
.plan-map svg {
  display: block;
}
.plan-change-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.plan-change-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(31, 58, 43, 0.14);
  background: var(--cream-100);
}
.plan-change-grid img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  display: block;
}
.plan-change-grid figcaption {
  padding: 10px 11px 12px;
  display: grid;
  gap: 2px;
}
.plan-change-grid strong {
  font-size: 13px;
  color: var(--forest-900);
}
.plan-change-grid span {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-muted);
}

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 239, 225, 0.18);
}
.step-num {
  position: absolute;
  top: -14px;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clay-500);
  color: var(--forest-900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.steps h3 {
  color: var(--cream-50);
  font-size: 20px;
  font-weight: 600;
  margin: 18px 0 8px;
}
.steps p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(246, 239, 225, 0.78);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--cream-100);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              border-color 0.2s var(--ease);
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest-300);
}
.why-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.why-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 72px;
  align-items: start;
}
.contact-copy .section-title { margin-bottom: 20px; }
.contact-copy .lead { margin-bottom: 32px; }

.contact-direct {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--stone-200);
}
.contact-direct li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone-200);
  align-items: baseline;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soil-500);
  font-weight: 600;
}
.contact-direct a, .contact-direct span:not(.contact-label) {
  font-size: 15.5px;
  color: var(--forest-900);
}

.estimate-form {
  background: var(--cream-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soil-500);
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgba(47, 79, 58, 0.15);
}
.field textarea { resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* ============================================================
   BRAND MARK FEATURE (logo concept area)
   ============================================================ */
.brand-feature {
  background: var(--forest-900);
  color: var(--cream-50);
  padding: clamp(72px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.brand-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 122, 60, 0.08), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(74, 107, 84, 0.18), transparent 50%);
  pointer-events: none;
}
.brand-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: center;
  position: relative;
}
.brand-feature .kicker {
  color: var(--clay-500);
}
.brand-feature h2 {
  color: var(--cream-50);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.brand-feature p {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(246, 239, 225, 0.78);
  max-width: 46ch;
}
.brand-feature .lockup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  border: 1px solid rgba(246, 239, 225, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(31, 58, 43, 0.4), rgba(20, 42, 31, 0.2));
}
.brand-feature .lockup-wrap svg {
  width: 100%;
  height: auto;
  max-width: 440px;
}

.mark-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.mark-detail-card {
  border: 1px solid rgba(246, 239, 225, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(246, 239, 225, 0.03);
}
.mark-detail-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.mark-detail-card h4 {
  color: var(--cream-50);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.mark-detail-card p {
  font-size: 12.5px;
  color: rgba(246, 239, 225, 0.65);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest-900);
  color: rgba(246, 239, 225, 0.82);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246, 239, 225, 0.1);
}
.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(246, 239, 225, 0.7);
  margin-top: 4px;
}
.site-footer h4 {
  color: var(--cream-50);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: 14.5px; }
.site-footer a { color: rgba(246, 239, 225, 0.82); }
.site-footer a:hover { color: var(--clay-500); }

.footer-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(246, 239, 225, 0.55);
}
.footer-bar p { margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .overview-grid,
  .land-grid,
  .contact-grid,
  .brand-feature-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .land-visual { position: static; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .mark-detail { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .primary-nav,
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-row { height: 68px; }

  .hero-inner { padding: 72px 24px 88px; }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-meta li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: baseline;
  }
  .hero-meta strong { font-size: 22px; }

  .pillars { grid-template-columns: 1fr; gap: 28px; }

  .section-head { margin-bottom: 40px; }

  .service-panel summary {
    align-items: flex-start;
    gap: 16px;
  }
  .service-panel-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-photo {
    width: 100%;
    max-width: 320px;
    height: 180px;
  }

  .estimate-form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; }

  .brand-sub { display: none; }
}

@media (max-width: 420px) {
  .container { padding: 0 20px; }
  .service-panel summary { padding: 20px; }
  .service-panel-body { padding: 20px; }
  .service-toggle { display: none; }
  .why-card { padding: 22px; }
}

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