:root {
  --ink: #050505;
  --ink-soft: #343434;
  --coal: #0b0d0b;
  --night: #111713;
  --paper: #f7f7f5;
  --paper-bright: #ffffff;
  --stone: #efefec;
  --muted: #666862;
  --line: rgba(5, 5, 5, 0.17);
  --line-light: rgba(244, 242, 236, 0.2);
  --wine: #6e2530;
  --blue: #273b64;
  --font-display: "Newsreader", "Bodoni 72", Didot, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-brand: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --content: 1540px;
  --gutter: clamp(20px, 4vw, 68px);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper-bright);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.mobile-nav-open,
body.legal-drawer-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, textarea { border-radius: 0; font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-optical-sizing: auto;
  font-synthesis: none;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 em,
h2 em,
h3 em {
  font-weight: inherit;
  font-style: italic;
}

main { overflow: clip; }
[id] { scroll-margin-top: 84px; }

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  padding: 20px var(--gutter);
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 0.45s var(--ease), background-color 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
}

.site-header.is-compact {
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom-color: rgba(5, 5, 5, 0.14);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--content));
  margin-inline: auto;
}

.logo,
.footer-logo {
  display: block;
  font-family: var(--font-brand);
  line-height: 0;
}

.logo { width: clamp(148px, 11vw, 176px); }
.footer-logo { width: clamp(180px, 16vw, 248px); }
.logo img,
.footer-logo img { width: 100%; height: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 12px;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding-block: 7px;
  color: currentColor;
  opacity: 0.72;
  transition: opacity 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.42s var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav .header-cta { opacity: 1; }

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0.82;
}

.mobile-nav-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: top 0.42s var(--ease), transform 0.42s var(--ease), opacity 0.28s ease;
}

.mobile-nav-toggle span:nth-child(1) { top: 15px; }
.mobile-nav-toggle span:nth-child(2) { top: 21px; }
.mobile-nav-toggle span:nth-child(3) { top: 27px; }
.mobile-nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(38deg); }
.mobile-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-38deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  width: 100vw;
  height: 100dvh;
  place-items: center;
  padding: 104px 24px 44px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(30px) saturate(0.72);
  -webkit-backdrop-filter: blur(30px) saturate(0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list {
  display: grid;
  gap: clamp(18px, 4.5vh, 34px);
  width: min(100%, 560px);
  text-align: center;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: clamp(34px, 8vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--mobile-delay, 0ms);
}

.mobile-nav.is-open a { opacity: 1; transform: translateY(0); }

.v2-container,
.section-inner {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

.v2-kicker,
.eyebrow,
.hero-kicker {
  display: block;
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: 600;
}

.v2-kicker { margin-bottom: clamp(18px, 2.1vw, 32px); }

.v2-kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: 0.28em;
  background: currentColor;
  opacity: 0.45;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 0 var(--gutter);
  color: var(--paper-bright);
}

.hero-media,
.hero-shade { position: absolute; inset: 0; }

.hero-media {
  z-index: -3;
  overflow: hidden;
  background: var(--coal);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--hero-offset, 0), 0) scale(1.035);
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(ellipse at center, rgba(7, 7, 6, 0.3) 0%, rgba(7, 7, 6, 0.13) 56%, rgba(7, 7, 6, 0.04) 82%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.07) 0%, rgba(7, 7, 6, 0.04) 42%, rgba(7, 7, 6, 0.3) 100%);
}

.hero-content {
  position: relative;
  top: 4px;
  width: min(100%, 1120px);
  margin-inline: auto;
  text-align: center;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.34);
}

.hero-kicker {
  margin-bottom: 24px;
  color: rgba(250, 249, 245, 0.68);
}

.hero h1 {
  max-width: 1100px;
  margin: 0 auto -4px;
  font-family: var(--font-display);
  font-size: clamp(56px, 4.85vw, 80px);
  font-weight: 300;
  font-optical-sizing: auto;
  font-synthesis: none;
  line-height: 0.98;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .hero h1 {
    position: relative;
    top: 22px;
    white-space: nowrap;
  }
}

