:root {
  --bg: #000;
  --text: #fff;
  --muted: #b8b8b8;
  --line: #262626;
  --pink: #f00086;
  --max: 1240px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem) 1.25rem 2rem;
  text-align: center;
}

.brand {
  display: inline-block;
  width: clamp(220px, 35vw, 410px);
}

.brand img {
  width: 100%;
  height: auto;
}

.eyebrow,
.location-line {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .36em;
  font-size: clamp(.72rem, 1.3vw, 1rem);
}

.location-line {
  margin-top: .65rem;
  color: var(--muted);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.slider {
  position: relative;
  overflow: hidden;
  background: #111;
}

.slides {
  position: relative;
  aspect-ratio: 16 / 9;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide picture,
.slide img {
  width: 100%;
  height: 100%;
}

.slide img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 6s ease;
}

.slide.is-active img { transform: scale(1); }

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 64px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 200;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease;
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: rgba(0,0,0,.75);
  color: var(--pink);
}
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: .85rem;
  padding: 1.25rem 0 .25rem;
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dot.is-active {
  border-color: var(--pink);
  background: var(--pink);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  padding: 0 1.25rem;
}

.info-card {
  min-width: 0;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.info-card + .info-card {
  border-left: 1px solid var(--line);
}

.icon,
.instagram-mark {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--pink);
  font-size: 3.2rem;
  line-height: 1;
}

h1, h2 {
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .18em;
}

h1 { font-size: clamp(1.4rem, 2.5vw, 2.35rem); }
h2 {
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.8;
}

.info-card p {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.info-card .appointment {
  display: inline-block;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240,0,134,.55);
  color: var(--pink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 1.5rem;
  padding: .8rem 1.4rem;
  border: 1px solid var(--pink);
  color: #fff;
  font-size: .78rem;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--pink);
  color: #fff;
}

.map-wrap {
  overflow: hidden;
  margin-top: 1.75rem;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  filter: grayscale(1) invert(.92) contrast(.85);
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.instagram-handle {
  display: inline-block;
  margin-top: 2rem;
  color: var(--pink);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.instagram-handle:hover,
.instagram-handle:focus-visible {
  text-decoration: underline;
  text-underline-offset: .3em;
}

footer {
  max-width: var(--max);
  margin: 4rem auto 0;
  padding: 2rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  color: #747474;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .brand { width: min(78vw, 330px); }

  .eyebrow,
  .location-line { letter-spacing: .22em; }

  .hero { padding-inline: 0; }

  .slides { aspect-ratio: 4 / 5; }

  .slide img { object-position: center; }

  .slider-arrow {
    width: 42px;
    height: 54px;
    font-size: 2rem;
  }

  .slider-dots { padding-top: 1rem; }

  .info-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
    padding-inline: 1rem;
  }

  .info-card {
    padding: 2.5rem 1rem;
  }

  .info-card + .info-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .map-wrap iframe { height: 250px; }

  footer { margin-top: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
