:root {
  /* Colors - Rainforest Coast Palette */
  --bg-page: #f7f6f2;
  --bg-surface: rgba(255, 250, 242, 0.78);
  --bg-surface-strong: rgba(255, 252, 247, 0.92);
  --bg-tint: rgba(229, 241, 228, 0.7);
  --bg-deep: #214338;
  --bg-mist: rgba(250, 244, 232, 0.84);
  --accent-lavender: #24372f;
  /* Sea Glass Green */
  --accent-gold: #b08a54;
  /* Warm Sand */
  --text-main: #1b241f;
  --text-dim: #556057;
  --fog-white: #fffdf9;
  --line-soft: rgba(33, 67, 56, 0.14);
  --shadow-soft: 0 24px 60px rgba(84, 114, 91, 0.12);
  --radius-sm: 0.6rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.2rem;
  --radius-pill: 999px;

  /* Fonts */
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  /* Spacing & Misc */
  --transition-smooth: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  --glow-soft: 0 0 30px rgba(212, 228, 225, 0.15);
}

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

body.cursor-ready * {
  cursor: auto;
}

/* Disable custom ring cursor completely — use native OS cursor */
.cursor-ring {
  display: none !important;
}

body {
  cursor: default;
  background-color: var(--bg-page);
  background-image: none;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
.logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-main);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 18px rgba(73, 98, 82, 0.08);
}

.logo,
h1,
h2 {
  -webkit-text-stroke: 0.2px rgba(255, 255, 255, 0.22);
}

a {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: inherit;
  transition: var(--transition-smooth);
}

.logo,
.btn,
.nav-links a,
.cart-icon,
.collection-card,
.assistant-link,
.assistant-handoff,
.assistant-chip {
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 2500;
  background: var(--accent-gold);
  color: var(--bg-deep);
  padding: 0.65rem 0.95rem;
  text-decoration: none;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.skip-link:focus-visible {
  top: 1rem;
}

/* Grain Texture Overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-ring {
  display: none;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 252, 247, 0.82);
  background: radial-gradient(
    circle,
    rgba(125, 187, 157, 0.38) 0%,
    rgba(125, 187, 157, 0.18) 60%,
    rgba(125, 187, 157, 0) 100%
  );
  backdrop-filter: blur(3px);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  will-change: transform, width, height, border-color, background;
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s,
    background 0.3s;
}

.cursor-ring.cursor-hover {
  width: 58px;
  height: 58px;
  border-color: var(--accent-gold);
  background: radial-gradient(
    circle,
    rgba(217, 166, 90, 0.34) 0%,
    rgba(217, 166, 90, 0.12) 62%,
    rgba(217, 166, 90, 0) 100%
  );
}

body.visual-variant-b .cursor-ring {
  width: 36px;
  height: 36px;
  border-color: rgba(217, 166, 90, 0.66);
  background: radial-gradient(
    circle,
    rgba(255, 252, 247, 0.3) 0%,
    rgba(217, 166, 90, 0.14) 58%,
    rgba(217, 166, 90, 0) 100%
  );
  mix-blend-mode: screen;
}

body.visual-variant-b .cursor-ring.cursor-hover {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 252, 247, 0.9);
  background: radial-gradient(
    circle,
    rgba(255, 252, 247, 0.4) 0%,
    rgba(217, 166, 90, 0.2) 64%,
    rgba(217, 166, 90, 0) 100%
  );
}

body.visual-variant-b nav.scrolled {
  background: rgba(255, 247, 233, 0.8);
  box-shadow: 0 16px 36px rgba(84, 114, 91, 0.14);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(24, 49, 38, 0.92);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

body.has-offer-bar nav {
  top: 2.15rem;
}

.offer-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: #1f2c25;
  color: #f7f6f2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.offer-bar-text {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-bar-cta {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-pill);
  color: #f7f6f2;
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.24rem 0.7rem;
}

.offer-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 12, 0.5);
  z-index: 2400;
  display: none;
}

.offer-modal {
  position: fixed;
  z-index: 2401;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 2.2rem));
  border: 1px solid rgba(27, 36, 31, 0.14);
  border-radius: var(--radius-lg);
  background: #fdfcf8;
  box-shadow: 0 24px 56px rgba(18, 29, 24, 0.22);
  padding: 1.25rem;
  display: none;
}

.offer-modal[aria-hidden="false"],
.offer-modal-overlay[aria-hidden="false"] {
  display: block;
}

.offer-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.offer-modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0;
}

.offer-modal-close {
  border: 0;
  background: transparent;
  color: var(--text-main);
  font-size: 1.35rem;
}

.offer-modal-copy {
  margin-bottom: 0.95rem;
  opacity: 0.78;
}

.offer-modal-form {
  display: flex;
  gap: 0.55rem;
}

.offer-modal-input {
  flex: 1;
  border: 1px solid rgba(27, 36, 31, 0.22);
  background: #fff;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-pill);
}

.offer-modal-status {
  margin-top: 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.copied-feedback {
  color: #1f2c25 !important;
  border-color: #1f2c25 !important;
}

.home-page nav {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.44) 68%,
    rgba(255, 255, 255, 0) 100%
  );
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(18, 29, 24, 0.06);
  border-bottom: 1px solid rgba(27, 36, 31, 0.1);
  padding: 1rem 5%;
}

.logo {
  font-size: 2rem;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  opacity: 1;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

*:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 4px;
}

.nav-links a.active {
  opacity: 1;
  color: var(--accent-gold);
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--accent-gold);
  color: var(--fog-white);
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

/* Canvas Background */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 33, 27, 0.2) 0%,
    rgba(18, 33, 27, 0.14) 40%,
    rgba(18, 33, 27, 0.24) 100%
  );
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 1.2rem;
}

