/* ===================================================
   PROVENANCE — Authenticated Heritage
   Quiet Luxury: Delvaux · Valextra · Loro Piana · Moynat
   =================================================== */

:root {
  --ivory: #F4EFE6;
  --ivory-deep: #EBE4D8;
  --ivory-card: #FAF7F2;
  --ivory-pure: #FDFCF9;
  --slate: #1A1916;
  --slate-mid: #2C2A27;
  --slate-soft: #4B4843;
  --stone: #8A8278;
  --stone-light: #B5AFA8;
  --parchment: #D6CCB8;
  --forest: #2C3D2E;
  --forest-light: #3D5240;
  --gold: #A8864A;
  --gold-warm: #C4A96A;
  --gold-muted: #7A6535;
  --burgundy: #6B2737;
  --burgundy-l: #8B3347;
  --rule: rgba(26, 25, 22, 0.10);
  --rule-gold: rgba(168, 134, 74, 0.28);
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --gradient-gold: linear-gradient(135deg, #A8864A 0%, #C4A96A 50%, #8C7040 100%);
  --gradient-hero: linear-gradient(180deg, rgba(26, 25, 22, 0.15) 0%, rgba(26, 25, 22, 0.60) 50%, rgba(26, 25, 22, 0.92) 100%);
  --shadow-card: 0 1px 20px rgba(26, 25, 22, 0.06);
  --shadow-lift: 0 4px 40px rgba(26, 25, 22, 0.12);
  --transition: 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--slate);
  line-height: 1.75;
  overflow-x: hidden;
  font-weight: 300;
  font-size: 15px;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
}

.btn-primary {
  background: var(--slate);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--ivory-pure);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(244, 239, 230, 0.38);
}

.btn-ghost:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--rule-gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  color: var(--slate);
  margin-bottom: 18px;
}

.section-desc {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.88rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(244, 239, 230, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  box-shadow: 0 1px 12px rgba(26, 25, 22, 0.05);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Wordmark logo — text-only, Valextra style */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.logo-wordmark {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.20em;
  color: var(--ivory);
  transition: var(--transition);
  line-height: 1;
}

.navbar.scrolled .logo-wordmark {
  color: var(--slate);
}

.logo-rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  transition: var(--transition);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  transition: var(--transition);
}

.navbar.scrolled .logo-sub {
  color: var(--gold-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.65);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--ivory);
}

.navbar.scrolled .nav-link {
  color: var(--stone);
}

.navbar.scrolled .nav-link:hover {
  color: var(--slate);
}

.nav-btn {
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory) !important;
  border: 1px solid rgba(244, 239, 230, 0.30);
  transition: var(--transition);
  border-radius: 0;
}

.nav-btn:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm) !important;
}

.navbar.scrolled .nav-btn {
  color: var(--slate) !important;
  border-color: var(--rule);
}

.navbar.scrolled .nav-btn:hover {
  color: var(--gold-muted) !important;
  border-color: var(--rule-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--slate);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--slate);
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
  filter: grayscale(10%) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-vert-rule {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(168, 134, 74, 0.20) 30%, rgba(168, 134, 74, 0.20) 70%, transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 180px 40px 100px;
}

.hero-prelude {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.1s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.25s both;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(244, 239, 230, 0.58);
  margin-bottom: 48px;
  line-height: 2;
  font-weight: 300;
  max-width: 540px;
  letter-spacing: 0.02em;
  animation: fadeInUp 1s ease 0.45s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.65s both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(244, 239, 230, 0.28);
  font-family: var(--font-sans);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-indicator {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 3s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--ivory-pure);
  border-top: 1px solid var(--rule);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.manifesto-side {
  padding-top: 6px;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 1px solid var(--rule-gold);
}

.manifesto-text {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.90rem;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.manifesto-text em {
  font-style: italic;
  color: var(--slate-soft);
}

.manifesto-rule {
  width: 48px;
  height: 1px;
  background: var(--rule-gold);
  margin: 36px 0;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.m-stat {
  padding-right: 40px;
}

.m-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.m-stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: var(--stone-light);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.m-stat-div {
  width: 1px;
  height: 36px;
  background: var(--rule);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ===== COLLECTION ===== */
.collection {
  background: var(--ivory-deep);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--rule);
  width: fit-content;
  margin: 0 auto 64px;
}

.filter-btn {
  padding: 11px 24px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:last-child {
  border-right: none;
}

.filter-btn:hover {
  color: var(--slate);
  background: rgba(26, 25, 22, 0.03);
}

.filter-btn.active {
  color: var(--ivory);
  background: var(--slate);
}

/* Gallery grid — museum wall */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.piece-card {
  background: var(--ivory-card);
  transition: background var(--transition), box-shadow var(--transition);
  position: relative;
}

.piece-card:hover {
  background: var(--ivory-pure);
  box-shadow: var(--shadow-lift);
  z-index: 1;
}

.piece-card.hidden {
  display: none;
}

.piece-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ivory-deep);
}

.piece-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(8%);
}

.piece-card:hover .piece-img {
  transform: scale(1.03);
}

/* CSS color placeholder for mock product images */
.piece-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.piece-placeholder-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 300;
  opacity: 0.25;
  color: var(--ivory-pure);
}

