:root {
  /* Palette matched to the welcome sign */
  --navy: #1d2b57;           /* deep navy — dominant: titles, buttons, footer */
  --navy-deep: #131c3b;      /* darkest navy — hovers, footer */
  --navy-mid: #2a3d75;       /* navy tint */
  --purple: #9b4dca;         /* lilac band — accent only */
  --purple-deep: #7a34a8;    /* deeper lilac */
  --lilac-soft: #b9c5e6;     /* light navy-lilac text on dark */
  --teal: #1f7a8c;           /* castle teal — small accent */
  --cream: #faf7ef;          /* sign board background */
  --surface: #ffffff;
  --tint: #eef1f8;           /* soft navy tint for alt sections */
  --ink: #232733;
  --muted: #626a80;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(29, 43, 87, 0.14);
  --shadow-sm: 0 10px 30px rgba(29, 43, 87, 0.10);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-text strong { font-family: "Poppins", sans-serif; line-height: 1.12; letter-spacing: -0.01em; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
img { max-width: 100%; display: block; }
a { color: var(--navy); }

/* Buttons — navy primary, purple accent, all with correct text contrast */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; }
/* Primary = dark navy, white text */
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); color: #fff; }
/* Accent = white button with dark navy text (sits on the navy hero) */
.btn-accent { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: #eef1f8; color: var(--navy-deep); }
/* Ghost = outline on the navy hero, white text */
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.24); color: #fff; }
/* Nav CTA = dark navy, white text */
.btn-nav { background: var(--navy); color: #fff; padding: 0.6rem 1.3rem; }
.btn-nav:hover { background: var(--navy-deep); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 239, 0.8);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand { text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.3rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; }

.main-nav ul { list-style: none; display: flex; align-items: center; gap: 2rem; }
.main-nav a:not(.btn) { text-decoration: none; color: var(--navy); font-weight: 600; }
.main-nav a:not(.btn):hover { color: var(--purple); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero — deep navy with a subtle purple glow */
.hero {
  position: relative;
  color: #fff;
  padding: 6rem 0 6.5rem;
  background:
    radial-gradient(90% 120% at 90% -10%, rgba(155,77,202,0.40), transparent 55%),
    linear-gradient(140deg, rgba(19,28,59,0.94), rgba(29,43,87,0.92) 68%, rgba(42,61,117,0.90)),
    url("images/parking.png");
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  border-radius: 0 0 40px 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.badge {
  display: inline-block;
  background: rgba(155,77,202,0.28);
  color: #e6d5f5;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.3rem;
}
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; margin-bottom: 1.2rem; }
.hero h1 .accent { color: #c58ce6; }
.hero .lead { font-size: 1.18rem; max-width: 46ch; color: rgba(255,255,255,0.9); }
.hero-actions { margin-top: 2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-meta { margin-top: 1.8rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
}
.hero-card h3 { margin-bottom: 1.2rem; color: #fff; font-size: 1.15rem; }
.quick-contact { list-style: none; margin-bottom: 1.5rem; display: grid; gap: 1rem; }
.quick-contact li { display: flex; flex-direction: column; }
.quick-contact span {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #c58ce6; font-weight: 800; margin-bottom: 0.15rem;
}
.quick-contact a { color: #fff; }
.quick-contact a, .quick-contact li { font-weight: 700; word-break: break-word; }

/* Sections */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--tint); }
.section-head { text-align: center; margin-bottom: 3rem; max-width: 640px; margin-inline: auto; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.76rem; font-weight: 800; color: var(--purple);
  margin-bottom: 0.7rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--navy); }
.section-sub { color: var(--muted); margin-top: 0.8rem; font-size: 1.08rem; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}
.stat {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.stat strong { display: block; font-family: "Poppins", sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--navy); }
.stat span { color: var(--muted); font-size: 0.95rem; }

/* About cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.about-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--purple);
}
.about-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 0.6rem; }
.about-card p { color: var(--muted); }

/* Facilities */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.6rem;
}
.facility-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.facility-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.facility-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--tint);
}
.facility-body { padding: 1.6rem 2rem 2rem; }
.facility-card h3 { margin-bottom: 0.5rem; color: var(--navy); font-size: 1.2rem; }
.facility-card p { color: var(--muted); }