.home-hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.94);
  -webkit-text-stroke: 0.55px rgba(255, 255, 255, 0.3);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.26),
    0 8px 18px rgba(7, 16, 13, 0.32);
}

.home-hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  opacity: 0.94;
  margin-bottom: 3rem;
  color: rgba(244, 252, 248, 0.92);
  text-shadow: 0 7px 16px rgba(8, 18, 14, 0.22);
}

body.visual-variant-a .home-hero-title {
  letter-spacing: 0.015em;
}

body.visual-variant-b .home-hero-title {
  color: rgba(255, 246, 229, 0.94);
  -webkit-text-stroke: 0.75px rgba(255, 248, 231, 0.42);
  text-shadow:
    0 1px 0 rgba(255, 248, 231, 0.32),
    0 12px 26px rgba(7, 16, 13, 0.42),
    0 0 22px rgba(217, 166, 90, 0.34);
}

body.visual-variant-b .home-hero-subtitle {
  letter-spacing: 0.14em;
  text-shadow:
    0 9px 18px rgba(8, 18, 14, 0.3),
    0 0 14px rgba(217, 166, 90, 0.26);
}

.home-hero .btn {
  background: rgba(255, 252, 247, 0.9);
}

body.visual-variant-b .home-hero .btn {
  border-color: rgba(217, 166, 90, 0.9);
  background: rgba(255, 248, 235, 0.84);
  box-shadow: 0 14px 32px rgba(217, 166, 90, 0.2);
}

.home-hero-scroll-indicator {
  position: absolute;
  bottom: 5%;
  z-index: 1;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, var(--accent-lavender), transparent);
}

.home-section {
  padding: 10rem 0;
}

.home-section-head {
  text-align: center;
  margin-bottom: 1.2rem;
}

.home-section-head-featured {
  margin-bottom: 5rem;
}

.home-section-title {
  margin-bottom: 0.7rem;
}

.home-section-title-lg {
  font-size: 2.7rem;
}

.home-section-title-xl {
  font-size: 3rem;
}

.home-section-subtitle {
  opacity: 0.55;
}

.home-section-subtitle-strong {
  opacity: 0.7;
}

.home-section-subtitle-spacious {
  margin-bottom: 3rem;
}

.home-section-cta {
  text-align: center;
  margin-top: 3rem;
}

.home-about-title {
  margin-bottom: 2rem;
}

