/* ============================================================
   FLOWERS IN A VASE — Florist | Macedon Ranges VIC
   Garden-fresh / Romantic / Abundant
   Palette: warm parchment + sage green + dusty rose
   Typography: Playfair Display (headings) + Source Sans 3 (body)
   ============================================================ */

:root {
  --bg: #f9f6f0;
  --bg-alt: #f0ece4;
  --bg-card: #ffffff;
  --text: #3a3528;
  --text-muted: #7a7568;
  --accent: #6b8f3a;
  --accent-soft: #e6ede0;
  --accent-dark: #4e6b2a;
  --rose: #c4717a;
  --rose-soft: #f2e0e2;
  --rose-dark: #a85d64;
  --border: #e5dfd4;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1040px;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* Subtle paper texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(107,143,58,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(196,113,122,0.02) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text); }
h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

::selection { background: var(--accent-soft); color: var(--accent-dark); }

/* Focus */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(249,246,240,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 28px; height: 64px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.logo span {
  color: var(--text-muted);
  font-size: 0.6rem;
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-menu { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 450;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }
.nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  font-size: 0.75rem !important;
  transition: background 0.25s;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--text);
  transition: 0.3s; border-radius: 1px;
}
.mobile-nav {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999;
  padding: 32px 28px;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a {
  color: var(--text); text-decoration: none;
  font-size: 1.1rem; letter-spacing: 0.04em;
  font-family: var(--font-body); font-weight: 400;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  text-align: center; padding: 12px 24px;
  background: var(--accent); border-bottom: 1px solid var(--accent-dark);
}
.announcement-bar p {
  color: #fff; font-size: 0.78rem; letter-spacing: 0.07em;
  font-weight: 500; text-transform: uppercase;
}

/* ---- Hero ---- */
.hero {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 100px 28px 80px; text-align: center;
  background:
    radial-gradient(ellipse 65% 55% at 50% 35%, rgba(107,143,58,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 25% 70%, rgba(196,113,122,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 75% 60%, rgba(107,143,58,0.05) 0%, transparent 60%);
}
.hero-content {
  max-width: 700px; position: relative; z-index: 1;
}
.hero-content h1 {
  color: var(--text); margin-bottom: 12px;
}
.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 350;
  letter-spacing: 0.02em;
}
.hero-content .location {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-divider {
  width: 60px; height: 2px;
  background: var(--rose);
  margin: 28px auto;
  opacity: 0.6;
}
.hero-content .hero-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 460px; margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 13px 32px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  font-weight: 550;
  transition: all 0.3s;
  cursor: pointer; border: none;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); }
.btn-rose {
  background: var(--rose); color: #fff;
}
.btn-rose:hover { background: var(--rose-dark); }

/* ---- Hero Botanical Strip ---- */
.botanical-strip {
  position: relative; overflow: hidden; width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.botanical-strip::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 8vw; z-index: 2; pointer-events: none;
  background: linear-gradient(to right, var(--bg-alt) 20%, transparent);
}
.botanical-strip::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 8vw; z-index: 2; pointer-events: none;
  background: linear-gradient(to left, var(--bg-alt) 20%, transparent);
}
.botanical-strip-inner { display: flex; }
.botanical-strip-inner div {
  flex-shrink: 0; width: 20vw; height: 280px; overflow: hidden;
}
.botanical-strip-inner div img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s ease;
}
.botanical-strip-inner div:hover img { transform: scale(1.06); }

/* ---- Sections ---- */
.section { padding: 90px 28px; position: relative; z-index: 1; }
.section.bg-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 0.95rem; max-width: 480px; margin: 0 auto; font-weight: 350; }

/* ---- Seasonal Wheel ---- */
.seasonal-wheel-section {
  padding: 80px 28px 100px;
  background: var(--bg);
  position: relative; z-index: 1;
  overflow: hidden;
}
.seasonal-wheel-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 400px at 50% 50%, rgba(107,143,58,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.seasonal-wheel-container {
  max-width: var(--max-width); margin: 0 auto;
  position: relative; z-index: 1;
}
.seasonal-wheel-wrapper {
  position: relative;
  width: 520px; height: 520px;
  margin: 0 auto 40px;
  --wheel-radius: 200px;
}
.seasonal-wheel {
  position: absolute; inset: 0;
}

/* Subtle ring behind the wheel */
.seasonal-wheel::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed var(--border);
  opacity: 0.5;
}

.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 10;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wheel-center:hover {
  border-color: var(--rose);
  box-shadow: 0 0 0 8px var(--rose-soft);
}
.wheel-center-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 600;
}
.wheel-center-month {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-top: 2px;
}

/* Flower items positioned around the wheel */
.wheel-item {
  position: absolute;
  top: 50%; left: 50%;
  transform: rotate(var(--angle)) translateY(calc(var(--wheel-radius) * -1));
  cursor: pointer;
  z-index: 5;
}
.wheel-petal {
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.25s ease;
  transform: rotate(calc(var(--angle) * -1));
}
.wheel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}
.wheel-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 450;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.wheel-item:hover .wheel-dot {
  background: var(--rose);
  transform: scale(1.8);
}
.wheel-item:hover .wheel-name {
  color: var(--rose);
  font-weight: 600;
}

