:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #17212b;
  --muted: #5d6a73;
  --navy: #102332;
  --glass: #8fc8d8;
  --glass-deep: #397c8d;
  --gold: #c7a96b;
  --line: #dfe7e8;
  --shadow: 0 18px 45px rgba(16, 35, 50, 0.12);
  --header-height: 74px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}

.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(16, 35, 50, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.header-brand img {
  width: min(42vw, 172px);
  height: auto;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-open .site-nav {
  display: grid;
}

.site-nav a {
  padding: 0.8rem 0.65rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #eef7f9;
  outline: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: var(--navy);
}

.header-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.55rem;
  width: 100%;
  margin-top: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn-primary {
  background: var(--glass-deep);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #286d7f;
}

.btn-ghost {
  border-color: rgba(16, 35, 50, 0.18);
  background: #fff;
  color: var(--navy);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--glass-deep);
  color: var(--glass-deep);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-light:hover,
.btn-light:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8rem 1rem 3.5rem;
  color: #fff;
}

.hero-compact {
  min-height: 58svh;
}

.area-hero {
  min-height: 440px;
  padding-top: 6rem;
  padding-bottom: 2.25rem;
}

.area-hero h1 {
  max-width: 16ch;
  font-size: 2.55rem;
}

.area-hero .hero-content > p:not(.eyebrow) {
  max-width: 700px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 27, 38, 0.88), rgba(13, 27, 38, 0.52) 55%, rgba(13, 27, 38, 0.2)),
    linear-gradient(0deg, rgba(13, 27, 38, 0.45), rgba(13, 27, 38, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.hero-actions .btn {
  min-width: 190px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.trust-bar .dot {
  color: var(--gold);
}

.proof-strip {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.proof-strip div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--surface);
}

.proof-strip strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.25rem 0;
}

.surface {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - 1160px) / 2));
  padding-left: max(1rem, calc((100% - 1160px) / 2));
  background: #f2fafb;
}

.section-header {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.section-header p:not(.eyebrow) {
  color: var(--muted);
}

.card-grid,
.area-grid,
.area-info-grid,
.area-lead-section,
.area-proof-section,
.feature-list,
.before-after-grid,
.prep-grid,
.process-list,
.quote-section,
.split-section {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.area-quote-card,
blockquote,
.before-after-card,
.prep-grid article,
.process-list li,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(16, 35, 50, 0.06);
}

.service-card {
  overflow: hidden;
  padding: 0 0 1.2rem;
}

.service-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef7f9;
}

.service-card-media picture,
.image-panel picture {
  display: block;
  height: 100%;
}

.service-card-media img,
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card .text-link {
  margin-right: 1.15rem;
  margin-left: 1.15rem;
}

.service-card h3 {
  margin-top: 1rem;
}

.service-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 0.3rem;
  color: var(--glass-deep);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  margin-left: 0.4rem;
}

.split-section {
  align-items: center;
}

.image-panel {
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.logo-panel {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.logo-panel img {
  width: 180px;
  height: 180px;
  min-height: 0;
  object-fit: contain;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  content: "";
  width: 0.7rem;
  height: 1rem;
  border-right: 2px solid var(--glass-deep);
  border-bottom: 2px solid var(--glass-deep);
  transform: rotate(40deg);
}

.before-after-card {
  padding: 1rem;
}

.compare {
  display: grid;
  gap: 0.75rem;
  align-items: start;
}

.before-panel {
  padding: 0 0 0 0.85rem;
  border-left: 3px solid var(--gold);
  background: transparent;
  color: var(--navy);
}

.before-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

figure {
  margin: 0;
}

.compare figure {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.compare figure picture {
  display: block;
  aspect-ratio: 4 / 3;
}

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

figcaption {
  padding: 0.85rem 0.95rem 1rem;
  color: var(--muted);
  font-weight: 700;
}

.remodeler-band {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100% - 1160px) / 2));
  padding-left: max(1rem, calc((100% - 1160px) / 2));
  background: var(--navy);
  color: #fff;
}

.remodeler-band .section-header p:not(.eyebrow),
.remodeler-band .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.remodeler-band .btn {
  align-self: center;
  justify-self: start;
}

.process-list {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  padding: 1rem;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0.7rem;
  border-radius: var(--radius);
  background: #eef7f9;
  color: var(--glass-deep);
  font-weight: 900;
}

.process-list h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.22;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.process-section .section-header {
  max-width: 700px;
}

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

.prep-grid article {
  padding: 1.2rem;
}

.prep-grid h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.prep-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.inline-prep {
  margin-top: 1rem;
}

