/* The Hazel Studios
   Palette: #0F1A38 accent · #606875 muted · #1E1E1E dark · #FFFFFF light */

:root {
  --accent: #0f1a38;
  --muted: #606875;
  --dark: #1e1e1e;
  --light: #ffffff;
  --surface: #f4f5f7;
  --surface-2: #e8eaee;
  --border: rgba(96, 104, 117, 0.28);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-pill: 999px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --max: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --layout-cols: 1fr 1fr;
  --layout-gap: clamp(2rem, 5vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

#top,
#studio,
#collections,
#contact {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--light);
}

.btn-primary:hover {
  background: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-light {
  background: var(--light);
  color: var(--dark);
}

.btn-light:hover {
  background: var(--surface);
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
}

.btn__icon {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.text-link:hover {
  color: var(--accent);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(96, 104, 117, 0.12);
  box-shadow: 0 4px 16px rgba(15, 26, 56, 0.02);
}

.header-inner {
  width: min(100% - (var(--space) * 2), var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-end {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  margin-left: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.35rem;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.logo--footer .logo-mark {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.15rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.35s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1.5px;
  border-radius: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}

.site-nav a:hover {
  color: var(--dark);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 0.7rem 1.35rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--dark);
  margin-inline: auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(30, 30, 30, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-backdrop[hidden] {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

/* —— Shared section bits —— */
.section-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 14ch;
  color: var(--accent);
}

.section-aside {
  color: var(--muted);
  font-size: 1rem;
  max-width: 32ch;
  justify-self: end;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* —— Hero —— */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: var(--layout-cols);
  gap: var(--layout-gap);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
  max-width: 11ch;
  margin-bottom: 1.25rem;
  color: var(--accent);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero-lead {
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.22s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 4.5rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.32s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.42s forwards;
}

.hero-stats > div {
  position: relative;
  padding: 0 2.25rem;
  margin: 0;
}

.hero-stats > div:first-child {
  padding-left: 0;
}

.hero-stats > div:last-child {
  padding-right: 0;
}

.hero-stats > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2.5rem;
  background: rgba(96, 104, 117, 0.08);
}

.hero-stats dt {
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.hero-stats dt .hero-stat-value {
  letter-spacing: -0.03em;
}

.hero-stats dt .hero-stat-unit {
  font-size: 0.68em;
  letter-spacing: 0;
  margin-left: 0.04em;
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: rise 1s var(--ease) 0.2s forwards;
}

.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

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

.hero-new {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--light);
  color: var(--dark);
  padding: 0.5rem 0.85rem;
  border-radius: 0.65rem;
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.12);
}

.hero-new__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2f9e62;
  flex-shrink: 0;
  animation: hero-new-pulse 2.8s ease-in-out infinite;
}

@keyframes hero-new-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(47, 158, 98, 0.45);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.82);
    box-shadow: 0 0 0 5px rgba(47, 158, 98, 0);
  }
}

.hero-new span:last-child {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

/* —— Studio —— */
.studio {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: var(--surface);
}

.studio-grid {
  display: grid;
  grid-template-columns: var(--layout-cols);
  gap: var(--layout-gap);
  align-items: start;
}

.studio-copy h2 {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.studio-copy p {
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1rem;
}

.studio-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-width: 0;
}

.studio-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0.65rem;
  align-items: center;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.75rem;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(15, 26, 56, 0.06);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.studio-features li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 26, 56, 0.09);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(15, 26, 56, 0.06);
  color: var(--accent);
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.studio-features h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0;
  line-height: 1.4;
}

.studio-features p {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* —— Collections —— */
.collections {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.collections .section-intro {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.collections .section-aside {
  justify-self: stretch;
  max-width: none;
  width: 100%;
}

.collections-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(96, 104, 117, 0.14);
  border-radius: var(--radius-lg);
  background: var(--light);
  overflow: visible;
  box-shadow: 0 8px 28px rgba(15, 26, 56, 0.06);
}

.collection-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.collection-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.collection-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s var(--ease);
}

.collection-carousel__slide {
  flex: 0 0 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.collection-carousel__slide .art {
  width: 100%;
  height: 100%;
}

.collection-carousel__slide .collection-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-photo--zoom-in {
  transform: scale(1.12);
  object-position: center 62%;
}

.collection-carousel__footer {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.collection-carousel__controls {
  display: flex;
  gap: 0.35rem;
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 30, 30, 0.12);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--light);
  transform: scale(1.04);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.collection-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.carousel-dot {
  width: 0.35rem;
  height: 3px;
  border: 0;
  border-radius: 1.5px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s var(--ease), width 0.2s var(--ease), opacity 0.2s var(--ease);
}

.carousel-dot[aria-current="true"] {
  width: 1.35rem;
  background: var(--light);
  opacity: 1;
}

.price-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 0.4rem;
}

.collection-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 15px;
  align-self: center;
  overflow: visible;
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.collection-tags .pill-badge {
  margin-bottom: 0;
}

.collection-copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: calc(0.85rem + 10px);
}

.collection-copy > p:not(.pill-badge) {
  color: var(--muted);
  font-size: inherit;
  max-width: calc(38ch + 15px);
  margin-bottom: calc(0.75rem + 15px);
  line-height: 1.6;
}

.collection-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 0.35rem 0 0;
  padding: 0;
}

