/* Hartwell Garden Supply — probe page styles */

:root {
  --bg: #f6f3ee;
  --bg-alt: #ebe6dc;
  --ink: #1c2419;
  --muted: #4a5548;
  --accent: #2d5a27;
  --accent-light: #3d7a34;
  --cream: #fffdf8;
  --shadow: 0 12px 40px rgba(28, 36, 25, 0.08);
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 6px;
  z-index: 1000;
}

.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(45, 90, 39, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(165deg, #e8efe4 0%, var(--bg) 45%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}

.lede {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45, 90, 39, 0.35);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: rgba(45, 90, 39, 0.35);
}

.btn-ghost:hover {
  background: rgba(45, 90, 39, 0.06);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hero-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-intro {
  max-width: 62ch;
  color: var(--muted);
  margin: 0 0 2rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.75rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 36, 25, 0.06);
}

.card img {
  display: block;
  width: 100%;
  height: auto;
}

.card h3 {
  margin: 1rem 1.25rem 0.35rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.checklist {
  padding-left: 1.2rem;
  color: var(--muted);
}

.checklist li {
  margin-bottom: 0.35rem;
}

.pullquote {
  margin: 0;
  padding: 1.5rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.pullquote p {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
}

.pullquote footer {
  font-size: 0.9rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.schedule th,
.schedule td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(28, 36, 25, 0.08);
}

.schedule th {
  background: rgba(45, 90, 39, 0.1);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-cta {
  background: linear-gradient(180deg, #dfe8d9 0%, var(--bg) 100%);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .cta-inner {
    grid-template-columns: 1fr;
  }
}

.contact-lede {
  color: var(--muted);
  max-width: 48ch;
}

.contact-lede code {
  font-size: 0.9em;
  background: rgba(45, 90, 39, 0.1);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.address {
  font-style: normal;
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

.address a {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 600;
  font-size: 0.85rem;
}

.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(28, 36, 25, 0.15);
  background: #fff;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(28, 36, 25, 0.08);
  background: var(--cream);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-inner p {
  margin: 0;
}

.fine-print {
  max-width: 36ch;
  text-align: right;
}

@media (max-width: 640px) {
  .fine-print {
    text-align: left;
  }
}
