/* ═══════════════════════════════════════════════════════
   FÉNIX FURNITURE — 2026 Collections
   RH-Inspired Luxury Design System
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg-primary: #0e0e0c;
  --bg-elevated: #161614;
  --bg-card: #1c1c1a;
  --bg-hover: #242422;
  --text-primary: #f0ece4;
  --text-secondary: #b5b0a6;
  --text-muted: #7a766d;
  --accent: #b8a882;
  --accent-dim: #8a7e64;
  --border: rgba(184, 168, 130, 0.15);
  --border-light: rgba(240, 236, 228, 0.08);
  --ff-display: "Cinzel", serif;
  --ff-serif: "Cormorant Garamond", serif;
  --ff-sans: "Lato", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--ff-serif);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.narrow {
  max-width: 800px;
}

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═════════════════════ HEADER ═════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease);
}
#site-header.scrolled {
  background: rgba(14, 14, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid var(--border-light);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  color: var(--text-primary);
  font-weight: 400;
}
#main-nav {
  display: flex;
  gap: 2.5rem;
}
#main-nav a {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  font-weight: 300;
}
#main-nav a:hover,
#main-nav a.active {
  color: var(--accent);
}

/* ── Dropdown Navigation ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(22, 22, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 1001;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: 0;
  height: 1.5rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  font-family: var(--ff-serif) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  color: var(--text-secondary) !important;
  font-weight: 300 !important;
  transition: color 0.3s, padding-left 0.3s;
  padding-left: 0;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--accent) !important;
  padding-left: 0.3rem;
}

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
#hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
#hamburger.open span:nth-child(2) {
  opacity: 0;
}
#hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 768px) {
  #hamburger {
    display: flex;
  }
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 12, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 999;
    overflow-y: auto;
  }
  #main-nav.open {
    opacity: 1;
    pointer-events: all;
  }
  #main-nav > a {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  /* Mobile dropdown overrides */
  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .nav-dropdown-trigger {
    font-size: 1rem !important;
    letter-spacing: 0.3em !important;
    justify-content: center;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: unset;
    width: 90%;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
    background: rgba(28, 28, 26, 0.95);
    border: 1px solid var(--border);
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s var(--ease), max-height 0.4s var(--ease);
  }
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: none;
    max-height: 600px;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    pointer-events: none;
    max-height: 0;
  }
  .nav-dropdown.open:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    max-height: 600px;
  }
  .dropdown-column {
    align-items: center;
    text-align: center;
  }
  .nav-dropdown-menu a {
    font-size: 0.85rem !important;
  }
}

/* ═════════════════════ HERO ═════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a1916 0%,
    #0e0e0c 40%,
    #1c1a17 70%,
    #0e0e0c 100%
  );
  z-index: 0;
}
.hero-bg-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 2px,
    rgba(184, 168, 130, 0.015) 2px,
    rgba(184, 168, 130, 0.015) 4px
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 14, 12, 0.3) 0%,
    rgba(14, 14, 12, 0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero-cta {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--accent-dim);
  padding: 0.9rem 2.5rem;
  color: var(--text-primary);
  transition:
    background 0.4s,
    color 0.4s,
    border-color 0.4s;
  font-weight: 300;
}
.hero-cta:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

/* ═════════════════════ BRAND STATEMENT ═════════════════════ */
#brand-statement {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 750px;
  margin: 0 auto 1.5rem;
}
.brand-attr {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 300;
}

/* ═════════════════════ ROOM DIVIDER ═════════════════════ */
.room-divider {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
}
.room-divider h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.room-divider-text {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═════════════════════ COLLECTIONS ═════════════════════ */
#collections {
  padding: 0;
}
#collections > .container {
  padding: 6rem 2rem 3rem;
}
.section-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.section-intro h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

/* ── Collection Banners ── */
.collection-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s var(--ease);
}
.collection-banner:hover .banner-bg {
  transform: scale(1.04);
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22, 22, 20, 0.25) 0%,
    rgba(22, 22, 20, 0.6) 50%,
    rgba(22, 22, 20, 0.8) 100%
  );
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 2rem;
}
.banner-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 300;
}
.banner-content h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.banner-description {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 241, 234, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.banner-lines {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 300;
}

.collection-block {
  padding: 6rem 2rem;
  border-bottom: 1px solid var(--border);
}
.collection-block:nth-child(even) {
  background: var(--bg-elevated);
}

.collection-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}
.collection-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 300;
}
.collection-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.collection-narrative {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Sub-Collections ── */
.sub-collection {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.sub-collection:last-child {
  margin-bottom: 0;
}

.sub-collection h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.sub-narrative {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── Piece Cards Grid ── */
.pieces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.piece-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.3s var(--ease);
}
.piece-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-3px);
}
.piece-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f5f3ef;
  position: relative;
}
.piece-img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid var(--border);
}
.piece-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  display: block;
  background: #f5f3ef;
  border-bottom: 1px solid var(--border);
  padding: 0.8rem;
}
.piece-info {
  padding: 1.2rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.piece-info h4 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.piece-code {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 300;
}
.piece-material {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 300;
}
.piece-dims {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 300;
}
.piece-price {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  font-weight: 300;
}

/* ═════════════════════ ABOUT ═════════════════════ */
#about {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 300;
}
.about-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.about-text p {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about-tagline {
  font-style: italic;
  color: var(--accent) !important;
  margin-top: 0.5rem;
}
.about-visual-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(
    160deg,
    var(--bg-card) 0%,
    var(--bg-hover) 50%,
    var(--bg-elevated) 100%
  );
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-visual-placeholder {
    max-height: 350px;
  }
}