.collection-meta li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.collection-meta li:first-child {
  padding-right: 1.75rem;
}

.collection-meta li + li {
  padding-left: 1.75rem;
  border-left: 1px solid rgba(96, 104, 117, 0.08);
}

.collection-meta__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: rgba(15, 26, 56, 0.06);
  color: var(--accent);
}

.collection-meta__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.collection-meta__detail {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.collection-meta__detail strong {
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.collection-meta__detail span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}

.collection-colors {
  margin-top: 1.45rem;
  overflow: visible;
}

.collection-colors__label {
  margin: 0 0 0.4rem;
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.collection-colors__swatches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  overflow: visible;
}

.color-swatch-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: default;
  z-index: 1;
}

.color-swatch-wrap:hover,
.color-swatch-wrap:focus-visible {
  z-index: 20;
}

.color-swatch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border: 0;
  outline: 0;
  border-radius: 50%;
  overflow: hidden;
  background-clip: padding-box;
}

.color-swatch__half {
  display: block;
  width: 50%;
  height: 100%;
  flex: 0 0 50%;
  pointer-events: none;
}

.color-swatch__half--a {
  background: var(--swatch-a);
}

.color-swatch__half--b {
  background: var(--swatch-b);
}

.color-swatch--triple {
  display: block;
  box-shadow: none;
  background:
    linear-gradient(to right, var(--swatch-a) 50%, transparent 50%),
    linear-gradient(to bottom, var(--swatch-b) 50%, var(--swatch-c) 50%);
  -webkit-mask-image: radial-gradient(#000 69%, transparent 70%);
  mask-image: radial-gradient(#000 69%, transparent 70%);
}

.color-swatch-tooltip {
  position: fixed;
  z-index: 10000;
  padding: 0.4rem 0.65rem;
  border-radius: 0.45rem;
  background: var(--accent);
  color: var(--light);
  font-family: var(--font);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: 0 6px 18px rgba(15, 26, 56, 0.18);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%) translateY(-0.55rem);
  transition: opacity 0.18s var(--ease);
}

.color-swatch-tooltip.is-visible {
  opacity: 1;
}

.color-swatch-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--accent);
}

.collection-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: calc(1.5rem + 15px);
}

/* —— Contact —— */
.contact {
  padding: clamp(4rem, 9vw, 6rem) 0;
  background: var(--surface);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(145deg, var(--accent) 0%, #1a2a4a 55%, #2a384e 100%);
  border-radius: calc(var(--radius-lg) + 0.25rem);
  padding: clamp(2rem, 5vw, 3.25rem);
  color: var(--light);
}

.contact-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  max-width: 22ch;
  margin: 0;
}

