:root {
  --ink: #1f2933;
  --muted: #5f6f7f;
  --line: #d9e2ec;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --soft-alt: #eef5f1;
  --accent: #1f6feb;
  --accent-dark: #12427f;
  --green: #16845b;
  --gold: #b7791f;
  --coral: #d94f45;
  --violet: #6f42c1;
  --cyan: #1282a2;
  --navy: #121826;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: var(--paper);
  border: 2px solid var(--accent);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.nav-wrap,
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  min-height: 44px;
  justify-content: center;
  padding-left: 54px;
}

.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border-radius: 10px;
  background: url("brand-icon.svg") center / contain no-repeat;
  box-shadow: 0 10px 24px rgba(31, 111, 235, 0.22);
}

.brand strong {
  font-size: 1.35rem;
  letter-spacing: 0;
  color: var(--accent-dark);
}

.brand span {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus {
  background: #e9f2ff;
  color: var(--accent-dark);
  text-decoration: none;
}

.hero {
  background:
    linear-gradient(90deg, rgba(12, 18, 32, 0.84), rgba(12, 18, 32, 0.52), rgba(255, 255, 255, 0.1)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1800&q=82") center / cover;
  border-bottom: 1px solid var(--line);
}

.hero .container {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 5.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  font-weight: 700;
}

.hero h1,
.hero .lead {
  color: #ffffff;
}

.hero .eyebrow {
  color: #7dd3fc;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  margin-top: 1rem;
  color: #334e68;
  font-size: 1.12rem;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(233, 242, 255, 0.92), rgba(246, 250, 255, 0.96)),
    url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1600&q=78") center / cover fixed;
}

.section.soft-green {
  background: #eef9f3;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(18, 24, 38, 0.06);
  overflow: hidden;
}

.media-card {
  padding: 0;
}

.card-image {
  min-height: 170px;
  background: #d9e2ec center / cover;
}

.card-body {
  padding: 1.25rem;
}

.card h3 {
  margin-bottom: 0.55rem;
}

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

.meta {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
}

.list li + li {
  margin-top: 0.35rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.note {
  border-left: 4px solid var(--coral);
  background: #fff7ed;
  padding: 1rem 1.1rem;
  color: #334e68;
}

.photo-panel {
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #d9e2ec center / cover;
  box-shadow: 0 18px 40px rgba(18, 24, 38, 0.12);
}

.visual-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(18, 24, 38, 0.86), rgba(31, 111, 235, 0.66), rgba(217, 79, 69, 0.55)),
    url("https://images.unsplash.com/photo-1560253023-3ec5d502959f?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.visual-band .section-heading p,
.visual-band p,
.visual-band li {
  color: #e9f2ff;
}

.visual-band .card {
  background: rgba(255, 255, 255, 0.94);
}

.visual-band .card p,
.visual-band .card li {
  color: var(--muted);
}

.image-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.strip-photo {
  min-height: 230px;
  border-radius: 8px;
  background: #d9e2ec center / cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 30px rgba(18, 24, 38, 0.18);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

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

.location-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.location-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.92rem;
}

.page-header {
  background:
    linear-gradient(90deg, rgba(18, 24, 38, 0.84), rgba(18, 24, 38, 0.48)),
    url("https://images.unsplash.com/photo-1511882150382-421056c89033?auto=format&fit=crop&w=1700&q=80") center / cover;
  border-bottom: 1px solid var(--line);
  padding: 3.5rem 0;
  color: #ffffff;
}

.page-header p {
  max-width: 760px;
  margin-top: 0.9rem;
  color: #e9f2ff;
  font-size: 1.08rem;
}

.page-header .eyebrow {
  color: #7dd3fc;
}

.page-header.stores-bg {
  background:
    linear-gradient(90deg, rgba(18, 24, 38, 0.84), rgba(18, 24, 38, 0.42)),
    url("https://images.unsplash.com/photo-1593305841991-05c297ba4575?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.page-header.mobile-bg {
  background:
    linear-gradient(90deg, rgba(18, 24, 38, 0.84), rgba(18, 24, 38, 0.44)),
    url("https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.page-header.guide-bg {
  background:
    linear-gradient(90deg, rgba(18, 24, 38, 0.84), rgba(18, 24, 38, 0.46)),
    url("https://images.unsplash.com/photo-1493711662062-fa541adb3fc8?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.page-header.city-bg {
  background:
    linear-gradient(90deg, rgba(18, 24, 38, 0.82), rgba(18, 24, 38, 0.48)),
    url("https://images.unsplash.com/photo-1580060839134-75a5edca2e99?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.article {
  max-width: 860px;
}

.article h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.article h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.45rem;
}

.article p + p {
  margin-top: 0.9rem;
}

.article ul {
  color: var(--muted);
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq-item p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 24, 38, 0.98), rgba(18, 66, 127, 0.96)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1600&q=76") center / cover;
  color: #d9e2ec;
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: #f5f8fb;
}

.site-footer p,
.site-footer li {
  color: #bcccdc;
}

.footer-links {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

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

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

  .image-strip {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-nav a {
    padding: 0.35rem 0.5rem;
    font-size: 0.9rem;
  }

  .hero .container {
    min-height: 420px;
    padding: 3.25rem 0 4.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .grid.two,
  .grid.three,
  .location-list,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    height: 340px;
  }
}