.piece-img-neutral {
  background: linear-gradient(135deg, #D8D0C4, #EBE4D8);
}

.piece-img-warm {
  background: linear-gradient(135deg, #C8A870, #D4B88A);
}

.piece-img-forest {
  background: linear-gradient(135deg, #2C3D2E, #3D5240);
}

.piece-img-slate {
  background: linear-gradient(135deg, #1A1916, #2C2A27);
}

.piece-img-parchment {
  background: linear-gradient(135deg, #D6CCB8, #E2DAC8);
}

.piece-status {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ivory-pure);
  color: var(--slate);
  padding: 4px 12px;
}

.piece-house-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.70);
}

.piece-info {
  padding: 24px 28px 28px;
}

.piece-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.piece-year,
.piece-cond {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--stone-light);
  text-transform: uppercase;
}

.piece-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 6px;
  line-height: 1.3;
}

.piece-detail {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.piece-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.piece-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-muted);
}

.piece-btn {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid var(--rule);
  padding: 8px 18px;
  transition: var(--transition);
}

.piece-btn:hover {
  background: var(--slate);
  color: var(--ivory);
  border-color: var(--slate);
}

.piece-btn-reserved {
  color: var(--stone-light);
  cursor: default;
  border-style: dashed;
}

.piece-btn-reserved:hover {
  background: transparent;
  color: var(--stone-light);
  border-color: var(--rule);
  border-style: dashed;
}

.collection-footer {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.82rem;
  font-weight: 300;
}

.collection-footer a {
  color: var(--gold-muted);
  border-bottom: 1px solid var(--rule-gold);
}

/* ===== THE HOUSES ===== */
.houses {
  background: var(--slate);
  color: var(--ivory);
}

.houses .section-tag {
  color: var(--gold-warm);
}

.houses .section-title {
  color: var(--ivory);
}

.houses .section-desc {
  color: rgba(244, 239, 230, 0.45);
}

.houses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(244, 239, 230, 0.07);
}

.house-card {
  padding: 48px 36px 52px;
  border-right: 1px solid rgba(244, 239, 230, 0.07);
  transition: background var(--transition);
  position: relative;
}

.house-card:last-child {
  border-right: none;
}

.house-card:hover {
  background: rgba(244, 239, 230, 0.03);
}

.house-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.house-card:hover::after {
  transform: scaleX(1);
}

.house-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(168, 134, 74, 0.14);
  line-height: 1;
  margin-bottom: 28px;
}

.house-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 6px;
}

.house-year {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.house-desc {
  font-family: var(--font-sans);
  font-size: 0.80rem;
  color: rgba(244, 239, 230, 0.45);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 24px;
}

.house-note {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold-warm);
  opacity: 0.75;
}

/* ===== WHY PROVENANCE ===== */
.why {
  background: var(--ivory);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-image-col {
  position: relative;
}

.why-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.02);
}

.why-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--slate);
  padding: 20px 28px;
  box-shadow: var(--shadow-lift);
}

.badge-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.38);
  margin-bottom: 4px;
}

.badge-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-warm);
  font-weight: 400;
}

.why-content .section-tag {
  display: inline-block;
}

.why-content .section-title {
  text-align: left;
  margin-top: 16px;
}

.why-desc {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.88rem;
  margin-bottom: 36px;
  line-height: 2;
  font-weight: 300;
}

.why-points {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  transition: var(--transition);
}

.why-point:hover .point-icon {
  background: var(--slate);
  color: var(--gold-warm);
}

.point-icon {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-point h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 5px;
}

.why-point p {
  font-family: var(--font-sans);
  font-size: 0.80rem;
  color: var(--stone);
  line-height: 1.85;
  font-weight: 300;
}

