/* ==========================================================================
   ESSARDAS GROUP — BOUTIQUE PAGE (boutiques/{slug}.html)
   Full-bleed street photograph + typographic hero (street number + name),
   brands carried, contact details, map, appointment CTA, featured rail.
   ========================================================================== */

.boutique-hero {
  position: relative;
  min-height: clamp(54vh, 72vh, 820px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: var(--space-12);
  background: var(--obsidian);
  color: var(--chalk);
  overflow: hidden;
}
.boutique-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(140% 90% at 80% 10%, color-mix(in srgb, var(--champagne) 10%, transparent), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Full-bleed Main Street photograph (same assets as the home street stops) */
.boutique-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.boutique-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.boutique-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.boutique-hero--image::before {
  background:
    linear-gradient(180deg,
      rgba(9, 17, 29, 0.82) 0%,
      rgba(9, 17, 29, 0.48) 28%,
      rgba(9, 17, 29, 0.42) 48%,
      rgba(9, 17, 29, 0.88) 78%,
      rgba(9, 17, 29, 0.96) 100%),
    radial-gradient(120% 80% at 85% 8%, color-mix(in srgb, var(--champagne) 8%, transparent), transparent 55%);
}

.boutique-hero__num {
  position: absolute;
  top: 12%;
  right: var(--gutter);
  font-family: var(--font-display);
  font-size: clamp(8rem, 4rem + 22vw, 28rem);
  line-height: 0.8;
  color: var(--graphite);
  z-index: 1;
  user-select: none;
  pointer-events: none;
}
.boutique-hero--image .boutique-hero__num {
  color: color-mix(in srgb, var(--chalk) 14%, transparent);
}
.boutique-hero .container { position: relative; z-index: 2; }
.boutique-hero__eyebrow { margin-bottom: var(--space-3); }
.boutique-hero h1 {
  font-size: var(--fs-display);
  max-width: 14ch;
  text-wrap: balance;
}
.boutique-hero__pos {
  margin-top: var(--space-4);
  max-width: 44ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--chalk-soft);
}

@media (max-width: 720px) {
  .boutique-hero {
    min-height: clamp(68vh, 78svh, 720px);
    padding-bottom: var(--space-10);
  }
  .boutique-hero__media img { object-position: center 35%; }
  .boutique-hero__num {
    top: 10%;
    font-size: clamp(6.5rem, 2.5rem + 28vw, 14rem);
    right: max(0.5rem, calc(var(--gutter) - 0.5rem));
  }
  .boutique-hero h1 { max-width: 12ch; }
  .boutique-hero__pos { max-width: 34ch; }
}

/* Detail row: contact / hours / appointment */
.boutique-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) { .boutique-detail { grid-template-columns: 1fr; } }

.info-list { display: flex; flex-direction: column; gap: var(--space-4); }
.info-row { display: flex; flex-direction: column; gap: 0.3rem; padding-bottom: var(--space-3); border-bottom: 1px solid var(--line); }
.info-row__label {
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--champagne-deep);
}
.info-row__value { font-size: 1.05rem; }
.info-row a:hover { color: var(--champagne-deep); }

/* Brands carried */
.brand-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.brand-chips a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color var(--dur-fast) var(--ease-luxe), color var(--dur-fast) var(--ease-luxe);
}
.brand-chips a:hover { border-color: var(--champagne); color: var(--champagne-deep); }

.boutique-appoint { margin-top: var(--space-6); }