.home-about-subtitle {
  opacity: 0.6;
  margin-bottom: 3rem;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.home-category-link {
  text-align: center;
}

.home-featured {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.home-categories {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.home-about {
  background: rgba(255, 252, 247, 0.58);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 252, 247, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.home-partners {
  padding-bottom: 7rem;
}

.home-artist {
  background: rgba(255, 252, 247, 0.68);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.home-artist-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) 1fr;
  gap: 2.4rem;
  align-items: center;
}

.home-artist-photo-wrap {
  display: flex;
  justify-content: center;
}

.home-artist-photo-frame {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  padding: 1rem;
  background: rgba(255, 252, 247, 0.92);
}

.home-artist-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.home-artist-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  font-size: 0.68rem;
  margin-bottom: 0.85rem;
}

.home-artist-quote {
  font-size: 1.26rem;
  line-height: 1.7;
  opacity: 0.86;
  margin-bottom: 1rem;
}

.home-artist-description,
.home-about-subtitle {
  opacity: 0.66;
  margin-bottom: 2rem;
}

.home-process {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.home-newsletter {
  text-align: center;
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 252, 247, 0.44);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(33, 67, 56, 0.1);
  backdrop-filter: blur(10px);
}

.home-newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
}

.home-newsletter-input {
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(24, 49, 38, 0.35);
  padding: 1rem;
  color: var(--text-main);
  flex-grow: 1;
  border-radius: var(--radius-pill);
}

.home-newsletter-input::placeholder {
  color: rgba(24, 49, 38, 0.62);
}

/* Footer */
footer {
  padding: 5rem 5% 2rem;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  background: rgba(255, 252, 247, 0.48);
  margin-top: 5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  opacity: 0.6;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.copyright {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Inner page photo hero — full-bleed banner at the top of every inner page */
.inner-page-hero {
  position: relative;
  min-height: 46vh;
  max-height: 580px;
  background: #f7f6f2;
  overflow: hidden;
  isolation: isolate;
}

/* Blurred background layer injected by JS */
.hero-bg-blur {
  position: absolute;
  inset: -32px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(var(--hero-blur, 10px));
  transform: scale(1.06);
  z-index: 0;
  will-change: filter;
}

/* Hero children sit above the blur layer */
.inner-page-hero > * {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(27, 36, 31, 0.42);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-pill);
  backdrop-filter: none;
  transition: var(--transition-smooth);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  background: #1f2c25;
  color: #f8f7f3;
  box-shadow: 0 12px 28px rgba(18, 29, 24, 0.18);
}

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

.btn-gold:hover {
  background: var(--accent-gold);
  color: var(--fog-white);
}

.btn-full {
  width: 100%;
}

.trust-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(18, 29, 24, 0.06);
  padding: 1.5rem 0;
  border-radius: var(--radius-xl);
  backdrop-filter: none;
}

body.visual-variant-b .trust-strip {
  background: rgba(255, 246, 228, 0.6);
  border-top-color: rgba(217, 166, 90, 0.28);
  border-bottom-color: rgba(217, 166, 90, 0.28);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-item {
  border: 1px solid var(--line-soft);
  padding: 1rem;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.48);
  backdrop-filter: blur(8px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.collection-card {
  border: 1px solid var(--line-soft);
  padding: 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(251, 247, 239, 0.92)
  );
  box-shadow: 0 16px 34px rgba(18, 29, 24, 0.08);
  border-radius: 0.75rem;
  backdrop-filter: none;
  transition: var(--transition-smooth);
}

.collection-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.collection-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.collection-title-sm {
  font-size: 1.3rem;
}

.collection-title-md {
  font-size: 1.4rem;
}

.collection-desc {
  font-size: 0.85rem;
  opacity: 0.72;
}

.site-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.site-editorial-card,
.site-detail-card,
.article-cta-card,
.site-cta-band {
  border: 1px solid var(--line-soft);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(251, 247, 239, 0.94)
  );
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(18, 29, 24, 0.08);
}

.site-editorial-card,
.site-detail-card,
.article-cta-card {
  padding: 1.15rem;
  transition: var(--transition-smooth);
}

.site-editorial-card:hover,
.site-detail-card:hover,
.article-cta-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 180, 131, 0.65);
}

a.site-editorial-card,
a.site-detail-card,
a.article-cta-card {
  color: inherit;
  text-decoration: none;
}

.site-editorial-kicker,
.site-detail-kicker,
.site-cta-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.site-editorial-title,
.site-detail-title,
.site-cta-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.45rem;
}

.site-editorial-copy,
.site-detail-copy,
.site-cta-copy,
.site-detail-list,
.article-cta-card p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.7;
}

.site-detail-card {
  display: flex;
  flex-direction: column;
}

.card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--accent-gold);
}

.card-icon svg {
  width: 46px;
  height: 46px;
}

.site-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.site-section-head {
  max-width: 700px;
  margin-bottom: 1rem;
}

.site-section-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.45rem;
}

.site-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 0.45rem;
}

.site-section-copy {
  color: var(--text-dim);
  line-height: 1.7;
}

.site-detail-list {
  padding-left: 1.1rem;
  margin: 0;
}

.site-detail-list li + li {
  margin-top: 0.35rem;
}

