@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");

:root {
  --orange: #ff8555;
  --grey-panel: #b8b8b8;
  --dark: #29292c;
  --white: #fff;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; background: var(--white); }
body {
  margin: 0;
  color: var(--dark);
  font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.brand-header {
  display: grid;
  place-items: center;
  height: clamp(145px, 13.39vw, 214px);
  padding: clamp(24px, 2.88vw, 44px) 20px clamp(7px, .96vw, 14px);
}

.brand-logo {
  display: block;
  width: clamp(298px, 26.57vw, 386px);
  height: auto;
}

.artwork-carousel {
  position: relative;
  width: 100%;
  height: clamp(275px, 25.7vw, 430px);
  overflow: hidden;
  background: #fff;
}

.slides, .slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

.slide {
  opacity: 1;
  transform: translateX(100%);
  transition: transform 1050ms cubic-bezier(.42, 0, 1, 1);
  pointer-events: none;
  will-change: transform;
}

.slide.is-active {
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.slide.is-exiting-left {
  transform: translateX(-100%);
  z-index: 1;
}

.slide.is-entering-right {
  transform: translateX(100%);
  z-index: 3;
}

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

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(90, 90, 90, .34);
  font: 200 clamp(44px, 4.2vw, 64px)/.78 Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 160ms ease, transform 160ms ease;
}
.carousel-control:hover,
.carousel-control:focus-visible { color: rgba(70, 70, 70, .62); outline: none; }
.carousel-control:focus-visible { outline: 2px solid rgba(90,90,90,.52); outline-offset: -9px; }
.carousel-control--prev { left: clamp(13px, 4.7vw, 75px); }
.carousel-control--next { right: clamp(13px, 4.7vw, 75px); }
.carousel-control--prev:hover { transform: translate(-2px, -50%); }
.carousel-control--next:hover { transform: translate(2px, -50%); }

.carousel-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(16px, 2.05vw, 29px);
  display: flex;
  gap: clamp(7px, .85vw, 12px);
  transform: translateX(-50%);
}
.carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(115, 115, 115, .38);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}
.carousel-dot:hover,
.carousel-dot:focus-visible { background: rgba(90,90,90,.72); outline: none; transform: scale(1.18); }
.carousel-dot.is-active { background: rgba(95,95,95,.62); }

.intro-panel {
  min-height: clamp(190px, 15.2vw, 246px);
  padding: clamp(24px, 2.1vw, 34px) 20px clamp(19px, 2vw, 31px);
  background: var(--grey-panel);
  text-align: center;
}

.intro-panel h1 {
  margin: 0;
  color: #2c2c2f;
  font-size: clamp(27px, 2.75vw, 44px);
  font-weight: 200;
  letter-spacing: -0.048em;
  line-height: 1;
}

.strapline {
  margin: clamp(6px, .52vw, 9px) 0 0;
  color: #36363a;
  font-size: clamp(13px, 1.12vw, 18px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.summary {
  max-width: 990px;
  margin: clamp(20px, 1.8vw, 29px) auto 0;
  color: #3e3e42;
  font-size: clamp(12px, .97vw, 16px);
  font-weight: 200;
  line-height: 1.5;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(94px, 7.5vw, 121px);
  min-height: clamp(34px, 2.7vw, 44px);
  margin-top: clamp(16px, 1.4vw, 23px);
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: clamp(11px, .82vw, 13px);
  font-weight: 200;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,.09);
  transition: transform 160ms ease, filter 160ms ease;
}
.contact-button:hover,
.contact-button:focus-visible { filter: brightness(.96); transform: translateY(-1px); outline: none; }
.contact-button:focus-visible { box-shadow: 0 0 0 3px rgba(255,255,255,.75), 0 0 0 6px rgba(255,133,85,.8); }

@media (max-width: 680px) {
  .brand-header { height: 140px; padding-top: 30px; }
  .brand-logo { width: min(323px, 83.5vw); }

  /* Shorter, width-responsive mobile banner to preserve more of each artwork. */
  .artwork-carousel { height: clamp(185px, 58vw, 212px); }

  .slide img { object-fit: cover; }
  .carousel-control { width: 40px; height: 58px; font-size: 42px; }
  .carousel-control--prev { left: 7px; }
  .carousel-control--next { right: 7px; }
  .carousel-dots { bottom: 13px; gap: 7px; }
  .carousel-dot { width: 6px; height: 6px; }
  .intro-panel { min-height: 220px; padding: 28px 17px 24px; }
  .summary { max-width: 520px; }
  .summary br { display: none; }
}

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