/* Zak Services — calm modern garden shop */
:root {
  --bg: #f4f7f6;
  --bg-soft: #e8efeb;
  --surface: #ffffff;
  --text: #1c2b24;
  --text-muted: #5a6b62;
  --primary: #2f5d4a;
  --primary-deep: #1e3f32;
  --primary-soft: #dce8e1;
  --accent: #4a7c8c;
  --accent-soft: #e4eef1;
  --sage: #8fa894;
  --mist: #c5d4ce;
  --border: #d7e2dc;
  --focus: #4a7c8c;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(28, 43, 36, 0.07);
  --shadow-soft: 0 4px 18px rgba(28, 43, 36, 0.05);
  --shadow-lift: 0 14px 36px rgba(28, 43, 36, 0.1);
  --max: 70rem;
  --header-h: 4.5rem;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.25rem;
  --space-6: 3.5rem;
  --space-7: 5rem;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--primary-deep);
  color: var(--surface);
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 500;
}

.skip-link:focus {
  left: 0;
}

.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;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Sticky white header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: var(--primary-deep);
  padding: 0.5rem 0;
}

.logo:hover,
.logo:focus-visible {
  text-decoration: none;
  color: var(--primary);
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.15rem;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  color: var(--primary-deep);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.header-phone:hover {
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--primary-deep);
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--primary-soft);
  border-color: var(--mist);
}

.nav-toggle-bars {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 1px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, top 0.2s;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
}

.site-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-soft);
}

.site-nav .nav-phone {
  display: block;
  margin: 0.5rem 1.25rem 0.75rem;
  padding: 0.7rem 1rem;
  text-align: center;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--surface);
  font-weight: 500;
  text-decoration: none;
}

.site-nav .nav-phone:hover {
  background: var(--primary-deep);
  color: var(--surface);
}

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

  .header-actions {
    display: flex;
  }

  .site-nav .nav-phone {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    background: transparent;
    margin-left: auto;
    margin-right: 0.75rem;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
  }

  .site-nav a {
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    background: transparent;
    font-size: 0.95rem;
  }

  .site-nav a:hover {
    color: var(--primary);
    background: var(--primary-soft);
  }

  .site-nav a[aria-current="page"] {
    color: var(--primary-deep);
    background: var(--primary-soft);
  }
}

/* ——— Main ——— */
main {
  flex: 1;
}

.section {
  padding: var(--space-6) 0;
}

.section-airy {
  padding: var(--space-7) 0;
}

.section-title {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  letter-spacing: -0.01em;
  color: var(--primary-deep);
  text-align: center;
  line-height: 1.25;
}

.section-lead {
  margin: 0 auto var(--space-5);
  max-width: 36rem;
  color: var(--text-muted);
  text-align: center;
  font-size: 1.05rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(47, 93, 74, 0.22);
}

.btn-primary:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: var(--surface);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--primary-soft);
  color: var(--primary-deep);
  border-color: var(--mist);
}

.btn-accent {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #3d6a78;
  border-color: #3d6a78;
  color: var(--surface);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: clamp(26rem, 72vh, 38rem);
  display: flex;
  align-items: flex-end;
  color: var(--surface);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(30, 63, 50, 0.15) 0%,
      rgba(30, 63, 50, 0.35) 40%,
      rgba(28, 43, 36, 0.78) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 38rem;
  padding: var(--space-6) 0 var(--space-6);
}

.hero-eyebrow {
  margin: 0 0 var(--space-2);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 var(--space-4);
  font-size: 1.08rem;
  max-width: 32rem;
  opacity: 0.92;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Intro ——— */
.intro {
  text-align: center;
}

.intro-text {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

/* ——— Photo cards ——— */
.photo-cards {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 720px) {
  .photo-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.photo-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(215, 226, 220, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.photo-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.photo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-card:hover .photo-card-media img {
  transform: scale(1.03);
}

.photo-card-body {
  padding: var(--space-4);
}

.photo-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-deep);
  letter-spacing: -0.01em;
}

.photo-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ——— Brands ——— */
.brands {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.brands-label {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-deep);
  text-align: center;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.brand-chips li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.brand-chips img {
  max-height: 1.5rem;
  width: auto;
  max-width: 5.5rem;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(0.25);
}

.brand-chips li:hover img {
  opacity: 1;
  filter: none;
}

/* ——— CTA band ——— */
.cta-band {
  background:
    linear-gradient(135deg, var(--primary) 0%, #3a6f7a 55%, var(--accent) 100%);
  color: var(--surface);
  text-align: center;
  padding: var(--space-6) 0;
}

.cta-band .section-title {
  color: var(--surface);
}

.cta-band p {
  margin: 0 auto var(--space-4);
  max-width: 34rem;
  opacity: 0.92;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
}

/* ——— Inner page hero ——— */
.page-hero {
  padding: var(--space-6) 0 var(--space-4);
  background:
    linear-gradient(180deg, var(--primary-soft) 0%, var(--bg) 100%);
}

.page-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--primary-deep);
  line-height: 1.2;
}

.page-hero p {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-soft);
}

.contact-card h2 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-deep);
  letter-spacing: -0.01em;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin: 0 0 var(--space-3);
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.contact-list a {
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
}

.contact-list a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.hours-table th {
  font-weight: 600;
  width: 42%;
  padding-right: 1rem;
  color: var(--text);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

.map-wrap {
  margin-top: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  aspect-ratio: 16 / 10;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: var(--space-3) 0 0;
}

/* ——— Privacy prose ——— */
.prose {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  max-width: 46rem;
}

@media (min-width: 640px) {
  .prose {
    padding: var(--space-5);
  }
}

.prose h2 {
  margin: 1.75rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-deep);
  letter-spacing: -0.01em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}


/* ——— Footer ——— */
.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-5) 0 var(--space-4);
  margin-top: auto;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--surface);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.footer-tagline {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--mist);
}

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: var(--space-4) auto 0;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .photo-card,
  .photo-card-media img,
  .btn {
    transition: none;
  }
}

.section-tight-top {
  padding-top: 0;
}