.hero-copy {
  max-width: 690px;
  margin: clamp(26px, 2.8vw, 40px) auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(38px, 4vw, 58px);
}

.hero-actions .button-primary {
  min-height: 58px;
  border-radius: 999px;
  padding: 18px 42px 17px;
  box-shadow: none;
  font-size: 11px;
  font-weight: 600;
  text-shadow: none;
  text-transform: uppercase;
}

.hero-actions .button-primary::after { content: none; }

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 22px 13px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.button::after {
  content: "→";
  margin-left: 24px;
  transition: transform 0.4s var(--ease);
}

.button:hover::after,
.button:focus-visible::after { transform: translateX(5px); }
.button-primary { background: var(--paper-bright); color: var(--ink); }
.button-primary:hover,
.button-primary:focus-visible { background: #fff; }
.button-secondary { border-color: rgba(250, 249, 245, 0.58); color: var(--paper-bright); }
.button-secondary:hover,
.button-secondary:focus-visible { border-color: var(--paper-bright); background: rgba(250, 249, 245, 0.08); }

.v2-selection {
  padding: clamp(96px, 9vw, 150px) 0 clamp(88px, 8vw, 132px);
  background: #fff;
}

.v2-section-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 1.5vw, 24px);
  align-items: end;
  margin-bottom: clamp(48px, 5vw, 78px);
}

.v2-section-head > div { grid-column: 1 / span 9; }

.v2-section-head h2 {
  max-width: 1050px;
  font-size: clamp(52px, 5.7vw, 90px);
  line-height: 0.98;
}

.v2-section-head > p {
  grid-column: 10 / span 3;
  width: min(100%, 270px);
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.rug-selection-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, clamp(38px, 5.05vw, 76px));
  gap: clamp(8px, 0.8vw, 14px);
  width: min(100%, 1320px);
  margin-inline: auto;
}

.rug-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--stone);
}

.rug-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.rug-shot:hover img { transform: scale(1.018); }

.rug-shot figcaption {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 12px;
  color: rgba(250, 249, 245, 0.94);
  font-size: 10px;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.86);
}

.rug-shot-dominant { grid-column: 1 / span 8; grid-row: 1 / span 5; }
.rug-shot-historic { grid-column: 9 / span 4; grid-row: 1 / span 8; }
.rug-shot-contemporary { grid-column: 1 / span 4; grid-row: 6 / span 7; }
.rug-shot-detail { grid-column: 5 / span 4; grid-row: 6 / span 3; }
.rug-shot-artisanal { grid-column: 5 / span 8; grid-row: 9 / span 4; }
.rug-shot-dominant img { object-position: 50% 68%; }
.rug-shot-historic img { object-position: 50% 58%; }
.rug-shot-contemporary img { object-position: 52% 58%; }
.rug-shot-artisanal img { object-position: 50% 66%; }
.rug-shot-detail img { object-position: 52% 52%; }

.rug-editorial {
  position: relative;
  min-height: clamp(560px, 78svh, 900px);
  overflow: hidden;
  background: var(--stone);
}

.rug-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 8, 7, 0.48) 0%, rgba(7, 8, 7, 0.06) 48%, transparent 72%);
}

.rug-editorial > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}

.rug-editorial > p {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: calc(100% - clamp(44px, 10vw, 152px));
  translate: -50% -50%;
  max-width: 1120px;
  color: var(--paper-bright);
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.rug-editorial > p span {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
  text-decoration-skip-ink: auto;
}

.v2-epoch {
  position: relative;
  display: grid;
  min-height: max(760px, 92svh);
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.v2-corvale-media,
.v2-corvale-shade { position: absolute; inset: 0; }
.v2-corvale-media {
  z-index: 0;
  left: 49%;
  overflow: hidden;
}

.v2-corvale-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.v2-corvale-shade {
  z-index: 1;
  left: 49%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 18%);
}

.v2-corvale-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: inherit;
  padding-block: clamp(92px, 8vw, 132px);
}

