/* Shop Vapotre — brand tokens */
:root {
  --navy: #0d0d26;
  --olive: #c9c694;
  --brown: #5d5447;
  --bg: #f9f7f5;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(13, 13, 38, 0.08);
  --radius: 12px;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--navy);
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(93, 84, 71, 0.03) 2px,
      rgba(93, 84, 71, 0.03) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 24px,
      rgba(93, 84, 71, 0.02) 24px,
      rgba(93, 84, 71, 0.02) 25px
    );
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section-title {
  margin: 0 0 2rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy);
}

/* Hero */
.hero {
  padding: 2rem 0 2.5rem;
  text-align: center;
}

.hero__content {
  padding: 0 1rem;
}

.hero__logo {
  width: min(280px, 70vw);
  margin: 0 auto 1.5rem;
}

.hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero__subtitle {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brown);
}

/* Shops */
.shops {
  padding: 3rem 0 4rem;
}

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

@media (min-width: 768px) {
  .shops__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .shops__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.shop-card__header {
  padding: 1.25rem 1rem;
  background: var(--olive);
  text-align: center;
}

.shop-card__name {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.shop-card__address {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}

.hours {
  flex: 1;
  margin: 0;
  padding: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hours__day,
.hours__time {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  text-align: center;
}

.hours__day {
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hours__time {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hours__time--split {
  line-height: 1.3;
}

.hours__time--split .hours__time-part {
  display: inline;
}

.hours__time--split .hours__time-part + .hours__time-part::before {
  content: " · ";
  font-weight: 700;
}

@media (max-width: 640px) {
  .hours__time--split .hours__time-part {
    display: block;
  }

  .hours__time--split .hours__time-part + .hours__time-part::before {
    content: none;
  }
}

@media (min-width: 641px) {
  .shop-card--marpent .hours__time {
    font-size: 0.65rem;
    padding-inline: 0.4rem;
    letter-spacing: 0;
  }
}

.hours__row:not(.hours__row--closed) .hours__day,
.hours__row:not(.hours__row--closed) .hours__time {
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--navy);
}

.hours__row--closed .hours__day,
.hours__row--closed .hours__time {
  background: var(--olive);
  color: var(--navy);
}

.hours__row--closed .hours__time {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-card__map {
  display: block;
  margin: 0 1rem 1rem;
  padding: 0.75rem;
  min-height: 44px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transition: background 0.2s;
}

.shop-card__map:hover {
  background: var(--brown);
}

/* Contact band */
.contact {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}

.contact__title {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.contact__phone {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  min-height: 44px;
  line-height: 1.4;
}

.contact__phone:hover {
  color: var(--olive);
}

.contact__email {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  min-height: 44px;
  line-height: 44px;
}

.contact__email:hover {
  color: var(--olive);
}

/* Social */
.social {
  padding: 3rem 0 2rem;
}

.social__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  min-height: 44px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
}

.social__link:hover {
  background: var(--olive);
  color: var(--navy);
}

.social__icon {
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--brown);
}

.footer p {
  margin: 0;
}