.feature-list {
  grid-template-columns: 1fr;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(57, 124, 141, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.feature-list span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
}

.area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-grid a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
}

.area-grid a:hover,
.area-grid a:focus-visible {
  border-color: var(--glass-deep);
  outline: none;
}

.area-lead-section,
.area-proof-section,
.area-info-grid {
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.area-lead-copy {
  max-width: 720px;
}

.area-facts {
  display: grid;
  gap: 1px;
  margin: 0 0 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.area-facts div {
  padding: 0.85rem;
  background: var(--surface);
}

.area-facts dt {
  color: var(--glass-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.area-facts dd {
  margin: 0.15rem 0 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.3;
}

.area-service-panel {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbfc;
}

.area-service-panel h3 {
  margin-bottom: 0.75rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-chip-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
}

.area-quote-card {
  padding: 1.15rem;
}

.area-quote-card h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.area-quote-card p:not(.eyebrow) {
  color: var(--muted);
}

.area-quote-card .cta-stack {
  display: grid;
  margin: 1rem 0;
}

.mini-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.mini-list li::before {
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--glass-deep);
  content: "";
}

.compact-process {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compact-process li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.compact-process span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: #eef7f9;
  color: var(--glass-deep);
  font-weight: 900;
}

.compact-process h3 {
  margin-bottom: 0.25rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.compact-process p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.compact-check-list {
  margin-top: 0;
}

.quote-copy,
.area-form-copy {
  align-self: stretch;
}

.quote-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quote-details div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.quote-details h3 {
  margin-bottom: 0.35rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.quote-details p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-details a {
  color: var(--glass-deep);
  font-weight: 800;
}

.nearby-section .section-header {
  margin-bottom: 1rem;
}

.nearby-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.nearby-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  padding: 1.3rem;
}

blockquote p {
  color: var(--ink);
}

blockquote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--navy);
  font-weight: 900;
}

details p {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.quote-section {
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.form-hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  color: var(--navy);
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #cfdcde;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input[type="file"] {
  min-height: auto;
  padding: 0.55rem;
  color: var(--muted);
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 0.75rem;
  padding: 0.55rem 0.85rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
  background: var(--glass-deep);
}

.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

textarea {
  resize: vertical;
}

button:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: wait;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--glass-deep);
  outline: 3px solid rgba(143, 200, 216, 0.35);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--glass-deep);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.contact-list a,
.contact-list span {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 800;
}

.thank-you-card {
  align-content: start;
}

.thank-you-card h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.25rem;
}

.thank-you-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.thank-you-card a:not(.btn) {
  color: var(--glass-deep);
  font-weight: 800;
}

.gallery-strip {
  display: grid;
  gap: 1rem;
}

.gallery-strip picture {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem max(1rem, calc((100% - 1160px) / 2));
  background: #fff;
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 680px;
  color: var(--muted);
}

.site-footer {
  padding: 3rem max(1rem, calc((100% - 1160px) / 2)) 1rem;
  background: var(--navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid h2 {
  margin-bottom: 0.8rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid p,
.footer-grid .small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-bottom {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .header-actions .btn {
    min-height: 42px;
    padding-right: 0.7rem;
    padding-left: 0.7rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 680px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .service-grid,
  .testimonial-grid,
  .feature-list,
  .area-grid,
  .area-facts,
  .area-info-grid,
  .area-proof-section,
  .gallery-strip,
  .proof-strip,
  .prep-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form {
    padding: 1.35rem;
  }
}

@media (min-width: 920px) {
  .hero {
    min-height: 74svh;
    padding-bottom: 5rem;
  }

  .hero-compact {
    min-height: 54svh;
  }

  .area-hero {
    min-height: 430px;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .area-hero h1 {
    font-size: 3.7rem;
  }

  h1 {
    font-size: 4.4rem;
  }

  .split-section,
  .quote-section,
  .final-cta {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  }

  .area-lead-section {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  }

  .area-proof-section {
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  }

  .area-info-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  }

  .area-info-grid .compact-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-card {
    min-height: 245px;
  }

  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: max(1px, calc((100% - 1160px) / 2));
    padding-left: max(1px, calc((100% - 1160px) / 2));
  }

  .prep-grid,
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .area-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .nearby-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  }

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

@media (min-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.55rem 0.6rem;
    font-size: 0.9rem;
  }

  .header-actions {
    grid-column: auto;
    display: flex;
    width: auto;
    margin-top: 0;
  }

  .header-actions .btn {
    min-width: 120px;
  }
}