.v2-corvale-content {
  grid-column: 1 / span 6;
  width: min(100%, 690px);
  padding-right: clamp(22px, 4vw, 68px);
}

.v2-corvale-content .v2-kicker { color: var(--muted); }

.v2-corvale-content h2 {
  max-width: 650px;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.2vw, 68px);
  font-weight: 300;
  line-height: 1;
  text-wrap: balance;
}

.v2-corvale-copy {
  width: min(100%, 720px);
  margin-top: clamp(34px, 4vw, 58px);
}

.v2-corvale-primary {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  text-wrap: pretty;
}

.v2-corvale-secondary {
  max-width: 620px;
  margin-top: clamp(22px, 2.2vw, 32px);
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.72;
  text-wrap: pretty;
}

.v2-houses {
  padding: clamp(92px, 9vw, 148px) 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.v2-houses-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}

.v2-houses-main {
  min-height: clamp(560px, 62vw, 780px);
  max-height: 780px;
  overflow: hidden;
}

.v2-houses-main img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
  transition: transform 1.2s var(--ease);
}

.v2-houses-main:hover img { transform: scale(1.014); }
.v2-houses-lead { padding-right: clamp(0px, 2vw, 30px); }

.v2-houses-lead h2 {
  max-width: 640px;
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.99;
}

.v2-houses-copy {
  display: grid;
  gap: 18px;
  max-width: 560px;
  padding-top: clamp(28px, 3.2vw, 46px);
}

.v2-houses-copy p {
  color: #3f413d;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.68;
}

.v2-houses-copy p + p {
  max-width: 500px;
  color: #777b75;
  font-size: 14px;
}

.v2-founders {
  display: grid;
  grid-template-columns: minmax(520px, 1.02fr) minmax(0, 0.98fr);
  min-height: max(760px, 96svh);
  background: #1b211d;
  color: var(--paper-bright);
}

.v2-founders-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: inherit;
  overflow: hidden;
}

.v2-founders-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 33, 29, 0.2) 0%, transparent 30%);
}

.v2-founders-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
  filter: brightness(1.13) saturate(1.03);
  transition: transform 1.3s var(--ease);
}

.v2-founders:hover .v2-founders-media img { transform: scale(1.014); }

.v2-founders-content {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 7vw, 112px) clamp(42px, 7vw, 118px);
}

.v2-founders-content h2 {
  max-width: 650px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 300;
  line-height: 1;
}

.v2-founders-intro {
  max-width: 600px;
  margin-top: clamp(24px, 2.7vw, 38px);
  color: rgba(250, 249, 245, 0.7);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.68;
}

.v2-founder-tenure {
  display: flex;
  align-items: flex-end;
  gap: clamp(20px, 2.5vw, 38px);
  margin-top: clamp(30px, 3.4vw, 50px);
}

.v2-founder-number {
  font-family: var(--font-display);
  font-size: clamp(132px, 12vw, 204px);
  line-height: 0.72;
}

.v2-founder-tenure p {
  padding-bottom: clamp(5px, 0.7vw, 12px);
  font-family: var(--font-display);
  font-size: clamp(31px, 3vw, 49px);
  line-height: 0.98;
}

.v2-founder-tenure p span { display: block; }

.v2-founders-commission {
  max-width: 560px;
  margin-top: clamp(24px, 2.4vw, 34px);
  color: rgba(250, 249, 245, 0.92);
  font-family: var(--font-body);
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 500;
  line-height: 1.3;
}

.v2-founders-note {
  max-width: 540px;
  margin-top: 12px;
  color: rgba(250, 249, 245, 0.5);
  font-size: 13px;
  line-height: 1.65;
}

.v2-founders .button {
  align-self: flex-start;
  margin-top: clamp(28px, 3vw, 44px);
}