.contact-details > p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-meta__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--light);
}

.contact-meta__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.contact-meta a:hover {
  text-decoration: underline;
}

.email-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.85rem;
  padding: 0 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.45rem;
  background: transparent;
  color: var(--light);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.copy-btn__state {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.copy-btn__state[hidden] {
  display: none !important;
}

.copy-btn__state svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  display: block;
}

.copy-btn__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.copy-btn:hover {
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

.copy-btn.is-copied {
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

/* —— FAQ —— */
.faq-page {
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(15, 26, 56, 0.04), transparent 60%),
    var(--light);
}

.faq-page__inner {
  max-width: 46rem;
}

.faq-page h1 {
  color: var(--accent);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  margin-bottom: 0.85rem;
}

.faq-page__lead {
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 40ch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(96, 104, 117, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(96, 104, 117, 0.16);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 0;
  list-style: none;
  cursor: pointer;
  color: var(--dark);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  transition: color 0.2s var(--ease);
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary::marker {
  content: "";
}

.faq-item__summary:hover {
  color: var(--accent);
}

.faq-item__icon {
  position: relative;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.faq-item__icon::before {
  width: 100%;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__body {
  padding: 0 0 1.35rem;
}

.faq-item__body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 52ch;
}

/* —— Footer —— */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3.5rem, 7vw, 5rem) 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  column-gap: 1.5rem;
  row-gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-col:nth-child(3) {
  margin-left: 120px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: var(--light);
}

.footer-brand > p {
  max-width: 32ch;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: visible;
  color: var(--light);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.socials a svg,
.socials__icon {
  width: 0.85rem;
  height: 0.85rem;
  display: block;
  flex-shrink: 0;
}

.socials__icon--linkedin {
  width: 1rem;
  height: 1rem;
  overflow: visible;
}

.socials a:hover {
  border-color: var(--light);
  background: rgba(255, 255, 255, 0.06);
}

.footer-col h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.1rem;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--light);
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.footer-email {
  color: #8fa0b8 !important;
}

.footer-email:hover {
  color: var(--light) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* —— Abstract art surfaces —— */
.art {
  background-size: cover;
  background-position: center;
}

.art-cobalt-drift {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, #3d5a8a 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 70%, #1a2744 0%, transparent 50%),
    linear-gradient(165deg, #0f1a38 0%, #2c4570 40%, #606875 70%, #1e1e1e 100%);
}

.art-color-field {
  background:
    linear-gradient(180deg, transparent 40%, rgba(30, 30, 30, 0.35) 100%),
    radial-gradient(circle at 30% 40%, #4a6a9a 0%, transparent 45%),
    linear-gradient(135deg, #0f1a38, #3a5068 45%, #7a8898 100%);
}

.art-gestural {
  background:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.04) 28px,
      rgba(255, 255, 255, 0.04) 30px
    ),
    radial-gradient(ellipse at 70% 20%, #8a96a8 0%, transparent 40%),
    linear-gradient(200deg, #1e1e1e 0%, #0f1a38 50%, #606875 100%);
}

.art-quiet {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(96, 104, 117, 0.5) 0%, transparent 55%),
    linear-gradient(160deg, #d8dde4 0%, #9aa3b0 35%, #606875 70%, #3a4250 100%);
}

.art-sunside {
  background:
    radial-gradient(circle at 25% 75%, #c4a882 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, #5a6e88 0%, transparent 45%),
    linear-gradient(125deg, #1e1e1e, #2a3548 40%, #606875 100%);
}

.art-held {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #b8c0cc 0%, #7a8696 50%, #3d4656 100%);
}

.art-tidewater {
  background:
    radial-gradient(ellipse 90% 80% at 10% 50%, #1a3358 0%, transparent 50%),
    radial-gradient(ellipse 60% 70% at 90% 40%, #4a5f78 0%, transparent 45%),
    linear-gradient(90deg, #0f1a38 0%, #243550 50%, #606875 100%);
}

.art-marks {
  background:
    repeating-linear-gradient(
      95deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.06) 18px 20px
    ),
    repeating-linear-gradient(
      8deg,
      transparent 0 40px,
      rgba(15, 26, 56, 0.35) 40px 42px
    ),
    linear-gradient(160deg, #2a2f38, #0f1a38 60%, #606875);
}

.art-soft {
  background:
    radial-gradient(ellipse at 40% 30%, #e4e8ee 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, #8b95a3 0%, transparent 45%),
    linear-gradient(200deg, #c5ccd6, #606875 80%);
}

/* —— Motion —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .header-inner {
    position: relative;
  }

  .header-end {
    display: contents;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + 0.65rem);
    right: var(--space);
    left: auto;
    width: min(14rem, calc(100vw - var(--space) * 2));
    background: var(--light);
    flex-direction: column;
    align-items: stretch;
    padding: 0.35rem;
    border: 1px solid rgba(96, 104, 117, 0.18);
    border-radius: 0.85rem;
    box-shadow: 0 16px 40px rgba(15, 26, 56, 0.14);
    gap: 0;
    z-index: 60;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem 0.9rem;
    border-bottom: none;
    border-radius: 0.55rem;
  }

  .site-nav a + a {
    margin-top: 0.15rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    letter-spacing: 0.08em;
    background: var(--surface);
  }

  .header-cta {
    display: none;
  }

  .section-intro,
  .collections .section-intro {
    align-items: start;
    justify-items: start;
  }

  .hero-grid,
  .studio-grid,
  .section-intro,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col:nth-child(3) {
    margin-left: 0;
  }

  .section-aside {
    justify-self: start;
  }

  .studio-features {
    grid-template-columns: 1fr;
  }

  .collection-card {
    grid-template-columns: 1fr;
  }

  .collection-copy {
    transform: none;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-stats > div {
    width: 100%;
    padding: 0 0 1rem;
  }

  .hero-stats > div::after {
    display: none;
  }

  .hero-stats > div:not(:last-child) {
    border-bottom: 1px solid rgba(96, 104, 117, 0.08);
  }

  .hero-stats > div:last-child {
    padding-bottom: 0;
  }

  .collections-grid {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* —— Custom cursor —— */
@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor * {
    cursor: none !important;
  }

  .custom-cursor__dot,
  .custom-cursor__ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    will-change: transform;
  }

  .custom-cursor__dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: background-color 0.2s var(--ease), opacity 0.2s var(--ease);
  }

  .custom-cursor__ring {
    width: 2.25rem;
    height: 2.25rem;
    border: 1.5px solid rgba(15, 26, 56, 0.38);
    border-radius: 50%;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  }

  body.has-custom-cursor.is-cursor-on-dark .custom-cursor__dot {
    background: var(--light);
  }

  body.has-custom-cursor.is-cursor-on-dark .custom-cursor__ring {
    border-color: rgba(255, 255, 255, 0.62);
  }

  body.has-custom-cursor.is-cursor-visible .custom-cursor__dot,
  body.has-custom-cursor.is-cursor-visible .custom-cursor__ring {
    opacity: 1;
  }
}

.coming-soon-pill {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  padding: 0.42rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--muted);
  color: var(--light);
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 6px 16px rgba(15, 26, 56, 0.28);
  transition: opacity 0.18s var(--ease);
  will-change: transform, opacity;
}

.coming-soon-pill.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-pill {
    transition: none;
  }
}

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

  .site-nav a,
  .site-nav a::after {
    transition: none;
  }

  .site-nav a:hover {
    letter-spacing: 0.08em;
  }

  .site-nav a:hover::after {
    transform: none;
  }

  .collection-carousel__track {
    transition: none;
  }

  .hero-copy h1,
  .hero-lead,
  .hero-actions,
  .hero-stats,
  .hero-visual,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-new__dot {
    animation: none;
  }
}