.site-cta-band {
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
  align-items: center;
}

.site-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.article-utility-wrap {
  margin: 1.2rem 0 2rem;
}

.article-cta-card {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.assistant-launcher {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2300;
  border: 1px solid var(--accent-gold);
  background: var(--bg-surface-strong);
  color: var(--text-main);
  border-radius: var(--radius-pill);
  padding: 0.72rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.assistant-panel {
  position: fixed;
  right: 1.2rem;
  bottom: 4.8rem;
  width: min(380px, calc(100vw - 2.4rem));
  max-height: min(72vh, 640px);
  z-index: 2300;
  border: 1px solid var(--line-soft);
  background: var(--bg-surface-strong);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.assistant-panel[hidden] {
  display: none;
}

.assistant-head {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.assistant-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.assistant-close {
  background: transparent;
  color: var(--text-main);
  border: 0;
  font-size: 1.1rem;
}

.assistant-log {
  overflow-y: auto;
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
}

.assistant-msg {
  border: 1px solid var(--line-soft);
  background: rgba(255, 252, 247, 0.55);
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.45;
}

.assistant-msg.user {
  border-color: rgba(212, 180, 131, 0.8);
}

.assistant-msg.assistant {
  display: grid;
  gap: 0.55rem;
}

.assistant-links {
  display: grid;
  gap: 0.4rem;
}

.assistant-link {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(212, 180, 131, 0.26);
  background: rgba(255, 252, 247, 0.6);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.65rem;
}

.assistant-link-title {
  display: block;
  color: var(--accent-gold);
  font-size: 0.86rem;
  margin-bottom: 0.08rem;
}

.assistant-link-meta {
  display: block;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.assistant-actions {
  padding: 0.6rem 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.assistant-secondary {
  padding: 0 0.8rem 0.7rem;
}

.assistant-handoff {
  width: 100%;
  border: 1px solid rgba(212, 180, 131, 0.55);
  background: transparent;
  color: var(--accent-gold);
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-md);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

.assistant-chip {
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--text-main);
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.65rem;
  font-size: 0.68rem;
}

.assistant-form {
  padding: 0.75rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 0.45rem;
}

.assistant-input {
  flex: 1;
  background: rgba(255, 252, 247, 0.76);
  border: 1px solid var(--line-soft);
  color: var(--text-main);
  padding: 0.58rem 0.68rem;
}

.assistant-send {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
  padding: 0.58rem 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
}

img {
  image-orientation: from-image;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body.cursor-ready * {
    cursor: auto;
  }

  .cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  body.has-offer-bar nav {
    top: 2rem;
  }

  .offer-bar {
    padding: 0.42rem 0.55rem;
    gap: 0.5rem;
  }

  .offer-bar-text {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .offer-bar-cta {
    font-size: 0.52rem;
    padding: 0.2rem 0.5rem;
  }

  .offer-modal-form {
    flex-direction: column;
  }

  nav {
    padding: 1rem 4%;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo {
    width: auto;
    text-align: left;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-page);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .btn {
    min-height: 44px;
    padding: 0.82rem 1.25rem;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }

  .cart-count {
    top: -6px;
    right: -10px;
  }

  footer {
    margin-top: 3rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .trust-item {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .home-hero {
    min-height: 92vh;
    padding-top: 6.5rem;
  }

  .home-hero-title {
    font-size: clamp(2.3rem, 14vw, 3.3rem);
  }

  .home-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .home-hero-content {
    padding: 0 0.8rem;
  }

  .home-artist-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-artist-photo-frame {
    width: min(280px, 80vw);
  }

  .home-hero-scroll-indicator {
    height: 64px;
    bottom: 3%;
  }

  .home-section {
    padding: 5.5rem 0;
  }

  .home-featured,
  .home-categories,
  .home-stack {
    padding-top: 6.2rem;
    padding-bottom: 6.2rem;
  }

  .site-cta-actions,
  .article-cta-actions {
    flex-direction: column;
  }

  .site-editorial-title,
  .site-detail-title,
  .site-cta-title {
    font-size: 1.35rem;
  }

  .home-section-head-featured {
    margin-bottom: 2.4rem;
  }

  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .home-newsletter-form {
    flex-direction: column;
    gap: 0.7rem;
  }

  .home-newsletter-input {
    width: 100%;
  }

  .home-section-title-lg,
  .home-section-title-xl {
    font-size: clamp(2.1rem, 10vw, 2.55rem);
  }
}