.v2-final {
  position: relative;
  display: grid;
  min-height: clamp(600px, 78svh, 900px);
  place-items: center;
  overflow: hidden;
  color: var(--paper-bright);
  text-align: center;
}

.v2-final > img,
.v2-final::after { position: absolute; inset: 0; }

.v2-final > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  transition: transform 1.4s var(--ease);
}

.v2-final::after {
  content: "";
  background: linear-gradient(180deg, rgba(7, 8, 7, 0.18), rgba(7, 8, 7, 0.54));
}

.v2-final:hover > img { transform: scale(1.012); }

.v2-final-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1040px);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.28);
}

.v2-final h2 {
  font-size: clamp(56px, 6.6vw, 102px);
  line-height: 0.97;
}

.v2-final p {
  margin-top: 24px;
  color: rgba(250, 249, 245, 0.82);
  font-size: 15px;
}

.v2-final .button { margin-top: 34px; text-shadow: none; }

.v2-faq {
  padding: clamp(88px, 8vw, 132px) 0;
  background: #fff;
}

.v2-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 180px);
  align-items: start;
}

.v2-faq h2 {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.9vw, 78px);
  font-weight: 300;
  line-height: 1;
}

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 50px 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.16;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.4s var(--ease);
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list details p {
  max-width: 720px;
  padding: 0 54px 30px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact {
  padding: clamp(92px, 9vw, 150px) var(--gutter);
  background: #f4f4f1;
  color: var(--ink);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 8vw, 128px);
  align-items: start;
}

.contact-copy { position: sticky; top: 128px; }
.eyebrow { margin-bottom: 24px; color: var(--muted); }

.contact .section-title {
  max-width: 650px;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.9vw, 78px);
  font-weight: 300;
  line-height: 1;
}

.contact .section-intro {
  max-width: 540px;
  margin-top: 30px;
  color: #62665f;
  font-size: 16px;
  line-height: 1.72;
}

.contact-meta {
  display: grid;
  gap: 9px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #777b74;
  font-size: 11px;
}

.founder-note-personal {
  max-width: 760px;
  margin-bottom: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}

.founder-note-copy {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  max-width: 740px;
}

.founder-note-copy p {
  max-width: 700px;
  color: #555952;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.55vw, 26px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
}

.founder-signature {
  display: grid;
  gap: 3px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}

.founder-signature strong { color: var(--ink); font-weight: 500; }
.founder-signature a:hover { color: var(--wine); }

#corvale-application-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 3vw, 46px);
  row-gap: 28px;
}

.field { display: grid; gap: 8px; }

.field-wide,
.form-privacy,
.form-status,
.form-footer { grid-column: 1 / -1; }

.field label { color: #696d66; font-size: 11px; }

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 24, 20, 0.32);
  padding: 9px 0 13px;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.3s ease;
}

.field input:focus,
.field textarea:focus { border-color: var(--ink); outline: 0; }
.field textarea { min-height: 140px; resize: vertical; }

