/* ============================================
   PORT ORCHARD PUBLIC MARKET — STYLES
   Bold editorial · Forest green + off-white
   ============================================ */

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

:root {
  --green-900: #0B2215;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52A07A;
  --green-400: #74C69D;
  --cream-50: #FAF8F5;
  --cream-100: #F5F0E8;
  --cream-200: #EDE6D8;
  --warm-400: #D4A373;
  --warm-500: #C08B5C;
  --warm-600: #A06B3E;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --text-light: #F5F0E8;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green-800);
  color: var(--cream-50);
  padding: 8px 16px;
  z-index: 200;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 0;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--green-800);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--green-700);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--cream-50);
  border: 2px solid var(--green-800);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--green-800);
  color: var(--cream-50);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--green-800);
  color: var(--warm-400);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-primary {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-800);
}

.logo-secondary {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width 0.3s var(--ease-out);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--green-700);
}

.nav-cta {
  background: var(--green-800);
  color: var(--cream-50) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.25);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 110;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--cream-50);
  overflow: hidden;
  padding-top: 72px;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--green-800);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 48px 0;
}

.hero-content {
  padding-right: 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--green-800);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--green-600);
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-200);
  flex-shrink: 0;
}

/* Hero visuals */
.hero-visual {
  position: relative;
  height: 700px;
}

.hero-image-hero {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
}

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

.hero-image-float {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 52%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--cream-50);
}

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

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
  background: var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-content {
  padding: 8px 0;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
}

.value-item svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* ---------- VENDORS ---------- */
.vendors {
  padding: 120px 0;
  background: var(--green-800);
  color: var(--cream-50);
}

.vendors .section-eyebrow {
  color: var(--warm-400);
}

.vendors .section-heading {
  color: var(--cream-50);
  max-width: 720px;
}

.section-header {
  margin-bottom: 64px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.vendor-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease-out);
}

.vendor-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.vendor-card-image {
  height: 220px;
  overflow: hidden;
}

.vendor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.vendor-card:hover .vendor-card-image img {
  transform: scale(1.05);
}

.vendor-card-content {
  padding: 28px;
}

.vendor-card-content h3 {
  font-size: 1.375rem;
  color: var(--cream-50);
  margin-bottom: 10px;
}

.vendor-card-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
}

.vendor-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vendor-cta p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream-200);
}

/* ---------- VISIT ---------- */
.visit {
  padding: 120px 0;
  background: var(--cream-100);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-content {
  padding: 8px 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}

.visit-detail {
  display: flex;
  gap: 20px;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--green-800);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cream-50);
}

.visit-detail h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 4px;
}

.visit-detail p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--green-700);
  font-weight: 500;
  transition: color 0.2s;
}

.visit-detail a:hover {
  color: var(--green-500);
}

.visit-note {
  font-size: 0.8125rem !important;
  font-style: italic;
  color: var(--text-muted) !important;
}

.visit-tips {
  background: var(--green-800);
  border-radius: 16px;
  padding: 28px 32px;
  color: var(--cream-50);
}

.visit-tips h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: 16px;
}

.visit-tips ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visit-tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.5;
}

.visit-tips li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--warm-400);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Visit visual */
.visit-visual {
  position: relative;
  padding-top: 48px;
}

.visit-image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

.visit-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 13/16;
}

.visit-image-accent {
  position: absolute;
  bottom: 0;
  right: -24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--cream-100);
}

.visit-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  padding: 120px 0;
  background: var(--cream-50);
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  color: var(--green-400);
  opacity: 0.4;
  margin-bottom: 24px;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--green-800);
  margin-bottom: 32px;
}

.testimonial footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-source {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: normal;
}

.testimonial-source::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green-400);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 0;
  background: var(--cream-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding: 8px 0;
}

.contact-info p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.contact-item svg {
  color: var(--green-600);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--green-700);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--green-500);
}

/* Form */
.contact-form-wrap {
  background: var(--cream-50);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-200);
  border-radius: 10px;
  background: var(--cream-50);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(82, 160, 122, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(82, 160, 122, 0.1);
  border: 1px solid rgba(82, 160, 122, 0.3);
  border-radius: 10px;
  color: var(--green-800);
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--cream-50);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-400);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.65);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--cream-50);
}

.footer-col li {
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.4);
}

/* ---------- SCROLL REVEAL (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-visual {
    height: 480px;
    order: 2;
  }

  .hero-accent {
    width: 35%;
    opacity: 0.6;
  }

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

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

  .nav-list {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream-50);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    z-index: 105;
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-list a {
    font-size: 1.125rem;
  }

  .nav-cta {
    margin-top: 8px;
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 104;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .hero-accent {
    display: none;
  }

  .hero-visual {
    height: 360px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.375rem;
  }

  .about,
  .vendors,
  .visit,
  .testimonial,
  .contact {
    padding: 80px 0;
  }

  .visit-image-accent {
    right: 0;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .vendor-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .visit-image-accent {
    display: none;
  }
}
