/* ============================================================
   Slate Lawn Care and Landscaping — Main Stylesheet
   Palette: earthy backgrounds, BLACK or WHITE text only.
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #3b4a3a;
  --color-primary-dk: #2a3529;
  --color-primary-lt: #4e6249;

  --color-accent: #c8b99a;
  --color-accent-dk: #a89878;

  --color-bg: #f5f3ef;
  --color-bg-tint: #ede9e2;
  --color-white: #ffffff;

  --color-text: #111111;
  --color-text-muted: #333333;
  --color-text-light: #ffffff;
  --color-text-light-muted: rgba(255, 255, 255, .82);

  --color-border: #d6d0c6;
  --color-slate-lt: #666666;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .10);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, .15);

  --max-width: 1140px;
  --section-pad: 5rem 1.5rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-lt); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--color-text-muted); }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-pad); }
.section--white { background: var(--color-white); }
.section--dark { background: var(--color-primary-dk); }
.section--tint { background: var(--color-bg-tint); }
.section--green { background: var(--color-bg-tint); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-text-light); }
.section--dark p { color: var(--color-text-light-muted); }

.text-center { text-align: center; }
.text-white { color: var(--color-text-light) !important; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: .6rem;
}

.section--dark .section-label,
.cta-banner .section-label,
.page-hero .section-label {
  color: var(--color-text-light-muted);
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}
.section--dark .section-intro { color: var(--color-text-light-muted); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-lt);
  border-color: var(--color-primary-lt);
  color: #ffffff;
}

.btn-accent {
  background: var(--color-accent);
  color: #111111;
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  color: #111111;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-lg { padding: .9rem 2.25rem; font-size: 1.1rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .9rem; }
.btn-full { width: 100%; }

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  height: 72px;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}
.nav-logo-sub {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-slate-lt);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .45rem .75rem;
  font-size: .95rem;
  font-weight: 600;
  color: #111111;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--color-bg-tint); color: var(--color-primary); }
.nav-link.active { color: var(--color-primary); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  z-index: 1000;
  padding: .5rem 0;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1.25rem;
  font-size: .92rem;
  color: #111111;
  transition: background .12s;
}
.dropdown-menu a:hover { background: var(--color-bg-tint); color: var(--color-primary); }

.nav-cta { margin-left: .75rem; }

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile nav --- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem 1.5rem;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .6rem .75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--color-bg-tint); color: var(--color-primary); }
.mobile-nav .mobile-section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #666666;
  padding: .75rem .75rem .25rem;
  margin-top: .25rem;
}
.mobile-nav .mobile-cta { margin-top: .75rem; text-align: center; }
.mobile-cta .btn { width: 100%; display: block; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--color-primary-dk);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,33,25,.82) 0%, rgba(42,53,41,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: .75;
  margin-bottom: 1rem;
}
.hero h1 {
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 560px;
  color: rgba(255,255,255,.85);
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Trust Strip --- */
.trust-strip {
  background: var(--color-primary-dk);
  padding: 1.1rem 1.5rem;
}
.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  font-weight: 600;
  color: #ffffff;
}
.trust-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,.6); flex-shrink: 0; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card-icon svg { width: 26px; height: 26px; fill: var(--color-primary); }
.service-card h3 { margin-bottom: .5rem; font-size: 1.2rem; color: #111111; }
.service-card p { font-size: .95rem; margin-bottom: 1.25rem; color: #333333; }
.service-card a { font-weight: 700; font-size: .92rem; color: var(--color-primary); }
.service-card a:hover { color: var(--color-primary-lt); }

/* --- Areas Grid --- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
  justify-content: center;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: .5rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
  color: #111111;
  transition: background .15s, border-color .15s;
}
.area-tag svg { width: 14px; height: 14px; fill: var(--color-primary); }
.area-tag:hover { background: var(--color-bg-tint); border-color: var(--color-primary); color: var(--color-primary); }

.service-area-note {
  margin-top: 1.75rem;
  font-size: .95rem;
}

/* --- Why Slate --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.why-item { text-align: center; }
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}
.why-item h3 {
  margin-bottom: .4rem;
  color: #111111;
}
.why-item p {
  font-size: .92rem;
  color: #333333;
}

.section--green .section-label,
.section--green h2,
.section--green .section-intro,
.section--green .why-item h3,
.section--green .why-item p {
  color: #111111;
}
.section--green .section-intro,
.section--green .why-item p {
  color: #333333;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-primary-dk);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  opacity: .08;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: #ffffff; margin-bottom: .75rem; }
.cta-banner p {
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.testimonial-stars { color: #b8860b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-card blockquote {
  font-size: .97rem;
  color: #333333;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.testimonial-author { font-weight: 700; font-size: .88rem; color: #111111; }
.testimonial-location { font-size: .82rem; color: #666666; }

.testimonial-placeholder {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 560px;
  margin: 2rem auto 0;
  font-style: italic;
  color: #333333;
}
.testimonial-placeholder .reviewer {
  font-style: normal;
  font-weight: 700;
  font-size: .88rem;
  color: #111111;
  margin-top: .75rem;
}

/* --- Page Hero --- */
.page-hero {
  background: var(--color-primary-dk);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.jpg') center/cover no-repeat;
  opacity: .1;
}
.page-hero .container,
.page-hero > * { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}
.page-hero h1 { color: #ffffff; max-width: 700px; margin: 0 auto .75rem; }
.page-hero p {
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: .65rem 1.5rem;
  font-size: .85rem;
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  align-items: center;
  color: #666666;
}
.breadcrumb-inner a { color: var(--color-primary); }
.breadcrumb-inner .sep { color: #999999; }

/* --- Content Prose --- */
.prose h2 { margin: 2.25rem 0 .75rem; color: #111111; }
.prose h3 { margin: 1.75rem 0 .5rem; color: #111111; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: .4rem; color: #333333; }
.prose p { margin-bottom: 1rem; color: #333333; }

/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* --- Feature List --- */
.feature-list { margin-top: 1.25rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--color-border);
  color: #333333;
  font-size: .97rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.section--dark .feature-list li,
.location-highlights .feature-list li { color: #333333; }

/* --- Inline CTA Box --- */
.inline-cta {
  background: var(--color-bg-tint);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}
.inline-cta h3 { margin-bottom: .4rem; color: #111111; }
.inline-cta p { margin-bottom: 1rem; color: #333333; }

.section-label { color: #333333; }

/* --- About page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-highlight-card {
  background: #eef3eb;
  border-radius: 16px;
  padding: 2.5rem;
}
.about-highlight-title {
  margin-bottom: 1rem;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.value-card svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  margin: 0 auto .75rem;
  display: block;
}
.value-card h4 { margin-bottom: .4rem; color: #111111; }
.value-card p { font-size: .92rem; color: #333333; }

/* --- Contact Form --- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-heading {
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.contact-info-item--first {
  margin-top: 1.75rem;
}
.contact-info-item svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #666666;
  margin-bottom: .15rem;
}
.contact-info-item a, .contact-info-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
}
.contact-info-item a:hover { color: var(--color-primary); }

.info-panel {
  background: #eef3eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}
.info-panel h4 {
  margin-bottom: .5rem;
}
.info-panel-list {
  margin-top: .5rem;
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-bottom: 1.5rem; color: #111111; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .97rem;
  font-family: var(--font-body);
  color: #111111;
  background: var(--color-bg);
  transition: border-color .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: .82rem;
  color: #666666;
  margin-top: .4rem;
}
.form-note-center {
  text-align: center;
  margin-top: .75rem;
}
.required-mark {
  color: #111111;
}
.form-success-note {
  color: #111111;
  font-weight: 600;
  margin-top: 1rem;
  font-size: .95rem;
}
.btn-sent {
  background: var(--color-primary-lt) !important;
  border-color: var(--color-primary-lt) !important;
  color: #ffffff !important;
  cursor: default;
}

/* --- Footer --- */
.site-footer {
  background: #1a1e18;
  padding: 4rem 1.5rem 0;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: .75rem;
  filter: brightness(0) invert(1) opacity(.85);
}
.footer-brand p {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  margin-top: 1rem;
}
.footer-phone {
  display: block;
  margin-top: .75rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.footer-phone:hover { color: var(--color-accent); }
.footer-brand-logo {
  margin-bottom: .5rem;
  display: inline-block;
}
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
  transition: color .15s;
}
.footer-col ul li a:hover { color: #ffffff; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* --- Floating Call Button --- */
.float-call {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.4rem;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(42,53,41,.5);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(42,53,41,.6);
  color: #ffffff;
}
.float-call svg { width: 20px; height: 20px; fill: #ffffff; }

/* --- Location page specifics --- */
.location-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-highlights {
  background: var(--color-bg-tint);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.location-highlights h3 { margin-bottom: 1rem; color: #111111; }

/* --- Scroll fade-in animation --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .two-col,
  .about-story,
  .contact-wrap,
  .location-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 75vh; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .float-call .float-label { display: none; }
  .float-call { padding: .85rem; border-radius: 50%; }
  .float-call svg { width: 24px; height: 24px; }
  .nav-logo-img { height: 68px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .trust-strip-inner { gap: 1rem 2rem; }
}