/* Tooltip area below the wheel */
.wheel-tooltip {
  text-align: center;
  min-height: 52px;
  max-width: 380px;
  margin: 0 auto;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.wheel-tooltip.active {
  opacity: 1;
  transform: translateY(0);
}
.wheel-tooltip-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.wheel-tooltip-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(107,143,58,0.08);
  transform: translateY(-3px);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
  transition: background 0.3s;
}
.service-card:nth-child(2)::before { background: var(--rose); }
.service-card:nth-child(3)::before { background: var(--accent); }
.service-card:nth-child(4)::before { background: var(--rose); }
.service-card:hover::before { opacity: 0.85; }
.service-card-icon {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.service-card:nth-child(2) .service-card-icon { color: var(--rose); }
.service-card:nth-child(4) .service-card-icon { color: var(--rose); }
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.about-text .about-statement {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 20px;
  font-style: italic;
}
.about-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-text .about-established {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.about-stats {
  display: flex; flex-direction: column; gap: 20px;
}
.about-stat {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat:nth-child(2) .about-stat-number { color: var(--rose); }
.about-stat:nth-child(3) .about-stat-number { color: var(--accent); }
.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---- Delivery ---- */
.delivery-grid {
  max-width: 760px; margin: 0 auto;
}
.delivery-towns {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 28px;
}
.delivery-town {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 450;
  letter-spacing: 0.02em;
  transition: border-color 0.25s, background 0.25s;
}
.delivery-town:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.delivery-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}
.delivery-note strong {
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 840px; margin: 0 auto;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-card h3 {
  margin-bottom: 14px;
  color: var(--text);
}
.contact-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.contact-card ul {
  list-style: none;
}
.contact-card ul li {
  color: var(--text);
  font-size: 0.88rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.contact-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.contact-card ul li:nth-child(even)::before { background: var(--rose); }
.contact-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 550;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--accent-dark); text-decoration: underline; }
.contact-highlight {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: var(--rose-soft);
  color: var(--rose-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 52px 28px 32px;
  text-align: center;
}
.footer-brand {
  margin-bottom: 24px;
}
.footer-brand .logo-small {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 400px; margin: 0 auto;
}
.footer-links ul {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; list-style: none; margin-bottom: 28px;
}
.footer-links ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.72rem;
}
.footer-credit a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.footer-credit a:hover { color: var(--accent-dark); }

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Mobile Bar ---- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
  background: rgba(249,246,240,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 16px;
  justify-content: center; gap: 12px;
}
.mobile-bar .btn { flex: 1; text-align: center; padding: 12px 14px; font-size: 0.85rem; }
@media (max-width: 500px) {
  .mobile-bar { display: flex; }
}

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; max-width: 560px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-stats {
    flex-direction: row; gap: 16px;
  }
  .about-stat { flex: 1; }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .seasonal-wheel-wrapper {
    width: 400px; height: 400px;
    --wheel-radius: 155px;
  }
  .wheel-center {
    width: 110px; height: 110px;
  }
  .wheel-center-month { font-size: 1.3rem; }
  .wheel-name { font-size: 0.78rem; }
  .seasonal-wheel::before {
    width: 300px; height: 300px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: none; }
  .mobile-nav.active { display: block; }

  .hero { min-height: 55vh; padding: 80px 20px 60px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content .subtitle { font-size: 1rem; }
  .hero-content .location { font-size: 0.7rem; }
  .hero-divider { margin: 22px auto; }
  .hero-content .hero-description { font-size: 0.88rem; margin-bottom: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; text-align: center; max-width: 320px; }

  .botanical-strip-inner div { width: 55vw; height: 220px; }

  .seasonal-wheel-section { padding: 60px 16px 70px; }
  .seasonal-wheel-wrapper {
    width: 320px; height: 320px;
    --wheel-radius: 120px;
  }
  .wheel-center {
    width: 100px; height: 100px;
  }
  .wheel-center-month { font-size: 1.15rem; }
  .wheel-center-label { font-size: 0.55rem; }
  .wheel-name { font-size: 0.72rem; }
  .wheel-dot { width: 5px; height: 5px; }
  .seasonal-wheel::before {
    width: 240px; height: 240px;
  }
  .wheel-tooltip { max-width: 280px; }
  .wheel-tooltip-name { font-size: 1rem; }
  .wheel-tooltip-desc { font-size: 0.78rem; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 14px;
  }
  .about-stats { flex-direction: column; }
  .about-text .about-statement { font-size: 1.25rem; }
  .delivery-towns { gap: 8px; }
  .delivery-town { padding: 8px 18px; font-size: 0.78rem; }

  .section { padding: 56px 20px; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.8rem; }
  .footer { padding: 40px 20px 28px; }
  .footer-links ul { gap: 18px; }

  .announcement-bar { margin-top: 56px; }
  .announcement-bar p { font-size: 0.7rem; }

  .navbar { height: 56px; }
  .nav-container { height: 56px; padding: 0 20px; }
  .logo { font-size: 1rem; }
  .mobile-nav { top: 56px; }
  body { padding-bottom: 66px; }

  .contact-grid { max-width: 100%; }
  .contact-card { padding: 28px 24px; }
}
