@charset "utf-8";

.store-page {
  --store-navy: #071d72;
  --store-blue: #173dad;
  --store-mid-blue: #5273cf;
  --store-pale: #f2f5ff;
  --store-warm: #f8f5ef;
  --store-border: #d9def1;
  --store-text: #1c2540;
  --store-muted: #586178;
  overflow: hidden;
  color: var(--store-text);
  background: #fff;
}

.store-page *,
.store-page *::before,
.store-page *::after {
  box-sizing: border-box;
}

.store-page a {
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.store-page a:focus-visible {
  outline: 3px solid rgba(23, 61, 173, .35);
  outline-offset: 4px;
}

.store-shell {
  width: min(1040px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.store-hero {
  position: relative;
  margin-top: 10px;
  padding: clamp(44px, 4vw, 58px) 0;
  background: linear-gradient(120deg, #f2f5ff 0%, #f2f5ff 54%, #e6ebfb 54%, #e6ebfb 100%);
}

.store-hero::before {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(23, 61, 173, .09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.store-hero__inner {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 13fr) minmax(280px, 7fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.store-eyebrow,
.store-section-label {
  margin: 0 0 14px;
  color: var(--store-blue);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .14em;
}

.store-hero h1 {
  margin: 0;
  color: var(--store-navy);
  font-size: clamp(34px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .025em;
  white-space: nowrap;
}

.store-hero__lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3f4966;
  font-size: 16px;
  line-height: 2;
}

.store-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  margin-top: 34px;
}

.store-anchor-nav a {
  display: inline-flex;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--store-mid-blue);
  color: var(--store-navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.store-anchor-nav a::after {
  margin-left: 8px;
  content: "↓";
}

.store-anchor-nav a:hover,
.store-anchor-nav a:focus-visible {
  color: var(--store-mid-blue);
  text-decoration: none;
}

.store-hero__phone {
  display: inline-flex;
  min-height: 52px;
  gap: 11px;
  align-items: center;
  margin-top: 20px;
  padding: 12px 18px;
  background: var(--store-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.store-hero__phone svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.store-hero__phone strong {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, .35);
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .025em;
}

.store-hero__phone:hover,
.store-hero__phone:focus-visible {
  background: var(--store-blue);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.store-hero__media {
  position: relative;
  margin: 0;
}

.store-hero__media::before {
  position: absolute;
  z-index: -1;
  top: 22px;
  right: -22px;
  bottom: -22px;
  left: 22px;
  border: 1px solid rgba(23, 61, 173, .25);
  content: "";
}

.store-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dfe4f3;
}

.store-hero__media--portrait img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
}

.store-hero__media--landscape img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
}

.store-main {
  display: block;
}

.store-section {
  padding: clamp(70px, 8vw, 108px) 0;
}

.store-section--intro,
.store-section--gallery {
  padding: clamp(36px, 4vw, 54px) 0;
}

.store-section h2 {
  margin: 0;
  color: var(--store-navy);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.45;
}

.store-info-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.store-facts {
  display: grid;
  order: 2;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--store-border);
  border-bottom: 1px solid var(--store-border);
  background: #fff;
}

.store-fact {
  padding: 23px 24px;
  border-right: 1px solid var(--store-border);
}

.store-fact--hours,
.store-fact--phone,
.store-fact--address {
  grid-column: span 2;
}

.store-fact--access,
.store-fact--car {
  grid-column: span 3;
  border-top: 1px solid var(--store-border);
}

.store-fact--address,
.store-fact--car {
  border-right: 0;
}

.store-fact__label,
.store-fact__value,
.store-fact__note {
  margin: 0;
}

.store-fact__label {
  margin-bottom: 9px;
  color: var(--store-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.store-fact__value {
  color: var(--store-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.store-fact__value a {
  color: var(--store-navy);
  text-decoration: none;
}

.store-fact__value a:hover,
.store-fact__value a:focus-visible {
  color: var(--store-mid-blue);
  text-decoration: none;
}

.store-fact__value--address,
.store-fact__value--small {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.store-fact__note {
  margin-top: 5px;
  color: var(--store-muted);
  font-size: 12px;
  line-height: 1.6;
}

.store-section--gallery {
  background: var(--store-warm);
}

.store-section-heading {
  display: flex;
  gap: 56px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.store-section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.9;
}

.store-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.store-gallery__item {
  margin: 0;
  overflow: hidden;
  background: #dfe4f3;
}

.store-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .5s ease;
}

.store-gallery__item:hover img {
  transform: scale(1.025);
}

.store-gallery--natural {
  display: block;
  columns: 3;
  column-gap: 20px;
}

.store-gallery--natural .store-gallery__item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.store-gallery--natural .store-gallery__item img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.store-section--blog {
  padding: clamp(44px, 5vw, 68px) 0;
  background: #fff;
}

.store-blog-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.store-blog-heading__link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--store-mid-blue);
  color: var(--store-navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.store-blog-heading__link:hover,
.store-blog-heading__link:focus-visible {
  color: var(--store-mid-blue);
  text-decoration: none;
}

.store-blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.store-blog-card {
  margin: 0;
  border: 1px solid var(--store-border);
  background: #fff;
  box-shadow: 0 12px 32px rgba(7, 29, 114, .07);
}

.store-blog-card > a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: var(--store-text);
  text-decoration: none;
}

.store-blog-card > a:hover,
.store-blog-card > a:focus-visible {
  color: var(--store-text);
  text-decoration: none;
  transform: translateY(-3px);
}

.store-blog-card__image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--store-pale);
}

.store-blog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.store-blog-card > a:hover .store-blog-card__image img,
.store-blog-card > a:focus-visible .store-blog-card__image img {
  transform: scale(1.025);
}

.store-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 26px;
}

.store-blog-card time {
  color: var(--store-mid-blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.store-blog-card h3 {
  margin: 13px 0 0;
  color: var(--store-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.store-blog-card p {
  margin: 14px 0 24px;
  color: var(--store-muted);
  font-size: 13px;
  line-height: 1.85;
}

.store-blog-card__more {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  color: var(--store-blue);
  font-size: 12px;
  font-weight: 700;
}

.store-blog-empty {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--store-border);
  color: var(--store-muted);
  font-size: 14px;
  line-height: 1.8;
}

.store-section--actions {
  padding: 54px 0;
  background: var(--store-navy);
}

.store-action-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.store-action-card .store-section-label {
  color: #9aade8;
}

.store-action-card h2 {
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
}

.store-action-card p:last-child {
  margin: 12px 0 0;
  color: #cdd5ef;
  font-size: 14px;
  line-height: 1.8;
}

.store-action-links {
  display: flex;
  gap: 12px;
}

.store-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: #8fa4e3;
  color: #fff;
  background: var(--store-mid-blue);
  text-decoration: none;
}

.store-button--primary {
  border-color: #fff;
  color: var(--store-navy);
  background: #fff;
}

.store-button--primary:hover,
.store-button--primary:focus-visible {
  color: #fff;
}

.store-section--access {
  padding-bottom: 54px;
}

.store-map {
  overflow: hidden;
  border: 1px solid var(--store-border);
  background: var(--store-pale);
}

.store-info-map {
  order: 1;
  border: 10px solid #fff;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 29, 114, .1);
}

.store-map iframe {
  display: block;
  width: 100%;
}

.store-info-map iframe {
  height: 600px;
  min-height: 0;
}

.store-section--license {
  padding-top: 54px;
  background: var(--store-pale);
}

.store-license-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 7vw, 90px);
}

.store-section--license h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.store-license-list {
  margin: 0;
  border-top: 1px solid var(--store-border);
}

.store-license-list > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--store-border);
}

.store-license-list dt,
.store-license-list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.store-license-list dt {
  color: var(--store-muted);
}

.store-license-list dd {
  color: var(--store-text);
  font-weight: 600;
}

.store-other {
  padding: 0 0 90px;
  background: var(--store-pale);
}

.store-other a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 28px 32px;
  border-top: 4px solid var(--store-blue);
  color: var(--store-text);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 29, 114, .08);
  text-decoration: none;
}

.store-other a:hover,
.store-other a:focus-visible {
  color: var(--store-navy);
  background: #f9faff;
  text-decoration: none;
  transform: translateY(-2px);
}

.store-other span:first-child {
  color: var(--store-muted);
  font-size: 13px;
}

.store-other strong {
  color: var(--store-navy);
  font-size: 18px;
}

.store-other span:last-child {
  color: var(--store-blue);
  font-size: 22px;
}

@media (max-width: 991px) {
  .store-gallery--natural {
    columns: 2;
  }

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

  .store-hero__inner {
    grid-template-columns: minmax(0, 13fr) minmax(260px, 7fr);
    gap: 36px;
  }

  .store-info-grid {
    gap: 22px;
  }

  .store-info-map iframe {
    height: 520px;
    min-height: 0;
  }

  .store-action-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .store-license-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .store-shell {
    width: min(100% - 48px, 1040px);
  }

  .store-hero {
    padding: 36px 0 40px;
    background: var(--store-pale);
  }

  .store-hero::before {
    display: none;
  }

  .store-hero__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .store-hero h1 {
    font-size: clamp(20px, 6.3vw, 27px);
    letter-spacing: .015em;
  }

  .store-hero__lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .store-anchor-nav {
    gap: 0 18px;
    margin-top: 25px;
  }

  .store-hero__phone {
    display: grid;
    grid-template-columns: 18px auto;
    column-gap: 10px;
    row-gap: 5px;
    width: 100%;
    justify-content: center;
    justify-items: center;
    margin-top: 18px;
    text-align: center;
  }

  .store-hero__phone span {
    white-space: nowrap;
  }

  .store-hero__phone strong {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    font-size: 18px;
    white-space: nowrap;
  }

  .store-hero__media::before {
    top: 12px;
    right: -12px;
    bottom: -12px;
    left: 12px;
  }

  .store-section {
    padding: 64px 0;
  }

  .store-section--intro,
  .store-section--gallery {
    padding: 32px 0;
  }

  .store-fact {
    min-height: 0;
    padding: 22px 20px;
  }

  .store-info-grid {
    gap: 18px;
  }

  .store-facts {
    grid-template-columns: 1fr;
    order: 2;
  }

  .store-fact,
  .store-fact--hours,
  .store-fact--phone,
  .store-fact--address,
  .store-fact--access,
  .store-fact--car {
    grid-column: auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--store-border);
  }

  .store-fact:last-child {
    border-bottom: 0;
  }

  .store-fact__value {
    font-size: 20px;
  }

  .store-fact__value--address,
  .store-fact__value--small {
    font-size: 15px;
  }

  .store-section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .store-section-heading > p {
    margin-top: 18px;
  }

  .store-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .store-gallery__item img {
    aspect-ratio: 16 / 9;
  }

  .store-gallery--natural {
    columns: 1;
    column-gap: 0;
  }

  .store-gallery--natural .store-gallery__item {
    margin-bottom: 14px;
  }

  .store-blog-heading {
    display: block;
    margin-bottom: 26px;
  }

  .store-blog-heading__link {
    margin-top: 18px;
  }

  .store-blog-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .store-blog-card > a {
    min-height: 0;
  }

  .store-blog-card__body {
    padding: 21px 22px 23px;
  }

  .store-section--actions {
    padding: 50px 0;
  }

  .store-action-links {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .store-map iframe {
    height: 360px;
  }

  .store-info-map iframe {
    height: 420px;
    min-height: 0;
  }

  .store-info-map {
    order: 1;
    border-width: 6px;
  }

  .store-section--license {
    padding-top: 58px;
  }

  .store-license-grid {
    gap: 28px;
  }

  .store-license-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .store-other {
    padding-bottom: 64px;
  }

  .store-other a {
    grid-template-columns: 1fr auto;
    padding: 23px 22px;
  }

  .store-other span:first-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-page a,
  .store-gallery__item img {
    transition: none;
  }
}
