:root {
  --green: #5c8158; /* matches the silhouette image background exactly */
  --green-deep: #4c6b48;
  --pink: #f3d2ce;
  --pink-soft: #f7e0dc;
  --cream: #f8ede7;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --strip-height: clamp(220px, 42vh, 460px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--cream);
  background: var(--green);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green); /* flat fill so the silhouette JPG blends seamlessly */
  padding: clamp(1.5rem, 5vw, 4rem);
}

/* Pink silhouette sits on the right on desktop, softly behind text */
.hero__silhouette {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 96%;
  width: auto;
  max-width: 60%;
  object-fit: contain;
  object-position: bottom right;
  mix-blend-mode: normal;
  opacity: 0.95;
  pointer-events: none;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(680px, 92%);
}

.hero__eyebrow {
  font-size: clamp(0.7rem, 1.6vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.1rem;
  padding-left: 0.2em; /* balance the tracking */
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3.2rem, 12vw, 8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
  white-space: nowrap; /* one line on desktop; overridden to wrap on mobile */
}

.hero__divider {
  display: block;
  width: 84px;
  height: 2px;
  margin: 1.6rem 0;
  background: var(--pink);
  opacity: 0.9;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 3.2vw, 1.9rem);
  font-weight: 400;
  color: var(--pink-soft);
  max-width: 26ch;
  margin-bottom: 2.2rem;
}

.hero__details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.detail {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.9vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.detail:hover,
.detail:focus-visible {
  color: var(--pink);
  border-bottom-color: var(--pink);
  outline: none;
}

.detail:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}

/* Instagram link: glyph to the left of the handle, slightly larger than the text */
.detail--ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.detail__icon {
  width: 1.3em;
  height: 1.3em;
  flex: 0 0 auto;
}

/* ---------- STORE HOURS ---------- */
.hero__hours {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours__label {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.6vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.15rem;
}

.hours__list {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 1.5rem;
  row-gap: 0.35rem;
  margin: 0;
  width: max-content; /* hug content so the two columns sit close, not full-width */
}

.hours__list dt,
.hours__list dd {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.9vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin: 0;
}

.hours__list dt {
  text-align: left;
}

.hours__list dd {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ---------- ACCENT STRIP (cross-fade) ---------- */
.strip {
  position: relative;
  height: var(--strip-height);
  background: var(--cream);
  overflow: hidden;
}

.strip__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green-deep);
  color: var(--pink-soft);
  text-align: center;
  padding: 1.4rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(2rem, 7vh, 3.5rem) 1.5rem;
  }

  /* Stack the silhouette above the text, full pink, with a small gap. */
  .hero__silhouette {
    position: static;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: min(55%, 240px);
    max-width: none;
    height: auto;
    object-position: center;
    opacity: 1;
    margin: 0 0 1.25rem;
  }

  .hero__content {
    width: 100%; /* definite width so the title wraps instead of shrink-wrapping wide */
    max-width: 100%;
  }

  .hero__title {
    white-space: normal; /* allow "Colette / Boutique" to wrap onto two lines */
    font-size: clamp(2.6rem, 13vw, 3.6rem);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .hero__eyebrow {
    padding-left: 0; /* stays centered without the tracking nudge */
    letter-spacing: 0.2em;
  }

  .hero__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__details {
    align-items: center;
  }

  .detail {
    letter-spacing: 0.07em;
    font-size: 0.8rem;
  }
}

/* ---------- MOTION PREFERENCES ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