/* ═════════════════════ CARE ═════════════════════ */
#care {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}
#care h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
#care p {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

/* ═════════════════════ CONTACT ═════════════════════ */
#contact {
  padding: 7rem 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info-block h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-link {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 0.2rem;
  transition:
    color 0.3s,
    border-color 0.3s;
  font-weight: 300;
  display: inline-block;
  width: fit-content;
}
.contact-link:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.location h3 {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.location p {
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ═════════════════════ FOOTER ═════════════════════ */
#site-footer {
  padding: 4rem 2rem 2rem;
  background: var(--bg-primary);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
}
.footer-tagline {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0.5rem 0 2rem;
  font-weight: 300;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-nav a {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-copy {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-weight: 300;
}

/* ═════════════════════ RESPONSIVE ═════════════════════ */

/* ── TABLET (≤ 768px) ── */
@media (max-width: 768px) {
  .pieces-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .collection-block {
    padding: 3.5rem 1.5rem;
  }
  .collection-header h2 {
    font-size: 1.6rem;
  }
  .collection-narrative {
    font-size: 0.9rem;
  }
  #hero {
    min-height: 500px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
  }
  #brand-statement {
    padding: 3.5rem 1.5rem;
  }
  .brand-quote {
    font-size: 1.1rem;
  }
  .footer-nav {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── PHONE (≤ 600px) ── */
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  .pieces-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .piece-card {
    max-width: 100%;
  }
  .piece-card img {
    aspect-ratio: 3/2;
    padding: 1rem;
  }
  .piece-img-placeholder {
    aspect-ratio: 3/2;
  }
  .piece-info {
    padding: 1rem;
  }
  .piece-info h4 {
    font-size: 0.85rem;
  }
  .collection-block {
    padding: 3rem 1rem;
  }
  .collection-header {
    margin-bottom: 2rem;
  }
  .collection-header h2 {
    font-size: 1.3rem;
  }
  .collection-narrative {
    font-size: 0.85rem;
  }
  .sub-collection h3 {
    font-size: 0.9rem;
  }
  .sub-narrative {
    font-size: 0.82rem;
  }

  /* Hero */
  #hero {
    min-height: 85vh;
    height: 85vh;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }
  .hero-eyebrow {
    font-size: 0.6rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    max-width: 95%;
  }
  .hero-cta {
    font-size: 0.6rem;
    padding: 0.9rem 2rem;
  }

  /* Brand Statement */
  #brand-statement {
    padding: 3rem 1.2rem;
  }
  .brand-quote {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Header */
  #site-header {
    padding: 1rem 1rem;
  }
  #site-header.scrolled {
    padding: 0.6rem 1rem;
  }
  .logo {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
  }

  /* About */
  #about {
    padding: 3rem 1rem;
  }
  .about-text h2 {
    font-size: 1.3rem;
  }
  .about-text p {
    font-size: 0.85rem;
  }
  .about-visual-placeholder {
    max-height: 280px;
  }

  /* Care */
  #care {
    padding: 3rem 1rem;
  }
  #care h2 {
    font-size: 1.2rem;
  }
  #care p {
    font-size: 0.85rem;
  }

  /* Contact */
  #contact {
    padding: 3.5rem 1rem;
  }
  .contact-info-block h2 {
    font-size: 1.2rem;
  }

  /* Footer */
  #site-footer {
    padding: 2.5rem 1rem 1.5rem;
  }
  .footer-nav {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-nav a {
    font-size: 0.55rem;
  }
}

/* ── SMALL PHONE (≤ 400px) ── */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.78rem;
  }
  .collection-header h2 {
    font-size: 1.1rem;
  }
  .piece-info h4 {
    font-size: 0.78rem;
  }
  .piece-code,
  .piece-material,
  .piece-dims,
  .piece-price {
    font-size: 0.58rem;
  }
  .footer-nav {
    gap: 0.8rem;
  }
}