/* Hire */
.hire-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; }
.hire-text h2 { margin-bottom: 1.1rem; color: var(--navy); }
.hire-text > p { color: var(--muted); margin-bottom: 1.4rem; font-size: 1.05rem; }
.hire-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.tick-list { list-style: none; margin-bottom: 1.9rem; display: grid; gap: 0.8rem; }
.tick-list li { padding-left: 2.1rem; position: relative; }
.tick-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.15rem;
  color: #fff; background: var(--purple);
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 0.8rem;
}
.hire-hours {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.hire-hours h3 { color: #fff; margin-bottom: 0.4rem; font-size: 1.3rem; }
.hours-note { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.3rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 0.7rem 0; }
.hours-table tr + tr th, .hours-table tr + tr td { box-shadow: 0 -1px 0 rgba(255,255,255,0.1); }
.hours-table th { font-weight: 700; }
.hours-table td { color: #c58ce6; text-align: right; font-weight: 700; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; }
.info-block { margin-bottom: 1.8rem; }
.info-block h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.3rem; }
.info-block p { color: var(--muted); }

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--navy); }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 0; border-radius: 12px;
  font: inherit; background: var(--tint);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; background: #fff;
  box-shadow: 0 0 0 3px rgba(29,43,87,0.25);
}
.field .error { color: #c0392b; font-size: 0.82rem; display: block; margin-top: 0.3rem; }
.field.invalid input, .field.invalid textarea { box-shadow: 0 0 0 3px rgba(192,57,43,0.25); }
.form-status { margin-top: 0.9rem; font-weight: 700; color: var(--navy); }

/* Reviews */
.reviews-source {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.9rem; color: var(--muted); font-size: 0.98rem;
}
.google-g { flex-shrink: 0; }
.reviews-source strong { color: var(--navy); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-stars { color: #fbbc05; font-size: 1.15rem; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.review-text { color: var(--ink); margin-bottom: 1.3rem; flex-grow: 1; }
.review-meta { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--navy);
}
.review-card:nth-child(1) .review-avatar { background: #4285F4; }
.review-card:nth-child(2) .review-avatar { background: #34A853; }
.review-card:nth-child(3) .review-avatar { background: #9b4dca; }
.review-person { display: flex; flex-direction: column; }
.review-name { font-weight: 800; color: var(--navy); font-family: "Poppins", sans-serif; }
.review-detail { color: var(--muted); font-size: 0.85rem; }

/* Partners */
.partners { margin-top: 3rem; text-align: center; }
.partners-title { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; font-weight: 800; color: var(--muted); margin-bottom: 1.3rem; }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }
.chip {
  background: var(--surface);
  padding: 0.6rem 1.3rem; border-radius: 999px;
  font-weight: 700; color: var(--navy); font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

/* Footer — deep navy */
.site-footer { background: var(--navy-deep); color: #c8d0e6; border-radius: 40px 40px 0 0; margin-top: 1rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; padding: 3.2rem 0 2rem; flex-wrap: wrap; }
.footer-wordmark strong { color: #fff; font-size: 1.3rem; }
.footer-wordmark small { color: #c58ce6; }
.footer-council-logo { height: 56px; width: auto; display: block; }
.footer-brand .council { color: #9aa4c4; font-size: 0.85rem; margin-top: 0.8rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { color: #c8d0e6; text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 1.4rem 0 2rem; font-size: 0.85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; box-shadow: 0 -1px 0 rgba(255,255,255,0.12); padding-top: 1.4rem; }
.managed-mark { color: #9aa4c4; }
.managed-mark strong { color: #fff; letter-spacing: 0.1em; }

/* Availability calendar */
.calendar-layout {
  display: flex;
  gap: 1.6rem;
  align-items: stretch;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}
.calendar {
  flex: 1 1 640px;
  max-width: 640px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

/* Slide-out booking panel */
.book-panel {
  flex: 0 0 0;
  width: 0;
  min-width: 0;
  max-width: 380px;
  opacity: 0;
  overflow: hidden;
  align-self: flex-start;      /* don't stretch the calendar's height */
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: none;
  transition: flex-basis 0.35s ease, width 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
  padding: 0;
}
.book-panel.open {
  position: relative;
  flex: 0 0 380px;
  width: 380px;
  opacity: 1;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.book-close {
  position: absolute; top: 0.9rem; right: 1rem;
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: var(--tint); color: var(--navy);
  font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.book-close:hover { background: var(--navy); color: #fff; }
.book-eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; font-weight: 800; color: var(--purple); }
.book-date { color: var(--navy); font-size: 1.35rem; margin: 0.2rem 0 0.7rem; }
.book-rates { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.2rem; }
.book-form { display: grid; gap: 0.9rem; }
.bk-field { display: flex; flex-direction: column; gap: 0.3rem; }
.bk-field label { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.bk-field input, .bk-field textarea {
  padding: 0.65rem 0.85rem; border: 0; border-radius: 10px;
  background: var(--tint); font: inherit;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
.bk-field input:focus, .bk-field textarea:focus {
  outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(29,43,87,0.2);
}
.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.bk-estimate { background: var(--tint); border-radius: 12px; padding: 0.9rem 1rem; }
.bk-line { display: flex; justify-content: space-between; padding: 0.25rem 0; color: var(--muted); font-size: 0.92rem; }
.bk-line strong { color: var(--navy); }
.bk-total { box-shadow: 0 -1px 0 rgba(29,43,87,0.1); margin-top: 0.3rem; padding-top: 0.5rem; }
.bk-total strong { font-size: 1.05rem; }
.book-status { font-weight: 700; color: #1c7a44; }
.book-status.error { color: #c0392b; }

/* Booking step 2 — how to pay */
.book-step2 { display: grid; gap: 1.1rem; }
.book-step2[hidden] { display: none; }
.book-form[hidden] { display: none; }
.step2-header { display: flex; align-items: center; gap: 0.9rem; }
.step2-tick {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: #eafaf0; color: #1c7a44;
  display: grid; place-items: center; font-size: 1.4rem; font-weight: 800;
}
.step2-heading { color: var(--navy); font-size: 1.25rem; line-height: 1.1; }
.step2-lead { color: var(--muted); font-size: 0.9rem; }
.pay-heading { color: var(--navy); font-size: 1.05rem; margin-bottom: -0.3rem; }
.pay-summary { background: var(--tint); border-radius: 12px; padding: 0.9rem 1.1rem; }
.pay-row { display: flex; justify-content: space-between; padding: 0.28rem 0; color: var(--muted); font-size: 0.95rem; }
.pay-row strong { color: var(--navy); }
.pay-row.pay-sub { font-size: 0.8rem; padding-top: 0; }
.pay-ref-row { box-shadow: 0 -1px 0 rgba(29,43,87,0.1); margin-top: 0.3rem; padding-top: 0.55rem; }
.pay-ref { font-family: "Poppins", sans-serif; font-weight: 800; color: var(--purple); letter-spacing: 0.02em; }
.pay-method h6 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.pay-bank { background: #fff; border-radius: 12px; padding: 0.4rem 1rem; margin: 0; }
.bank-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.5rem 0; }
.bank-row + .bank-row { box-shadow: 0 -1px 0 rgba(29,43,87,0.08); }
.bank-row dt { color: var(--muted); font-size: 0.85rem; margin: 0; }
.bank-row dd { color: var(--navy); font-weight: 700; margin: 0; text-align: right; }
.pay-note { color: var(--muted); font-size: 0.82rem; margin-top: 0.5rem; }

.cal-day.available-click { cursor: pointer; transition: transform 0.1s ease, box-shadow 0.15s ease; }
.cal-day.available-click:hover { transform: scale(1.06); box-shadow: 0 4px 12px rgba(28,122,68,0.25); }
.cal-day.selected { box-shadow: 0 0 0 2px #1c7a44 inset; }

@media (max-width: 900px) {
  .calendar-layout { flex-direction: column; align-items: stretch; }
  .calendar { max-width: none; }
  .book-panel { max-width: none; width: auto; }
  .book-panel.open { width: auto; flex: none; }
}
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.cal-title { color: var(--navy); font-size: 1.25rem; }
.cal-nav {
  width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: var(--tint); color: var(--navy);
  font-size: 1.3rem; cursor: pointer; line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
.cal-nav:hover { background: var(--navy); color: #fff; }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem; margin-bottom: 0.4rem;
}
.cal-weekdays span {
  text-align: center; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted);
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.cal-day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  background: #eafaf0;
  color: #1c7a44;
  font-size: 0.95rem;
}
.cal-day.empty { background: transparent; }
.cal-day.past { background: var(--tint); color: #a9adba; }
.cal-day.booked { background: #fdeaea; color: #c0392b; }
.cal-day.today { box-shadow: 0 0 0 2px var(--navy) inset; }
.cal-day .cal-note {
  font-size: 0.6rem; font-weight: 700; line-height: 1.1;
  margin-top: 2px; max-width: 100%; padding: 0 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cal-legend { display: flex; gap: 1.4rem; justify-content: center; margin-top: 1.4rem; }
.legend-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 700; color: var(--muted); }
.dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.dot.available { background: #6fcf97; }
.dot.booked { background: #eb5757; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(29,43,87,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-deep); }

/* Responsive */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    box-shadow: var(--shadow-sm);
  }
  .main-nav.open { max-height: 460px; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.25rem 1.25rem; }
  .main-nav li { box-shadow: 0 1px 0 rgba(29,43,87,0.08); }
  .main-nav li:last-child { box-shadow: none; margin-top: 0.7rem; }
  .main-nav a { display: block; padding: 0.9rem 0; }
  .btn-nav { justify-content: center; }

  .hero-inner, .hire-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 4rem; border-radius: 0 0 28px 28px; }
  .footer-inner { flex-direction: column; }
}