.field-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-privacy,
.form-note {
  max-width: 620px;
  color: #777b74;
  font-size: 11px;
  line-height: 1.62;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-status.is-visible { opacity: 1; }
.form-status.is-success { color: #355c3e; }
.form-status.is-error { color: #9c3436; }

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.form-footer .button-primary { background: var(--ink); color: var(--paper-bright); }
.form-footer .button-primary:hover,
.form-footer .button-primary:focus-visible { background: var(--wine); }
.form-footer .button:disabled { cursor: wait; opacity: 0.58; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(480px, 1fr);
  gap: clamp(70px, 12vw, 190px);
  padding: clamp(72px, 9vw, 130px) var(--gutter);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.footer-brand,
.footer-links { width: 100%; max-width: 740px; }

.footer-brand p {
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-column > * {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.footer-label { margin-bottom: 9px; color: var(--ink); font-weight: 600; }

.footer-column a,
.footer-column button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.footer-column a:hover,
.footer-column button:hover { color: var(--ink); }

.legal-drawer-root {
  position: fixed;
  inset: 0;
  z-index: 150;
  visibility: hidden;
  pointer-events: none;
}

.legal-drawer-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 6, 5, 0.62);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.5s var(--ease);
}

.legal-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(590px, calc(100vw - 28px));
  height: 100dvh;
  overflow-y: auto;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
}

.legal-drawer-open .legal-drawer-root { visibility: visible; pointer-events: auto; }
.legal-drawer-open .legal-drawer-overlay { opacity: 1; }
.legal-drawer-open .legal-drawer { transform: translateX(0); }

.legal-drawer-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(14px);
}

.legal-drawer-kicker { font-family: var(--font-display); }

.legal-drawer-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
}

.legal-drawer-content {
  padding: clamp(54px, 8vw, 90px) clamp(24px, 5vw, 56px) 90px;
}

.legal-drawer-content h2 {
  margin-bottom: 70px;
  font-size: clamp(48px, 8vw, 76px);
}

.legal-section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-section h3 { margin-bottom: 18px; font-size: 26px; }

.legal-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-section p + p { margin-top: 10px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1120px) {
  .nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .site-header:has(.mobile-nav.is-open) { color: var(--ink); }

  .v2-section-head,
  .v2-faq-grid,
  .contact-panel { grid-template-columns: 1fr; }

  .v2-section-head { gap: 24px; }

  .v2-section-head > div,
  .v2-section-head > p { grid-column: 1; }

  .v2-section-head > p { width: min(100%, 430px); }
  .v2-corvale-content { grid-column: 1 / span 6; }

  .v2-houses-spread {
    grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
    gap: clamp(32px, 5vw, 60px);
  }

  .v2-houses-main { min-height: clamp(500px, 66vw, 700px); }
  .v2-founders { grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr); }

  .v2-faq-grid,
  .contact-panel { gap: 64px; }

  .contact-copy { position: static; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --gutter: clamp(18px, 5vw, 34px); }

  .site-header { padding-top: 16px; padding-bottom: 16px; }
  .logo { width: 142px; }

  .hero {
    min-height: 100dvh;
    padding: 0 var(--gutter);
  }

  .hero-media img { object-position: 43% center; }

  .hero-shade {
    background:
      radial-gradient(ellipse at center, rgba(7, 7, 6, 0.3) 0%, rgba(7, 7, 6, 0.15) 58%, rgba(7, 7, 6, 0.07) 82%),
      linear-gradient(180deg, rgba(7, 7, 6, 0.08) 0%, rgba(7, 7, 6, 0.08) 44%, rgba(7, 7, 6, 0.36) 100%);
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(47px, 8.5vw, 64px);
  }

  .hero-copy { max-width: 560px; }
  .v2-selection { padding-block: 84px 94px; }
  .v2-section-head h2 { font-size: clamp(50px, 8.4vw, 70px); }

  .rug-selection-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(15, clamp(42px, 8.4vw, 70px));
  }

  .rug-shot-dominant { grid-column: 1 / span 8; grid-row: 1 / span 5; }
  .rug-shot-historic { grid-column: 1 / span 4; grid-row: 6 / span 6; }
  .rug-shot-contemporary { grid-column: 5 / span 4; grid-row: 6 / span 6; }
  .rug-shot-detail { grid-column: 1 / span 3; grid-row: 12 / span 4; }
  .rug-shot-artisanal { grid-column: 4 / span 5; grid-row: 12 / span 4; }
  .rug-editorial { min-height: 70svh; }
  .v2-epoch {
    min-height: 0;
    padding-bottom: min(70vw, 620px);
  }

  .v2-corvale-media {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: min(70vw, 620px);
  }

  .v2-corvale-shade {
    display: none;
  }

  .v2-corvale-layout {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    min-height: 0;
    padding-block: 100px;
  }

  .v2-corvale-content {
    grid-column: 1 / span 7;
    padding-right: 0;
  }
  .v2-corvale-content h2 { font-size: clamp(48px, 7.6vw, 64px); }
  .v2-houses { padding-block: 82px; }

  .v2-houses-spread {
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
  }

  .v2-houses-main { min-height: clamp(460px, 70vw, 610px); }
  .v2-houses-lead h2 { font-size: clamp(44px, 6.2vw, 56px); }

  .v2-founders {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .v2-founders-content {
    grid-column: 1;
    grid-row: 1;
    padding: 76px var(--gutter);
  }

  .v2-founders-media {
    grid-column: 1;
    grid-row: 2;
    min-height: min(96vw, 680px);
  }

  .v2-final { min-height: 72svh; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .hero-kicker { margin-bottom: 18px; }

  .hero h1 { max-width: 430px; font-size: clamp(44px, 12vw, 60px); }

  .hero-copy {
    max-width: 360px;
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.58;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 36px;
  }

  .hero-actions .button { width: min(100%, 300px); }
  .v2-section-head { margin-bottom: 34px; }

  .v2-section-head h2,
  .v2-houses-lead h2,
  .v2-founders-content h2,
  .v2-faq h2,
  .contact .section-title { font-size: clamp(44px, 12vw, 58px); }

  .rug-selection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(55px, 17vw, 75px);
  }

  .rug-shot-dominant { grid-column: 1 / span 4; grid-row: span 4; }
  .rug-shot-historic { grid-column: 1 / span 2; grid-row: span 5; }
  .rug-shot-contemporary { grid-column: 3 / span 2; grid-row: span 5; }
  .rug-shot-detail { grid-column: 1 / span 4; grid-row: span 3; }
  .rug-shot-artisanal { grid-column: 1 / span 4; grid-row: span 4; }
  .rug-editorial { min-height: 66svh; }
  .rug-editorial > img { object-position: 58% center; }
  .rug-editorial > p { font-size: clamp(38px, 11vw, 54px); }
  .v2-corvale-media img { object-position: 62% center; }
  .v2-epoch { padding-bottom: 86vw; }
  .v2-corvale-media { height: 86vw; }

  .v2-corvale-layout {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-block: 82px;
  }

  .v2-corvale-content { grid-column: 1 / span 4; }
  .v2-corvale-content h2 { font-size: clamp(44px, 12vw, 58px); }
  .v2-corvale-copy { margin-top: 30px; }
  .v2-corvale-primary { font-size: 20px; }
  .v2-corvale-secondary { margin-top: 20px; font-size: 14px; }

  .v2-houses-spread {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .v2-houses-main { min-height: min(118vw, 620px); }
  .v2-houses-lead { padding: 0; }
  .v2-houses-copy { padding-top: 26px; }
  .v2-founders-content { padding-block: 64px; }

  .v2-founder-tenure {
    gap: 15px;
    margin-top: 32px;
  }

  .v2-founder-number { font-size: clamp(122px, 36vw, 156px); }

  .v2-founder-tenure p {
    padding-bottom: 5px;
    font-size: clamp(26px, 8vw, 35px);
  }

  .v2-founders-media { min-height: 116vw; }
  .v2-final h2 { font-size: clamp(46px, 12vw, 62px); }

  .v2-faq-grid,
  .contact-panel { gap: 48px; }

  #corvale-application-form { grid-template-columns: 1fr; }

  .field-wide,
  .form-privacy,
  .form-status,
  .form-footer { grid-column: 1; }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr; }
  .legal-drawer { width: 100vw; }
}

@media (max-width: 1120px) and (max-height: 620px) {
  .hero {
    min-height: 100dvh;
    padding: 0 var(--gutter);
  }

  .hero h1 { max-width: 720px; font-size: clamp(40px, 9vh, 58px); }
  .hero-copy { max-width: 600px; margin-top: 18px; line-height: 1.45; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button-primary { min-height: 50px; padding-block: 14px 13px; }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal { opacity: 1; transform: none; }
}