/* ===== PROCESS (HOW IT WORKS) ===== */
.process {
  background: var(--ivory-deep);
}

.process .section-title {
  color: var(--slate);
}

.process-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--rule);
  width: fit-content;
  margin: 0 auto 64px;
}

.tab-btn {
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn:hover {
  color: var(--slate);
}

.tab-btn.active {
  background: var(--slate);
  color: var(--ivory);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: flex;
}

.process-steps {
  border: 1px solid var(--rule);
  overflow: hidden;
}

.tab-content {
  align-items: stretch;
}

.step {
  flex: 1;
  text-align: center;
  padding: 52px 28px;
  border-right: 1px solid var(--rule);
  transition: background var(--transition);
}

.step:last-child {
  border-right: none;
}

.step:hover {
  background: rgba(26, 25, 22, 0.025);
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(168, 134, 74, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-muted);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--slate);
}

.step p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.9;
  font-weight: 300;
}

/* ===== ACCESS ===== */
.access {
  background: var(--slate);
  color: var(--ivory);
}

.access .section-tag {
  color: var(--gold-warm);
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.access-desc {
  font-family: var(--font-sans);
  color: rgba(244, 239, 230, 0.46);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.access .section-title {
  color: var(--ivory);
  font-style: italic;
  text-align: left;
  margin-bottom: 20px;
}

.access .section-tag {
  margin-bottom: 16px;
}

.access-ethos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ethos-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.80rem;
  color: rgba(244, 239, 230, 0.50);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.ethos-mark {
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Access form */
.access-form-wrap {
  background: var(--ivory);
  padding: 52px 44px;
}

.form-header {
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}

.form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 6px;
}

.form-header p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--stone);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--slate);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone-light);
}

.form-group select {
  cursor: pointer;
  color: var(--stone-light);
}

.form-group select.has-value {
  color: var(--slate);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: none;
  display: block;
  line-height: 1.75;
}

.form-submit {
  width: 100%;
  justify-content: center;
  background: var(--slate);
  color: var(--ivory);
  padding: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  margin-top: 10px;
  transition: background var(--transition), color var(--transition);
}

.form-submit:hover {
  background: var(--gold);
  color: var(--ivory-pure);
}

.form-success {
  display: none;
  text-align: center;
  padding: 14px 20px;
  border: 1px solid var(--rule-gold);
  color: var(--gold-muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0E0D0C;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.05);
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(244, 239, 230, 0.60);
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 24px;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(244, 239, 230, 0.26);
  max-width: 260px;
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 22px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.30);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer-links a:hover {
  color: rgba(244, 239, 230, 0.70);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 230, 0.16);
}

.footer-iykyk {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(168, 134, 74, 0.30);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 42px;
  height: 42px;
  background: var(--slate);
  color: var(--gold-warm);
  border: 1px solid rgba(168, 134, 74, 0.30);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 999;
  border-radius: 0;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--ivory-pure);
  border-color: transparent;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .houses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .house-card {
    border-bottom: 1px solid rgba(244, 239, 230, 0.07);
  }

  .house-card:nth-child(2) {
    border-right: none;
  }

  .house-card:nth-child(3) {
    border-right: 1px solid rgba(244, 239, 230, 0.07);
  }

  .house-card:nth-child(4) {
    border-right: none;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .why-img-badge {
    right: 0;
  }

  .access-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

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

  .piece-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .tab-content.active {
    flex-direction: column;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .step:last-child {
    border-bottom: none;
  }

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

  .house-card {
    border-right: none !important;
  }

  .filter-bar {
    flex-wrap: wrap;
    width: 100%;
  }

  .filter-btn {
    flex: 1;
    min-width: 80px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 52px 0 40px;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .access-form-wrap {
    padding: 36px 24px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
  }

  .hero-content {
    padding: 140px 24px 80px;
  }

  .hero-vert-rule {
    display: none;
  }

  .hero-scroll {
    right: 24px;
  }

  .manifesto-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .m-stat-div {
    display: none;
  }

  .process-tabs {
    width: 100%;
  }

  .tab-btn {
    flex: 1;
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--slate);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 999;
  }

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

  .nav-link {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(244, 239, 230, 0.65);
    padding: 14px 28px;
    text-transform: none;
  }

  .nav-btn {
    font-size: 0.7rem;
    color: var(--gold-warm) !important;
    border-color: var(--rule-gold);
    margin-top: 12px;
  }
}