:root {
  --ivory: #f2eee6;
  --paper: #ded4c3;
  --ink: #1f1d1a;
  --charcoal: #272724;
  --deep: #151513;
  --brass: #8b7652;
  --muted: #7f7a71;
  --line: rgba(31, 29, 26, .18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

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

img { max-width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4vw;
  background: rgba(21, 21, 19, .82);
  backdrop-filter: blur(14px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -.04em;
}
.brand strong { display: block; letter-spacing: .16em; font-size: 12px; }
.brand small { display: block; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .1em; margin-top: 2px; }

.site-nav { display: flex; align-items: center; gap: 28px; font-size: 12px; }
.site-nav a { color: rgba(255,255,255,.78); transition: .2s; }
.site-nav a:hover { color: #fff; }
.nav-cta { border: 1px solid rgba(255,255,255,.35); padding: 11px 16px; }

.menu-toggle {
  display: none;
  color: white;
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 13px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 7vw 10vh;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,8,8,.82), rgba(8,8,8,.27)),
    radial-gradient(circle at 74% 44%, rgba(139,118,82,.23), transparent 27%),
    linear-gradient(135deg, #151515 0%, #302b24 50%, #0a0a09 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  min-width: 420px;
  min-height: 420px;
  right: 4vw;
  top: 16vh;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 18px rgba(255,255,255,.015),
    inset 0 0 0 48px rgba(255,255,255,.01),
    0 0 100px rgba(139,118,82,.16);
}

.hero::after {
  content: "";
  position: absolute;
  right: 22vw;
  top: 28vh;
  width: 1px;
  height: 28vw;
  background: linear-gradient(transparent, rgba(255,255,255,.6), transparent);
  transform: rotate(28deg);
  transform-origin: top;
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 600;
  color: var(--brass);
}
.hero .eyebrow { color: #cbb993; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; margin-top: 0; }

h1 { font-size: clamp(64px, 8vw, 132px); margin-bottom: 28px; letter-spacing: -.04em; }
h2 { font-size: clamp(46px, 5vw, 82px); letter-spacing: -.035em; margin-bottom: 26px; }
h3 { font-size: 34px; margin-bottom: 12px; }

.hero-copy { max-width: 660px; color: rgba(255,255,255,.7); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: none;
  font: 600 11px var(--sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  cursor: pointer;
}
.button-primary { background: var(--paper); color: var(--ink); }
.button-light { background: var(--ivory); color: var(--ink); }

.text-link, .case-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.text-link span, .case-link span { margin-left: 8px; }
.hero-caption {
  position: absolute;
  right: 4vw;
  bottom: 5vh;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section { padding: 120px 7vw; }

.statement {
  display: grid;
  grid-template-columns: 80px 1.25fr 1fr;
  gap: 50px;
  align-items: start;
}
.statement-number {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--paper);
}
.statement-copy { max-width: 520px; color: #5e5a53; font-size: 17px; }
.statement-copy p + p { margin-top: 26px; }

.collection-section { padding-top: 70px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading.narrow { max-width: 850px; }

.watch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.watch-card { border-top: 1px solid var(--line); padding-top: 16px; }
.watch-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,.32) 0 3%, transparent 4%),
    radial-gradient(circle at center, #5e5545 0 18%, #27231e 19% 26%, #0d0c0b 27% 34%, transparent 35%),
    linear-gradient(135deg, #b8aa92, #3d3932 58%, #171613);
}
.image-two {
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.2) 0 4%, transparent 5%),
    radial-gradient(circle at center, #b5a98f 0 17%, #403a31 18% 27%, #151513 28% 35%, transparent 36%),
    linear-gradient(135deg, #4b4338, #aea18b 50%, #2b2824);
}
.image-three {
  background:
    radial-gradient(circle at 50% 49%, rgba(255,255,255,.15) 0 2%, transparent 3%),
    radial-gradient(circle at center, #2d2d29 0 19%, #8f866f 20% 26%, #181817 27% 34%, transparent 35%),
    linear-gradient(140deg, #1f1f1d, #89806d 54%, #131312);
}
.watch-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(242,238,230,.88);
  padding: 7px 10px;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.watch-meta { display: flex; justify-content: space-between; gap: 12px; }
.watch-maker { margin: 0 0 5px; color: var(--brass); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.watch-card h3 { margin-bottom: 2px; }
.watch-year { color: var(--muted); font-size: 12px; }
.watch-description { color: #6a665f; font-size: 14px; min-height: 68px; }

.archive-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7vw;
  padding: 110px 7vw;
  background: var(--deep);
  color: white;
}
.archive-intro { max-width: 540px; }
.archive-intro p:not(.eyebrow) { color: rgba(255,255,255,.6); margin-bottom: 30px; }
.archive-ledger { border-top: 1px solid rgba(255,255,255,.16); }
.ledger-head, .archive-ledger a {
  display: grid;
  grid-template-columns: .8fr 1.5fr .8fr 1fr;
  gap: 15px;
  align-items: center;
}
.ledger-head { padding: 15px 0; color: rgba(255,255,255,.35); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.archive-ledger a { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.archive-ledger strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.archive-ledger em { color: #c3b089; font-style: normal; }

.feature-case {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 600px;
  background: #d7cfbf;
}
.feature-image {
  min-height: 600px;
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 70px),
    radial-gradient(circle at 52% 48%, #80715b 0 18%, #302b25 19% 26%, #0e0e0d 27% 35%, transparent 36%),
    linear-gradient(135deg, #7f7668, #2c2925 65%, #151412);
}
.case-stamp {
  position: absolute;
  left: 28px;
  bottom: 28px;
  border: 2px solid rgba(255,255,255,.45);
  color: rgba(255,255,255,.6);
  padding: 10px 14px;
  transform: rotate(-4deg);
  letter-spacing: .2em;
  font-size: 10px;
}
.feature-copy { padding: 70px 6vw; display: flex; flex-direction: column; justify-content: center; }
.feature-copy p:not(.eyebrow) { color: #5f5a51; }
.case-chapters { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; }
.case-chapters span { border: 1px solid rgba(31,29,26,.18); padding: 8px 10px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }

.workshop-section {
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 7vw;
  padding: 110px 7vw;
  background: #252522;
  color: white;
}
.workshop-copy { align-self: center; }
.workshop-copy p:not(.eyebrow) { color: rgba(255,255,255,.58); }
.workshop-copy blockquote {
  margin: 35px 0;
  padding-left: 22px;
  border-left: 1px solid var(--brass);
  color: #d8cfbe;
  font: 30px/1.25 var(--serif);
}
.light { color: white; }

.workshop-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 620px;
}
.workshop-image { background: linear-gradient(135deg, #46433d, #151514); }
.workshop-image.large {
  grid-row: 1 / 3;
  background:
    radial-gradient(circle at 50% 54%, #a79572 0 2%, transparent 3%),
    repeating-radial-gradient(circle at center, rgba(180,156,112,.18) 0 4px, transparent 5px 15px),
    linear-gradient(130deg, #4b4740, #171715 70%);
}
.detail-one {
  background:
    linear-gradient(35deg, transparent 45%, rgba(180,156,112,.35) 46% 49%, transparent 50%),
    linear-gradient(135deg, #1c1c1a, #6d665a);
}
.detail-two {
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #716957, #1b1b19);
}

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.about-visual { padding: 30px 0; }
.portrait-placeholder {
  aspect-ratio: 4/5;
  display: grid;
  place-items: end start;
  padding: 28px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.5)),
    radial-gradient(circle at 50% 25%, #8d8376 0 10%, transparent 11%),
    linear-gradient(135deg, #9d9588, #4d4943 55%, #201f1c);
}
.about-copy p:not(.eyebrow) { color: #625e56; font-size: 16px; }

.contact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  padding: 110px 7vw;
  background: #d9cfbc;
}
.contact-copy p:not(.eyebrow) { color: #5e584f; max-width: 480px; }
.watch-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.watch-form label { display: flex; flex-direction: column; gap: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.watch-form input, .watch-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(31,29,26,.35);
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  font: 15px var(--sans);
  outline: none;
}
.watch-form input:focus, .watch-form textarea:focus { border-color: var(--ink); }
.full { grid-column: 1 / -1; }
.upload-box {
  border: 1px dashed rgba(31,29,26,.35);
  padding: 20px;
}
.upload-box input { border: 0; }
.upload-box small { color: #6f685d; text-transform: none; letter-spacing: 0; }

.site-footer {
  padding: 55px 7vw 35px;
  background: #11110f;
  color: white;
}
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-brand p { color: rgba(255,255,255,.5); margin: 4px 0 0; font-family: var(--serif); font-size: 20px; }
.footer-links { display: flex; gap: 25px; flex-wrap: wrap; margin: 45px 0 35px; color: rgba(255,255,255,.55); font-size: 12px; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding-top: 25px; color: rgba(255,255,255,.3); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 30px 7vw;
    flex-direction: column;
    align-items: flex-start;
    background: #171715;
  }
  .site-nav.open { display: flex; }
  .statement, .archive-section, .feature-case, .workshop-section, .about-section, .contact-section {
    grid-template-columns: 1fr;
  }
  .statement { gap: 20px; }
  .watch-grid { grid-template-columns: 1fr 1fr; }
  .feature-image { min-height: 480px; }
  .workshop-grid { min-height: 520px; }
}

@media (max-width: 650px) {
  .site-header { padding: 15px 5vw; }
  .brand small { display: none; }
  .hero { padding: 130px 6vw 9vh; }
  .hero::before { right: -45vw; top: 24vh; }
  .hero-caption { display: none; }
  .section, .archive-section, .workshop-section, .contact-section { padding: 80px 6vw; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .watch-grid { grid-template-columns: 1fr; }
  .watch-description { min-height: auto; }
  .ledger-head { display: none; }
  .archive-ledger a { grid-template-columns: .7fr 1.3fr; }
  .archive-ledger a span:nth-of-type(2), .archive-ledger a em { text-align: right; }
  .feature-copy { padding: 50px 8vw; }
  .workshop-grid { grid-template-columns: 1fr; grid-template-rows: 360px 180px 180px; }
  .workshop-image.large { grid-row: auto; }
  .watch-form { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
}

.service-hero{min-height:88vh;display:flex;align-items:flex-end;padding:160px 7vw 10vh;color:#fff;background:linear-gradient(90deg,rgba(10,10,9,.92),rgba(10,10,9,.45)),radial-gradient(circle at 75% 45%,rgba(139,118,82,.25),transparent 25%),linear-gradient(135deg,#151513,#40382e 55%,#11110f)}
.service-hero-copy{max-width:850px}.service-hero-copy h1{margin-bottom:30px}.service-hero-copy>p:not(.eyebrow){max-width:700px;color:rgba(255,255,255,.7);font-size:18px}.service-hero-copy .service-note{color:#d2c19e;font-family:var(--serif);font-size:23px;margin:25px 0 35px}
.service-intro{display:grid;grid-template-columns:.6fr 1.2fr 1fr;gap:45px;align-items:start}.service-intro-copy{color:#625e56;font-size:16px}
.services-list{background:#1b1b19;color:#fff;padding:40px 7vw 90px}.service-row{display:grid;grid-template-columns:80px 1fr 1fr;gap:45px;padding:65px 0;border-top:1px solid rgba(255,255,255,.13)}.service-number{font:38px var(--serif);color:rgba(255,255,255,.2)}.service-row h2{font-size:clamp(42px,4vw,68px)}.service-details{color:rgba(255,255,255,.62)}.service-details ul{padding-left:18px;columns:2;column-gap:30px}.service-details li{margin-bottom:8px;break-inside:avoid}.preservation-callout{margin-top:30px;padding:22px;border-left:1px solid var(--brass);color:#d8cfbe}
.scope-section{padding:110px 7vw;max-width:1050px}.scope-section>p:not(.eyebrow){max-width:760px;color:#625e56;font-size:17px}.scope-emphasis{margin-top:35px;font:28px/1.3 var(--serif)!important;color:var(--ink)!important}.watch-form select{width:100%;border:none;border-bottom:1px solid rgba(31,29,26,.35);background:transparent;padding:12px 0;font:15px var(--sans);color:var(--ink)}
@media(max-width:980px){.service-intro,.service-row{grid-template-columns:1fr}.service-row{gap:15px}}
@media(max-width:650px){.service-hero{padding:140px 6vw 70px}.services-list,.scope-section{padding-left:6vw;padding-right:6vw}.service-details ul{columns:1}}


/* Service dossier form */
.service-request {
  grid-template-columns: .68fr 1.32fr;
  align-items: start;
}

.service-dossier {
  background: #eee7da;
  border: 1px solid rgba(31,29,26,.2);
  box-shadow: 0 22px 70px rgba(48,41,31,.08);
}

.dossier-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding: 32px 38px;
  border-bottom: 1px solid rgba(31,29,26,.18);
  background:
    linear-gradient(rgba(255,255,255,.13), rgba(255,255,255,.13)),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(31,29,26,.025) 53px);
}

.dossier-header h3 {
  margin: 5px 0 0;
  font-size: 42px;
}

.dossier-kicker,
.dossier-ref {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--brass);
  font-weight: 600;
}

.dossier-ref {
  color: rgba(31,29,26,.45);
  padding-top: 7px;
}

.dossier-section {
  padding: 38px;
  border-bottom: 1px solid rgba(31,29,26,.16);
}

.dossier-section-heading {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 28px;
}

.dossier-section-heading > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31,29,26,.28);
  border-radius: 50%;
  font: 16px var(--serif);
}

.dossier-section-heading p {
  margin: 0;
  font: 27px/1.1 var(--serif);
}

.dossier-section-heading small {
  display: block;
  margin-top: 5px;
  color: #756f65;
  font-size: 11px;
}

.dossier-fields {
  display: grid;
  gap: 24px 28px;
}

.dossier-fields.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dossier-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dossier-field > span,
.movement-choice legend {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #4e4941;
  font-weight: 600;
}

.dossier-field em {
  color: #8e877c;
  font-style: normal;
  margin-left: 8px;
}

.dossier-field input,
.dossier-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(31,29,26,.28);
  background: rgba(255,255,255,.18);
  padding: 14px 2px;
  color: var(--ink);
  font: 15px var(--sans);
  outline: none;
  transition: .2s ease;
}

.dossier-field textarea {
  padding: 16px;
  border: 1px solid rgba(31,29,26,.22);
  min-height: 145px;
  resize: vertical;
}

.dossier-field input:focus,
.dossier-field textarea:focus {
  border-color: var(--brass);
  background: rgba(255,255,255,.4);
}

.dossier-textarea + .dossier-textarea {
  margin-top: 28px;
}

.movement-choice {
  border: 0;
  padding: 0;
  margin: 32px 0 0;
}

.movement-choice legend {
  margin-bottom: 13px;
}

.movement-choice {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.movement-choice legend {
  grid-column: 1 / -1;
}

.movement-choice label {
  cursor: pointer;
}

.movement-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.movement-choice label span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(31,29,26,.22);
  background: rgba(255,255,255,.2);
  font-size: 11px;
  transition: .2s ease;
}

.movement-choice input:checked + span {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.photo-drop {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed rgba(31,29,26,.35);
  background:
    linear-gradient(rgba(255,255,255,.22), rgba(255,255,255,.22)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(31,29,26,.025) 19px);
  padding: 36px;
  cursor: pointer;
}

.photo-drop input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.photo-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border: 1px solid rgba(31,29,26,.3);
  border-radius: 50%;
  font: 28px var(--serif);
}

.photo-drop strong {
  font: 27px var(--serif);
}

.photo-drop small {
  max-width: 500px;
  margin: 8px auto 20px;
  color: #726b61;
  line-height: 1.6;
}

.photo-button {
  padding: 11px 16px;
  border: 1px solid rgba(31,29,26,.35);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
}

.dossier-submit {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: 34px 38px;
  color: white;
  background: #1b1b19;
}

.dossier-submit p {
  max-width: 500px;
  margin: 7px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.dossier-button {
  flex: 0 0 auto;
  background: var(--paper);
  color: var(--ink);
}

.dossier-button span {
  margin-left: 12px;
}

@media (max-width: 980px) {
  .service-request {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .dossier-header,
  .dossier-section,
  .dossier-submit {
    padding: 26px 22px;
  }

  .dossier-header,
  .dossier-submit {
    flex-direction: column;
  }

  .dossier-fields.two-column,
  .movement-choice {
    grid-template-columns: 1fr;
  }

  .movement-choice legend {
    grid-column: auto;
  }

  .dossier-button {
    width: 100%;
  }
}


.photo-selection {
  display: none;
  margin-top: 18px;
}

.photo-selection.has-files {
  display: block;
}

.photo-selection-summary {
  margin-bottom: 12px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brass);
  font-weight: 600;
}

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.photo-preview-item {
  border: 1px solid rgba(31,29,26,.18);
  background: rgba(255,255,255,.25);
}

.photo-preview-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #d8d0c2;
}

.photo-preview-info {
  display: grid;
  gap: 5px;
  padding: 11px;
}

.photo-preview-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
  color: var(--ink);
}

.photo-preview-info small {
  color: #7d766b;
  font-size: 9px;
}

.photo-remove {
  justify-self: start;
  margin-top: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brass);
  font: 600 9px var(--sans);
  text-transform: uppercase;
  letter-spacing: .13em;
  cursor: pointer;
}

@media (max-width: 650px) {
  .photo-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Balance of Time primary logo */
.brand-logo {
  display: flex;
  align-items: center;
  width: 250px;
  height: 58px;
  overflow: visible;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 190px;
    height: 52px;
  }

  .brand-logo img {
    height: 74px;
  }
}


/* Final header logo lockup */
.site-header .brand-logo {
  width: 265px;
  height: 58px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.site-header .brand-logo img {
  display: block;
  width: 250px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .site-header .brand-logo {
    width: 190px;
    height: 52px;
  }

  .site-header .brand-logo img {
    width: 180px;
    height: 74px;
  }
}


/* Horizontal Balance of Time header lockup */
.site-header .brand-logo {
  width: 360px !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.site-header .brand-logo img {
  content: url("balance-of-time-header-logo.png");
  width: 330px !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

@media (max-width: 900px) {
  .site-header .brand-logo {
    width: 245px !important;
  }

  .site-header .brand-logo img {
    width: 225px !important;
    max-height: 50px !important;
  }
}

@media (max-width: 650px) {
  .site-header .brand-logo {
    width: 190px !important;
  }

  .site-header .brand-logo img {
    width: 175px !important;
    max-height: 46px !important;
  }
}


/* V10: crisp header identity — emblem image + live HTML typography */
.site-header .brand-logo {
  width: auto !important;
  height: 66px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 15px !important;
  overflow: visible !important;
  text-decoration: none !important;
  flex: 0 0 auto !important;
}

.site-header .brand-logo img {
  content: none !important;
  width: 62px !important;
  height: 62px !important;
  max-height: 62px !important;
  object-fit: contain !important;
  display: block !important;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.brand-name {
  color: #d7bd8a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .055em;
  text-shadow: 0 0 1px rgba(215,189,138,.25);
}

.brand-name em {
  font-size: .72em;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 .14em;
}

.brand-ornament {
  color: #a98d5d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .28em;
  margin-top: 7px;
}

@media (max-width: 650px) {
  .site-header .brand-logo {
    gap: 9px !important;
    height: 54px !important;
  }
  .site-header .brand-logo img {
    width: 48px !important;
    height: 48px !important;
  }
  .brand-name { font-size: 15px; }
  .brand-ornament { font-size: 8px; margin-top: 5px; }
}


/* V11: horizontal emblem + crisp live wordmark */
.site-header .brand.brand-logo {
  width: auto !important;
  height: 66px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
}

.site-header .brand.brand-logo img {
  content: none !important;
  width: 62px !important;
  height: 62px !important;
  max-height: 62px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

.site-header .brand-wordmark {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.site-header .brand-name {
  color: #d9bf8b !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 23px !important;
  font-weight: 600 !important;
  letter-spacing: .045em !important;
  text-shadow: none !important;
}

.site-header .brand-name em {
  font-size: .68em !important;
  font-style: italic !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  margin: 0 .12em !important;
}

.site-header .brand-ornament {
  color: #a98d5d !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 11px !important;
  letter-spacing: .3em !important;
  margin-top: 5px !important;
}

@media (max-width: 760px) {
  .site-header .brand.brand-logo {
    gap: 9px !important;
    height: 54px !important;
  }

  .site-header .brand.brand-logo img {
    width: 48px !important;
    height: 48px !important;
    max-height: 48px !important;
  }

  .site-header .brand-name {
    font-size: 16px !important;
  }

  .site-header .brand-ornament {
    font-size: 8px !important;
    margin-top: 4px !important;
  }
}


/* V12: preserve horizontal logo, prevent emblem clipping */
.site-header {
  overflow: visible !important;
}

.site-header .brand.brand-logo {
  padding-left: 8px !important;
  height: 70px !important;
  overflow: visible !important;
}

.site-header .brand.brand-logo img {
  width: 68px !important;
  height: 68px !important;
  max-height: 68px !important;
  object-fit: contain !important;
  overflow: visible !important;
}

@media (max-width: 760px) {
  .site-header .brand.brand-logo {
    padding-left: 2px !important;
    height: 56px !important;
  }

  .site-header .brand.brand-logo img {
    width: 52px !important;
    height: 52px !important;
    max-height: 52px !important;
  }
}


/* V13 — authoritative header identity fix */
.site-header {
  overflow: visible !important;
  padding-left: 4vw !important;
  min-height: 92px !important;
}

.site-header .brand.brand-logo {
  width: auto !important;
  height: 72px !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 15px !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
}

.site-header .brand.brand-logo .brand-emblem {
  content: none !important;
  width: 72px !important;
  height: 72px !important;
  max-width: 72px !important;
  max-height: 72px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  flex: 0 0 72px !important;
  overflow: visible !important;
}

.site-header .brand-wordmark {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  overflow: visible !important;
}

.site-header .brand-name {
  color: #d9bf8b !important;
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif !important;
  font-size: 23px !important;
  font-weight: 600 !important;
  letter-spacing: .075em !important;
  line-height: 1.05 !important;
  text-shadow: none !important;
}

.site-header .brand-name em {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: .82em !important;
  font-style: italic !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  margin: 0 .12em !important;
}

.site-header .brand-ornament {
  width: 165px !important;
  height: 22px !important;
  margin-top: 5px !important;
  display: block !important;
  overflow: visible !important;
}

.site-header .brand-ornament img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center top !important;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px !important;
  }

  .site-header .brand.brand-logo {
    height: 56px !important;
    gap: 9px !important;
  }

  .site-header .brand.brand-logo .brand-emblem {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    flex-basis: 54px !important;
  }

  .site-header .brand-name {
    font-size: 16px !important;
    letter-spacing: .055em !important;
  }

  .site-header .brand-ornament {
    width: 116px !important;
    height: 15px !important;
    margin-top: 3px !important;
  }
}


/* V14 — refined Balance of Time header */
.site-header {
  min-height: 96px !important;
  padding: 14px 4vw 14px 5.2vw !important;
  overflow: visible !important;
}

.site-header .brand.brand-logo {
  height: 68px !important;
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
}

.site-header .brand.brand-logo .brand-emblem {
  width: 66px !important;
  height: 66px !important;
  max-width: 66px !important;
  max-height: 66px !important;
  flex: 0 0 66px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

.site-header .brand-wordmark {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 285px !important;
  overflow: visible !important;
  line-height: 1 !important;
}

.site-header .brand-name {
  font-family: "Cormorant SC", "Cormorant Garamond", Georgia, serif !important;
  font-size: 29px !important;
  font-weight: 600 !important;
  letter-spacing: .055em !important;
  color: #d8bd86 !important;
  line-height: .95 !important;
  text-shadow: none !important;
  white-space: nowrap !important;
}

.site-header .brand-name em {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: .78em !important;
  font-style: italic !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  margin: 0 .14em !important;
  text-transform: none !important;
}

.site-header .brand-ornament {
  width: 210px !important;
  height: 24px !important;
  margin-top: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.site-header .brand-ornament img {
  width: 210px !important;
  height: 24px !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  transform: none !important;
}

@media (max-width: 900px) {
  .site-header {
    padding-left: 3vw !important;
  }

  .site-header .brand-wordmark {
    min-width: 220px !important;
  }

  .site-header .brand-name {
    font-size: 22px !important;
  }

  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 160px !important;
    height: 18px !important;
  }
}

@media (max-width: 650px) {
  .site-header {
    min-height: 74px !important;
    padding: 10px 4vw !important;
  }

  .site-header .brand.brand-logo {
    height: 54px !important;
    gap: 9px !important;
  }

  .site-header .brand.brand-logo .brand-emblem {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    flex-basis: 50px !important;
  }

  .site-header .brand-wordmark {
    min-width: 155px !important;
  }

  .site-header .brand-name {
    font-size: 16px !important;
  }

  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 110px !important;
    height: 13px !important;
  }
}


/* V15 — extend the original ornament across the full wordmark */
.site-header .brand-wordmark {
  min-width: 315px !important;
}

.site-header .brand-ornament {
  width: 300px !important;
  height: 31px !important;
  margin-top: 4px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  overflow: visible !important;
}

.site-header .brand-ornament img {
  width: 300px !important;
  height: 31px !important;
  max-width: 300px !important;
  max-height: 31px !important;
  object-fit: fill !important;
  object-position: center !important;
  display: block !important;
}

@media (max-width: 900px) {
  .site-header .brand-wordmark {
    min-width: 250px !important;
  }

  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 235px !important;
    height: 25px !important;
    max-width: 235px !important;
    max-height: 25px !important;
  }
}

@media (max-width: 650px) {
  .site-header .brand-wordmark {
    min-width: 165px !important;
  }

  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 155px !important;
    height: 17px !important;
    max-width: 155px !important;
    max-height: 17px !important;
  }
}


/* V16 — resolve header ornament CSS conflict and refine wordmark */
.site-header .brand.brand-logo .brand-wordmark {
  width: 330px !important;
  min-width: 330px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.site-header .brand.brand-logo .brand-name {
  font-family: "Cinzel Decorative", "Cormorant Garamond", Georgia, serif !important;
  font-size: 27px !important;
  font-weight: 700 !important;
  letter-spacing: .025em !important;
  line-height: 1 !important;
  color: #d8bd86 !important;
  white-space: nowrap !important;
}

.site-header .brand.brand-logo .brand-name em {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: .82em !important;
  font-weight: 500 !important;
  font-style: italic !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin: 0 .12em !important;
}

.site-header .brand.brand-logo .brand-ornament {
  width: 310px !important;
  height: 28px !important;
  min-width: 310px !important;
  max-width: 310px !important;
  margin-top: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

/* More specific than the older generic .brand-logo img rule */
.site-header .brand.brand-logo .brand-ornament img {
  content: none !important;
  width: 310px !important;
  height: 28px !important;
  min-width: 310px !important;
  max-width: 310px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  flex: 0 0 310px !important;
  object-fit: fill !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  .site-header .brand.brand-logo .brand-wordmark {
    width: 250px !important;
    min-width: 250px !important;
  }

  .site-header .brand.brand-logo .brand-name {
    font-size: 20px !important;
  }

  .site-header .brand.brand-logo .brand-ornament,
  .site-header .brand.brand-logo .brand-ornament img {
    width: 235px !important;
    min-width: 235px !important;
    max-width: 235px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    flex-basis: 235px !important;
  }
}

@media (max-width: 650px) {
  .site-header .brand.brand-logo .brand-wordmark {
    width: 165px !important;
    min-width: 165px !important;
  }

  .site-header .brand.brand-logo .brand-name {
    font-size: 14px !important;
  }

  .site-header .brand.brand-logo .brand-ornament,
  .site-header .brand.brand-logo .brand-ornament img {
    width: 155px !important;
    min-width: 155px !important;
    max-width: 155px !important;
    height: 15px !important;
    min-height: 15px !important;
    max-height: 15px !important;
    flex-basis: 155px !important;
  }
}


/* V18 — clean ornament rendering; preserve natural proportions */
.site-header .brand.brand-logo .brand-ornament {
  width: 310px !important;
  height: auto !important;
  min-width: 310px !important;
  max-width: 310px !important;
  min-height: 0 !important;
  max-height: none !important;
  margin-top: 5px !important;
  overflow: visible !important;
}

.site-header .brand.brand-logo .brand-ornament img {
  width: 310px !important;
  height: auto !important;
  min-width: 310px !important;
  max-width: 310px !important;
  min-height: 0 !important;
  max-height: none !important;
  flex: none !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

@media (max-width: 900px) {
  .site-header .brand.brand-logo .brand-ornament,
  .site-header .brand.brand-logo .brand-ornament img {
    width: 235px !important;
    min-width: 235px !important;
    max-width: 235px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    flex: none !important;
  }
}

@media (max-width: 650px) {
  .site-header .brand.brand-logo .brand-ornament,
  .site-header .brand.brand-logo .brand-ornament img {
    width: 155px !important;
    min-width: 155px !important;
    max-width: 155px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    flex: none !important;
  }
}


/* V20 — header alignment and typography refinement */
.site-header .header-inner {
  min-height: 118px !important;
  display: flex !important;
  align-items: center !important;
}

.site-header .brand.brand-logo {
  align-self: center !important;
}

.site-header .brand.brand-logo .brand-lockup {
  display: grid !important;
  grid-template-columns: auto auto !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  column-gap: 18px !important;
}

.site-header .brand.brand-logo .brand-emblem {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
}

.site-header .brand.brand-logo .brand-wordmark {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 600 !important;
  letter-spacing: .055em !important;
  line-height: .95 !important;
}

.site-header .brand.brand-logo .brand-ornament {
  grid-column: 2 !important;
  grid-row: 2 !important;
  width: 310px !important;
  min-width: 310px !important;
  max-width: 310px !important;
  height: auto !important;
  margin: 5px auto 0 !important;
  display: block !important;
  overflow: visible !important;
}

.site-header .brand.brand-logo .brand-ornament img {
  width: 310px !important;
  min-width: 310px !important;
  max-width: 310px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.site-header .nav {
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
}

.site-header .nav a {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: .015em !important;
  line-height: 1 !important;
}

.site-header .nav .nav-cta,
.site-header .nav a:last-child {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 900px) {
  .site-header .brand.brand-logo .brand-ornament,
  .site-header .brand.brand-logo .brand-ornament img {
    width: 235px !important;
    min-width: 235px !important;
    max-width: 235px !important;
  }
}


/* V21 — unified Balance of Time header system */
.site-header {
  min-height: 104px !important;
  padding: 14px 4vw !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  overflow: visible !important;
}

.site-header .brand.brand-logo {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
}

.site-header .brand-lockup {
  display: grid !important;
  grid-template-columns: 68px 300px !important;
  grid-template-rows: auto !important;
  column-gap: 17px !important;
  align-items: center !important;
  overflow: visible !important;
}

.site-header .brand-emblem {
  content: none !important;
  grid-column: 1 !important;
  width: 68px !important;
  height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}

.site-header .brand-wordmark {
  grid-column: 2 !important;
  width: 300px !important;
  min-width: 300px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.site-header .brand-name {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  font-variant: small-caps !important;
  letter-spacing: .055em !important;
  line-height: .92 !important;
  color: #d8bd86 !important;
  white-space: nowrap !important;
  text-shadow: none !important;
}

.site-header .brand-name em {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: .80em !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-variant: normal !important;
  letter-spacing: 0 !important;
  margin: 0 .13em !important;
}

.site-header .brand-ornament {
  width: 278px !important;
  min-width: 278px !important;
  max-width: 278px !important;
  height: 25px !important;
  margin: 6px auto 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.site-header .brand-ornament img {
  content: none !important;
  width: 278px !important;
  min-width: 278px !important;
  max-width: 278px !important;
  height: 25px !important;
  min-height: 25px !important;
  max-height: 25px !important;
  flex: 0 0 278px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header .site-nav {
  display: flex !important;
  align-items: center !important;
  gap: 29px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header .site-nav > a:not(.nav-cta) {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: .012em !important;
  line-height: 1 !important;
  color: rgba(255,255,255,.82) !important;
}

.site-header .site-nav > a:not(.nav-cta):hover {
  color: #d8bd86 !important;
}

.site-header .site-nav .nav-cta {
  min-height: 46px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .045em !important;
  line-height: 1 !important;
  color: rgba(255,255,255,.90) !important;
  border: 1px solid rgba(255,255,255,.34) !important;
}

@media (max-width: 1100px) {
  .site-header .brand-lockup {
    grid-template-columns: 58px 245px !important;
    column-gap: 12px !important;
  }

  .site-header .brand-emblem {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
  }

  .site-header .brand-wordmark {
    width: 245px !important;
    min-width: 245px !important;
  }

  .site-header .brand-name {
    font-size: 22px !important;
  }

  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 225px !important;
    min-width: 225px !important;
    max-width: 225px !important;
    flex-basis: 225px !important;
    height: 21px !important;
    min-height: 21px !important;
    max-height: 21px !important;
  }

  .site-header .site-nav {
    gap: 20px !important;
  }

  .site-header .site-nav > a:not(.nav-cta) {
    font-size: 15px !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px !important;
  }

  .site-header .brand-lockup {
    grid-template-columns: 52px 195px !important;
    column-gap: 10px !important;
  }

  .site-header .brand-emblem {
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
  }

  .site-header .brand-wordmark {
    width: 195px !important;
    min-width: 195px !important;
  }

  .site-header .brand-name {
    font-size: 17px !important;
  }

  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 178px !important;
    min-width: 178px !important;
    max-width: 178px !important;
    flex-basis: 178px !important;
    height: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
  }
}

@media (max-width: 650px) {
  .site-header {
    min-height: 72px !important;
    padding: 10px 4vw !important;
  }

  .site-header .brand-lockup {
    grid-template-columns: 46px 150px !important;
    column-gap: 8px !important;
  }

  .site-header .brand-emblem {
    width: 46px !important;
    height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
  }

  .site-header .brand-wordmark {
    width: 150px !important;
    min-width: 150px !important;
  }

  .site-header .brand-name {
    font-size: 13px !important;
  }

  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 137px !important;
    min-width: 137px !important;
    max-width: 137px !important;
    flex-basis: 137px !important;
    height: 13px !important;
    min-height: 13px !important;
    max-height: 13px !important;
  }
}

/* V22 — corrected header ornament and final alignment refinement */
.site-header .brand-ornament {
  width: 286px !important;
  min-width: 286px !important;
  max-width: 286px !important;
  height: 34px !important;
  margin: 3px auto -2px !important;
}
.site-header .brand-ornament img {
  width: 286px !important;
  min-width: 286px !important;
  max-width: 286px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  flex: 0 0 286px !important;
  object-fit: contain !important;
}
.site-header .brand-lockup {
  align-items: center !important;
}
.site-header .site-nav {
  transform: translateY(0) !important;
}
@media (max-width: 1100px) {
  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 232px !important;
    min-width: 232px !important;
    max-width: 232px !important;
    flex-basis: 232px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
  }
}
@media (max-width: 980px) {
  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 184px !important;
    min-width: 184px !important;
    max-width: 184px !important;
    flex-basis: 184px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
  }
}
@media (max-width: 650px) {
  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 142px !important;
    min-width: 142px !important;
    max-width: 142px !important;
    flex-basis: 142px !important;
    height: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
  }
}

/* V23 — final header ornament refinement */
.site-header .brand-ornament {
  width: 244px !important;
  min-width: 244px !important;
  max-width: 244px !important;
  height: 29px !important;
  margin: 3px auto -2px !important;
}
.site-header .brand-ornament img {
  width: 244px !important;
  min-width: 244px !important;
  max-width: 244px !important;
  height: 29px !important;
  min-height: 29px !important;
  max-height: 29px !important;
  flex: 0 0 244px !important;
  object-fit: contain !important;
}
@media (max-width: 1100px) {
  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 197px !important;
    min-width: 197px !important;
    max-width: 197px !important;
    flex-basis: 197px !important;
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
  }
}
@media (max-width: 980px) {
  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 156px !important;
    min-width: 156px !important;
    max-width: 156px !important;
    flex-basis: 156px !important;
    height: 19px !important;
    min-height: 19px !important;
    max-height: 19px !important;
  }
}
@media (max-width: 650px) {
  .site-header .brand-ornament,
  .site-header .brand-ornament img {
    width: 121px !important;
    min-width: 121px !important;
    max-width: 121px !important;
    flex-basis: 121px !important;
    height: 14px !important;
    min-height: 14px !important;
    max-height: 14px !important;
  }
}

/* V24 — Latest Case File editorial feature */
.latest-case-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  min-height: 760px;
  background: #d8ccb8;
  color: #171612;
  border-top: 1px solid rgba(196, 158, 92, .28);
  border-bottom: 1px solid rgba(20, 18, 14, .22);
}

.latest-case-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #16130f;
}

.latest-case-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: sepia(.12) saturate(.76) contrast(1.06) brightness(.82);
  transform: scale(1.025);
}

.latest-case-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 11, 8, .08), rgba(13, 11, 8, .02) 55%, rgba(13, 11, 8, .26)),
    linear-gradient(0deg, rgba(13, 11, 8, .42), transparent 42%);
  pointer-events: none;
}

.latest-case-ref {
  position: absolute;
  left: 54px;
  bottom: 42px;
  z-index: 2;
  color: #efe5d4;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.latest-case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px clamp(58px, 6vw, 118px);
}

.latest-case-copy .eyebrow {
  color: #806637;
  margin-bottom: 34px;
}

.case-number {
  margin: 0 0 15px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6f604b;
}

.latest-case-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(68px, 6vw, 112px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.035em;
  color: #171612;
}

.latest-case-maker {
  margin: 36px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: #66543a;
}

.latest-case-story {
  max-width: 610px;
  margin: 32px 0 0;
  font-size: 19px;
  line-height: 1.7;
  color: #4e493f;
}

.latest-case-rule {
  width: 100%;
  max-width: 610px;
  height: 1px;
  margin: 38px 0 28px;
  background: rgba(62, 52, 38, .25);
  position: relative;
}

.latest-case-rule span {
  position: absolute;
  left: 0;
  top: -2px;
  width: 74px;
  height: 5px;
  background: #a9864a;
}

.latest-case-link {
  width: fit-content;
  color: #211d17;
}

.temporary-photo-note {
  margin: 28px 0 0;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8a7c68;
}

@media (max-width: 980px) {
  .latest-case-section {
    grid-template-columns: 1fr;
  }

  .latest-case-image {
    min-height: 580px;
  }

  .latest-case-copy {
    padding: 76px 9vw 84px;
  }
}

@media (max-width: 650px) {
  .latest-case-section {
    min-height: 0;
  }

  .latest-case-image {
    min-height: 420px;
  }

  .latest-case-ref {
    left: 24px;
    bottom: 24px;
    font-size: 9px;
  }

  .latest-case-copy {
    padding: 60px 24px 68px;
  }

  .latest-case-copy h2 {
    font-size: clamp(58px, 20vw, 82px);
  }

  .latest-case-story {
    font-size: 17px;
  }
}

/* V27 — reduce Case File scale and present portrait watch image without aggressive crop */
.latest-case-section {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
  min-height: 610px !important;
}

.latest-case-image {
  min-height: 610px !important;
  height: 610px !important;
  background:
    radial-gradient(circle at center, #3a342a 0%, #201d18 48%, #11100d 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.latest-case-image img {
  width: 88% !important;
  height: 88% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  filter: sepia(.08) saturate(.82) contrast(1.04) brightness(.9) !important;
}

.latest-case-copy {
  padding: 64px clamp(54px, 5vw, 92px) !important;
}

.latest-case-copy .eyebrow {
  margin-bottom: 24px !important;
}

.latest-case-copy h2 {
  font-size: clamp(60px, 5vw, 92px) !important;
  line-height: .86 !important;
}

.latest-case-maker {
  margin-top: 27px !important;
}

.latest-case-story {
  margin-top: 25px !important;
  font-size: 18px !important;
}

.latest-case-rule {
  margin: 28px 0 22px !important;
}

@media (max-width: 980px) {
  .latest-case-image {
    min-height: 520px !important;
    height: 520px !important;
  }
  .latest-case-image img {
    width: 92% !important;
    height: 92% !important;
  }
}

@media (max-width: 650px) {
  .latest-case-image {
    min-height: 430px !important;
    height: 430px !important;
  }
}

/* V28 — homepage visual structure + Case File mount refinement */

/* Temporary hero photography: Unsplash editorial placeholder only.
   Replace with Eric's original Balance of Time photography later. */
.hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
}

.hero-temp-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("https://unsplash.com/photos/u_RiRTA_TtY/download?force=true&w=2400");
  background-size: cover;
  background-position: 64% 50%;
  filter: saturate(.52) sepia(.18) contrast(1.08) brightness(.50);
  transform: scale(1.015);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(7, 7, 6, .97) 0%,
      rgba(7, 7, 6, .90) 31%,
      rgba(7, 7, 6, .63) 57%,
      rgba(7, 7, 6, .34) 100%),
    linear-gradient(0deg,
      rgba(7, 7, 6, .72) 0%,
      rgba(7, 7, 6, .08) 52%,
      rgba(7, 7, 6, .35) 100%);
  pointer-events: none;
}

/* Retire the abstract watch-circle artwork while photographic hero is being tested. */
.hero-visual {
  opacity: .08 !important;
  mix-blend-mode: screen;
}

/* Refine Case File image into a deliberate archival print mount. */
.latest-case-section {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
}

.latest-case-image {
  min-height: 610px !important;
  height: 610px !important;
  padding: 34px 48px 56px 72px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  background:
    radial-gradient(circle at 57% 45%, #2b271f 0%, #1a1814 49%, #0d0d0b 100%) !important;
}

.latest-case-image img {
  width: auto !important;
  height: 100% !important;
  max-width: 88% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.34);
}

.latest-case-ref {
  left: auto !important;
  right: 48px !important;
  bottom: 25px !important;
  width: auto !important;
  text-align: right !important;
  font-size: 9px !important;
  letter-spacing: .20em !important;
  color: rgba(239,229,212,.72) !important;
}

@media (max-width: 980px) {
  .hero-temp-photo {
    background-position: 70% 50%;
  }

  .latest-case-image {
    padding: 32px 40px 54px !important;
    justify-content: center !important;
  }

  .latest-case-image img {
    max-width: 94% !important;
  }

  .latest-case-ref {
    right: 40px !important;
  }
}

@media (max-width: 650px) {
  .hero-temp-photo {
    background-position: 72% 50%;
  }

  .latest-case-image {
    padding: 24px 24px 48px !important;
  }

  .latest-case-ref {
    right: 24px !important;
    bottom: 19px !important;
  }
}

/* V29 — remove obsolete abstract circular hero graphic */
.hero-visual,
.hero-watch,
.hero-dial,
.hero-circle {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* V31 — definitive cleanup of obsolete hero artwork and caption */
.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
}

.hero-caption {
  display: none !important;
}


/* V32 — real Balance of Time Case Files */
.case-files-section {
  padding: 110px 7vw 120px;
  background: #eee8dc;
  color: #1b1916;
}

.case-files-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 62px;
}

.case-files-heading h2 {
  max-width: 950px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 6vw, 104px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.035em;
}

.case-files-intro {
  max-width: 500px;
  margin: 0 0 9px;
  color: #5c554a;
  font-size: 15px;
  line-height: 1.7;
}

.case-file-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.case-file-card {
  background: #d9cfbd;
  border: 1px solid rgba(38, 31, 23, .16);
  overflow: hidden;
}

.case-file-photo {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: #171613;
}

.case-file-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) sepia(.06) contrast(1.04);
  transition: transform .6s ease;
}

.case-file-card:hover .case-file-photo img {
  transform: scale(1.018);
}

.case-status {
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 9px 12px;
  background: rgba(19, 18, 15, .83);
  color: #eee4d1;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.case-file-body {
  padding: 38px 40px 42px;
}

.case-code {
  margin: 0 0 12px;
  color: #8a6e3c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.case-file-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 3.3vw, 60px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.025em;
}

.case-model {
  margin: 21px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  color: #67553a;
}

.case-file-body > p:not(.case-code):not(.case-model) {
  margin: 26px 0 28px;
  color: #554f46;
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .case-files-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .case-file-grid {
    grid-template-columns: 1fr;
  }

  .case-file-photo {
    height: 620px;
  }
}

@media (max-width: 650px) {
  .case-files-section {
    padding: 72px 6vw 80px;
  }

  .case-file-photo {
    height: 430px;
  }

  .case-file-body {
    padding: 30px 25px 34px;
  }
}


/* V33 — investigative dossier Case Files */
.dossier-archive {
  position: relative;
  padding: 108px 7vw 130px !important;
  overflow: hidden;
  background:
    linear-gradient(rgba(234,225,207,.93), rgba(234,225,207,.93)),
    repeating-linear-gradient(0deg, rgba(73,58,37,.035) 0 1px, transparent 1px 5px),
    #e9dfcc !important;
}

.dossier-archive::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: 44px;
  right: 8vw;
  border: 2px solid rgba(107,76,43,.08);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 16px rgba(107,76,43,.025),
    inset 0 0 0 27px rgba(107,76,43,.018);
  transform: rotate(-12deg);
  pointer-events: none;
}

.dossier-heading {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: 1.2fr .8fr !important;
  gap: 80px !important;
  align-items: end !important;
  margin-bottom: 68px !important;
}

.dossier-overline {
  margin: 0 0 17px;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #725735;
}

.dossier-heading h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
}

.archive-explanation {
  max-width: 520px;
  justify-self: end;
}

.archive-stamp {
  display: inline-block;
  margin-bottom: 17px;
  padding: 8px 12px 6px;
  border: 2px solid rgba(101,64,38,.58);
  color: rgba(101,64,38,.72);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 13px;
  letter-spacing: .11em;
  transform: rotate(-2deg);
}

.archive-explanation p {
  margin: 0;
  color: #5e5548;
  font-size: 15px;
  line-height: 1.72;
}

.case-folder-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 72px;
}

.case-folder {
  position: relative;
  padding-top: 34px;
}

.folder-tab {
  position: absolute;
  top: 0;
  left: 56px;
  min-width: 245px;
  padding: 13px 23px 10px;
  background: #b89e72;
  border: 1px solid rgba(75,57,34,.24);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 13px;
  letter-spacing: .07em;
  color: #2b261e;
  z-index: 3;
}

.folder-paper {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 0;
  min-height: 610px;
  border: 1px solid rgba(67,50,30,.24);
  background:
    linear-gradient(rgba(214,198,165,.92), rgba(214,198,165,.92)),
    repeating-linear-gradient(0deg, rgba(67,50,30,.035) 0 1px, transparent 1px 4px),
    #d7c6a5;
  box-shadow:
    0 22px 42px rgba(53,40,23,.13),
    11px 12px 0 rgba(151,127,86,.18);
}

.folder-paper::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(87,63,34,.06);
  pointer-events: none;
}

.case-folder-two {
  width: 94%;
  margin-left: auto;
}

.case-folder-two .folder-tab {
  left: auto;
  right: 68px;
}

.case-folder-two .folder-paper {
  transform: rotate(.35deg);
}

.evidence-photo {
  position: relative;
  align-self: center;
  margin: 54px;
  padding: 17px 17px 39px;
  background: #ece6d8;
  border: 1px solid rgba(48,38,26,.20);
  box-shadow: 0 12px 28px rgba(44,34,22,.20);
  transform: rotate(-2.1deg);
  z-index: 2;
}

.case-folder-two .evidence-photo {
  transform: rotate(1.8deg);
}

.evidence-photo::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 42%;
  width: 92px;
  height: 28px;
  background: rgba(196,176,130,.54);
  transform: rotate(3deg);
  box-shadow: inset 0 0 0 1px rgba(90,69,39,.06);
}

.evidence-photo img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: sepia(.16) saturate(.74) contrast(1.03);
}

.evidence-photo p {
  margin: 17px 2px 0;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.5;
  color: #4f4638;
}

.evidence-label {
  position: absolute;
  top: 28px;
  left: 27px;
  z-index: 3;
  padding: 7px 10px 5px;
  background: #171613;
  color: #eee3ce;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  transform: rotate(-1deg);
}

.case-dossier-copy {
  position: relative;
  padding: 74px 70px 62px 44px;
  z-index: 2;
}

.case-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(63,47,28,.28);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: .06em;
  color: #665033;
}

.case-dossier-copy h3 {
  margin: 41px 0 0;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: clamp(34px, 3.4vw, 57px);
  font-weight: 400;
  line-height: 1.08;
  color: #211e19;
}

.typed-summary {
  max-width: 690px;
  margin: 31px 0 34px;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.82;
  color: #4f473b;
}

.case-clue-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 37px;
}

.case-clue-grid div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px 7px;
  border: 1px solid rgba(65,48,28,.25);
  background: rgba(237,227,206,.32);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.case-clue-grid span {
  color: #9a7849;
}

.dossier-link {
  display: inline-block;
  color: #211e18;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .09em;
  text-decoration: none;
  border-bottom: 1px solid rgba(33,30,24,.45);
  padding-bottom: 5px;
}

.dossier-link:hover {
  color: #82633a;
}

@media (max-width: 1050px) {
  .dossier-heading,
  .folder-paper {
    grid-template-columns: 1fr !important;
  }

  .archive-explanation {
    justify-self: start;
  }

  .case-folder-two {
    width: 100%;
  }

  .case-dossier-copy {
    padding: 38px 50px 60px;
  }

  .evidence-photo {
    max-width: 620px;
    margin: 60px auto 30px;
  }
}

@media (max-width: 650px) {
  .dossier-archive {
    padding: 72px 5vw 90px !important;
  }

  .folder-tab {
    left: 20px;
    min-width: 0;
    padding: 11px 16px 8px;
    font-size: 11px;
  }

  .case-folder-two .folder-tab {
    right: 20px;
  }

  .evidence-photo {
    margin: 38px 25px 20px;
    padding: 12px 12px 31px;
  }

  .evidence-photo img {
    height: 340px;
  }

  .case-dossier-copy {
    padding: 32px 25px 44px;
  }

  .case-meta-row {
    flex-direction: column;
    gap: 7px;
  }

  .case-dossier-copy h3 {
    margin-top: 28px;
    font-size: 35px;
  }

  .typed-summary {
    font-size: 14px;
  }
}


/* V34 — Case Files scale and viewport fit refinements */
.dossier-archive {
  padding-top: 72px !important;
  padding-bottom: 100px !important;
}

.dossier-heading {
  margin-bottom: 48px !important;
  gap: 64px !important;
}

.dossier-heading h2 {
  max-width: 820px !important;
  font-size: clamp(50px, 4.7vw, 78px) !important;
  line-height: .92 !important;
  letter-spacing: -.03em !important;
}

.archive-explanation {
  max-width: 470px !important;
}

.case-folder-stack {
  gap: 58px !important;
}

.folder-paper {
  min-height: 500px !important;
}

.evidence-photo {
  margin: 42px 48px !important;
  padding: 14px 14px 34px !important;
}

.evidence-photo img {
  height: 350px !important;
}

.case-dossier-copy {
  padding: 56px 62px 46px 38px !important;
}

.case-meta-row {
  font-size: 10px !important;
}

.case-dossier-copy h3 {
  margin-top: 30px !important;
  font-size: clamp(31px, 2.7vw, 46px) !important;
  line-height: 1.06 !important;
}

.typed-summary {
  margin: 24px 0 27px !important;
  font-size: 13px !important;
  line-height: 1.68 !important;
}

.case-clue-grid {
  gap: 7px !important;
  margin-bottom: 28px !important;
}

.case-clue-grid div {
  padding: 7px 9px 5px !important;
  font-size: 9px !important;
}

@media (min-width: 1200px) {
  .case-folder {
    max-width: 1420px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-folder-two {
    width: 94%;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (max-width: 1050px) {
  .dossier-heading h2 {
    font-size: clamp(48px, 8vw, 72px) !important;
  }

  .evidence-photo img {
    height: 430px !important;
  }
}

@media (max-width: 650px) {
  .dossier-heading h2 {
    font-size: 46px !important;
  }

  .evidence-photo img {
    height: 320px !important;
  }

  .case-dossier-copy h3 {
    font-size: 32px !important;
  }
}


/* V35 — Dedicated open case-file dossier */
.case-file-page {
  background: #e7dcc7;
}

.case-file-main {
  padding-top: 92px;
  background:
    linear-gradient(rgba(236,228,211,.94), rgba(236,228,211,.94)),
    repeating-linear-gradient(0deg, rgba(74,57,35,.035) 0 1px, transparent 1px 5px),
    #e9dfcc;
}

.case-file-cover {
  padding: 82px 7vw 68px;
  border-bottom: 1px solid rgba(61,45,27,.24);
}

.case-cover-kicker,
.case-type-line,
.typed-date,
.evidence-section-heading > p,
.case-placeholder-chapters .chapter-file > div > p,
.case-file-closing > p:first-child {
  font-family: "Special Elite", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #735a38;
}

.case-cover-kicker {
  margin-bottom: 42px;
  font-size: 11px;
}

.case-cover-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 80px;
  align-items: end;
}

.case-type-line {
  margin: 0 0 20px;
  font-size: 12px;
}

.case-file-cover h1 {
  max-width: 1040px;
  margin-bottom: 28px;
  color: #1f1b16;
  font-size: clamp(62px, 7vw, 116px);
  line-height: .86;
}

.case-cover-deck {
  max-width: 760px;
  margin: 0;
  color: #5b5246;
  font-size: 17px;
  line-height: 1.75;
}

.case-cover-stamp {
  width: 210px;
  justify-self: end;
  padding: 25px 18px 20px;
  border: 3px double rgba(106,66,38,.55);
  color: rgba(106,66,38,.75);
  text-align: center;
  font-family: "Special Elite", "Courier New", monospace;
  transform: rotate(-4deg);
}

.case-cover-stamp span,
.case-cover-stamp small {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
}

.case-cover-stamp strong {
  display: block;
  margin: 8px 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .08em;
}

.open-dossier {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1500px;
  margin: 76px auto 90px;
  padding: 0 4vw;
}

.dossier-spine {
  position: absolute;
  z-index: 5;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 22px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(50,37,23,.08), rgba(255,255,255,.20), rgba(50,37,23,.10));
  box-shadow: 0 0 18px rgba(50,37,23,.12);
  pointer-events: none;
}

.dossier-page {
  position: relative;
  min-height: 940px;
  padding: 56px 54px 62px;
  background:
    linear-gradient(rgba(222,208,179,.93), rgba(222,208,179,.93)),
    repeating-linear-gradient(0deg, rgba(67,50,30,.035) 0 1px, transparent 1px 4px),
    #ddcdb0;
  border: 1px solid rgba(67,50,30,.24);
  box-shadow: 0 24px 45px rgba(55,40,22,.16);
}

.dossier-left {
  transform: rotate(-.25deg);
  transform-origin: right center;
}

.dossier-right {
  transform: rotate(.2deg);
  transform-origin: left center;
}

.dossier-page::after {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px solid rgba(74,54,31,.07);
  pointer-events: none;
}

.paper-heading {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(63,47,28,.30);
  color: #654e31;
  font: 11px "Special Elite", "Courier New", monospace;
  letter-spacing: .08em;
}

.case-photo-sheet {
  position: relative;
  z-index: 2;
  margin: 48px 28px 42px;
  padding: 14px 14px 33px;
  background: #eee8dc;
  border: 1px solid rgba(48,38,26,.20);
  box-shadow: 0 12px 25px rgba(44,34,22,.18);
  transform: rotate(-1.8deg);
}

.case-photo-sheet::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 39%;
  width: 105px;
  height: 28px;
  background: rgba(191,169,119,.55);
  transform: rotate(3deg);
}

.case-photo-sheet img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  filter: sepia(.12) saturate(.82) contrast(1.03);
}

.case-photo-sheet p {
  margin: 16px 3px 0;
  color: #4f4638;
  font: 12px "Special Elite", "Courier New", monospace;
}

.subject-facts {
  position: relative;
  z-index: 2;
  margin: 0 20px;
  font-family: "Special Elite", "Courier New", monospace;
}

.subject-facts div {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(64,47,27,.35);
}

.subject-facts dt {
  color: #7d613d;
  font-size: 11px;
  text-transform: uppercase;
}

.subject-facts dd {
  margin: 0;
  color: #29241d;
  font-size: 13px;
}

.typed-note {
  position: relative;
  z-index: 2;
  margin: 38px 20px 0;
  padding: 20px 22px;
  border-left: 3px solid #8e7048;
  background: rgba(239,229,207,.38);
  font-family: "Special Elite", "Courier New", monospace;
}

.typed-note span {
  color: #755938;
  font-size: 10px;
  letter-spacing: .1em;
}

.typed-note p {
  margin: 10px 0 0;
  color: #51483c;
  font-size: 12px;
  line-height: 1.75;
}

.typed-date {
  position: relative;
  z-index: 2;
  margin: 54px 0 22px;
  font-size: 11px;
}

.dossier-right h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
  font: 500 clamp(52px, 5vw, 82px)/.9 "Cormorant Garamond", Georgia, serif;
}

.case-story {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #3e382f;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.9;
}

.case-story p {
  margin: 0 0 24px;
}

.case-story .story-lead::first-letter {
  float: left;
  margin: 9px 9px 0 0;
  color: #765a37;
  font: 600 66px/.65 "Cormorant Garamond", Georgia, serif;
}

.margin-note {
  position: relative;
  z-index: 2;
  width: 78%;
  margin: 38px 0 45px auto;
  padding: 19px 22px 18px;
  border: 1px solid rgba(85,58,31,.30);
  color: #674c2f;
  font-family: "Special Elite", "Courier New", monospace;
  transform: rotate(-1.2deg);
}

.margin-note strong {
  font-size: 10px;
  letter-spacing: .1em;
}

.margin-note p {
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.case-section-index {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.case-section-index span {
  padding: 8px 10px 6px;
  border: 1px solid rgba(65,48,28,.22);
  color: #6c604f;
  font: 9px "Special Elite", "Courier New", monospace;
}

.case-section-index .active {
  background: #1b1915;
  color: #eee3ce;
}

.case-evidence-section {
  padding: 105px 7vw 115px;
  background: #171613;
  color: #f2eee6;
}

.evidence-section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}

.evidence-section-heading > p {
  margin: 12px 0 0;
  color: #b69a6a;
  font-size: 11px;
}

.evidence-section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(55px, 6vw, 94px);
}

.evidence-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
}

.evidence-notes-grid article {
  min-height: 290px;
  padding: 35px 38px 20px 0;
  border-right: 1px solid rgba(255,255,255,.13);
}

.evidence-notes-grid article + article {
  padding-left: 38px;
}

.evidence-notes-grid article:last-child {
  border-right: 0;
}

.note-number {
  color: #b69a6a;
  font: 11px "Special Elite", "Courier New", monospace;
}

.evidence-notes-grid h3 {
  margin: 35px 0 20px;
  color: #f2eee6;
  font-size: 40px;
}

.evidence-notes-grid p {
  max-width: 390px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
  line-height: 1.75;
}

.case-placeholder-chapters {
  padding: 70px 7vw 90px;
  background: #e8deca;
}

.chapter-file {
  display: grid;
  grid-template-columns: 80px 1fr 130px;
  gap: 35px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid rgba(54,41,25,.22);
}

.chapter-file > span {
  color: #9a7b4d;
  font: 24px "Special Elite", "Courier New", monospace;
}

.chapter-file > div > p:first-child {
  margin: 0 0 8px;
  font-size: 10px;
}

.chapter-file h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 64px);
}

.chapter-copy {
  max-width: 780px;
  margin: 16px 0 0;
  color: #62584a;
  font-size: 14px;
  line-height: 1.7;
}

.chapter-file > strong {
  justify-self: end;
  padding: 8px 10px 6px;
  border: 1px solid rgba(97,66,35,.32);
  color: #7d5e39;
  font: 10px "Special Elite", "Courier New", monospace;
  letter-spacing: .08em;
  transform: rotate(-2deg);
}

.case-file-closing {
  padding: 100px 7vw 110px;
  background: #d5c29d;
}

.case-file-closing > p:first-child {
  margin: 0 0 22px;
  font-size: 11px;
}

.case-file-closing h2 {
  margin-bottom: 24px;
  font-size: clamp(54px, 6vw, 94px);
}

.case-file-closing > p:not(:first-child) {
  max-width: 720px;
  margin: 0 0 35px;
  color: #594e40;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .case-cover-grid,
  .open-dossier,
  .evidence-section-heading {
    grid-template-columns: 1fr;
  }

  .case-cover-stamp {
    justify-self: start;
  }

  .open-dossier {
    padding: 0 6vw;
  }

  .dossier-spine {
    display: none;
  }

  .dossier-page {
    min-height: 0;
  }

  .evidence-notes-grid {
    grid-template-columns: 1fr;
  }

  .evidence-notes-grid article,
  .evidence-notes-grid article + article {
    min-height: 0;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
}

@media (max-width: 650px) {
  .case-file-main {
    padding-top: 76px;
  }

  .case-file-cover {
    padding: 58px 5vw 50px;
  }

  .case-file-cover h1 {
    font-size: 54px;
  }

  .open-dossier {
    margin-top: 42px;
    padding: 0 3vw;
  }

  .dossier-page {
    padding: 36px 25px 42px;
  }

  .case-photo-sheet {
    margin: 42px 4px 35px;
  }

  .case-photo-sheet img {
    height: 380px;
  }

  .subject-facts {
    margin: 0;
  }

  .subject-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .typed-note {
    margin-left: 0;
    margin-right: 0;
  }

  .dossier-right h2 {
    font-size: 55px;
  }

  .case-section-index {
    grid-template-columns: 1fr;
  }

  .evidence-section-heading h2 {
    font-size: 54px;
  }

  .chapter-file {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .chapter-file > strong {
    grid-column: 2;
    justify-self: start;
  }
}


/* V36 — compact open dossier, visible within the first screen */
.case-file-main {
  padding-top: 92px !important;
}

.compact-case-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 36px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 4vw 18px;
}

.compact-case-code {
  margin: 0 0 7px;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: .11em;
  color: #735a38;
  text-transform: uppercase;
}

.compact-case-header h1 {
  margin: 0;
  max-width: 1000px;
  color: #1f1b16;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.03em;
}

.compact-case-stamp {
  width: 150px;
  justify-self: end;
  padding: 14px 12px 11px;
  border: 2px double rgba(106,66,38,.55);
  color: rgba(106,66,38,.76);
  text-align: center;
  font-family: "Special Elite", "Courier New", monospace;
  transform: rotate(-3deg);
}

.compact-case-stamp span,
.compact-case-stamp small {
  display: block;
  font-size: 9px;
  letter-spacing: .13em;
}

.compact-case-stamp strong {
  display: block;
  margin: 4px 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .07em;
}

.compact-open-dossier {
  max-width: 1500px !important;
  height: 660px !important;
  min-height: 660px !important;
  margin: 12px auto 56px !important;
  padding: 0 4vw !important;
  align-items: stretch !important;
}

.compact-open-dossier .dossier-page {
  min-height: 0 !important;
  height: 660px !important;
  padding: 34px 38px 38px !important;
  overflow: hidden !important;
}

.compact-open-dossier .paper-heading {
  font-size: 9px !important;
  padding-bottom: 9px !important;
}

.compact-open-dossier .case-photo-sheet {
  margin: 26px 20px 22px !important;
  padding: 10px 10px 24px !important;
}

.compact-open-dossier .case-photo-sheet img {
  height: 285px !important;
}

.compact-open-dossier .case-photo-sheet p {
  margin-top: 10px !important;
  font-size: 10px !important;
}

.compact-open-dossier .subject-facts {
  margin: 0 12px !important;
}

.compact-open-dossier .subject-facts div {
  grid-template-columns: 125px 1fr !important;
  gap: 12px !important;
  padding: 5px 0 !important;
}

.compact-open-dossier .subject-facts dt {
  font-size: 9px !important;
}

.compact-open-dossier .subject-facts dd {
  font-size: 11px !important;
}

.compact-open-dossier .typed-note {
  margin: 18px 12px 0 !important;
  padding: 12px 15px !important;
}

.compact-open-dossier .typed-note span {
  font-size: 9px !important;
}

.compact-open-dossier .typed-note p {
  margin-top: 7px !important;
  font-size: 10px !important;
  line-height: 1.55 !important;
}

.compact-open-dossier .typed-date {
  margin: 26px 0 11px !important;
  font-size: 9px !important;
}

.compact-open-dossier .dossier-right h2 {
  margin-bottom: 19px !important;
  font-size: clamp(42px, 4vw, 60px) !important;
  line-height: .9 !important;
}

.compact-open-dossier .case-story {
  max-width: 100% !important;
  font-size: 11px !important;
  line-height: 1.62 !important;
}

.compact-open-dossier .case-story p {
  margin-bottom: 13px !important;
}

.compact-open-dossier .case-story .story-lead::first-letter {
  margin-top: 5px !important;
  font-size: 48px !important;
}

.compact-open-dossier .margin-note {
  width: 72% !important;
  margin: 18px 0 18px auto !important;
  padding: 11px 14px !important;
}

.compact-open-dossier .margin-note strong {
  font-size: 8px !important;
}

.compact-open-dossier .margin-note p {
  margin-top: 6px !important;
  font-size: 10px !important;
  line-height: 1.45 !important;
}

.compact-open-dossier .case-section-index {
  gap: 5px !important;
}

.compact-open-dossier .case-section-index span {
  padding: 5px 7px 4px !important;
  font-size: 7px !important;
}

@media (max-width: 980px) {
  .compact-case-header {
    grid-template-columns: 1fr;
  }

  .compact-case-stamp {
    justify-self: start;
  }

  .compact-open-dossier {
    height: auto !important;
    min-height: 0 !important;
  }

  .compact-open-dossier .dossier-page {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
}

@media (max-width: 650px) {
  .compact-case-header {
    padding: 28px 5vw 14px;
  }

  .compact-case-header h1 {
    font-size: 44px;
  }

  .compact-open-dossier {
    margin-top: 8px !important;
    padding: 0 3vw !important;
  }
}

/* V37 — compact chapter navigation and concise case-file sections */
.case-file-main {
  scroll-behavior: smooth;
}

.compact-case-header {
  padding-top: 24px;
  padding-bottom: 10px;
}

.compact-case-header h1 {
  max-width: 900px;
  font-size: clamp(36px, 3.35vw, 54px);
  line-height: .94;
}

.compact-open-dossier {
  height: 610px !important;
  min-height: 610px !important;
  margin-top: 6px !important;
}

.compact-open-dossier .dossier-page {
  height: 610px !important;
  padding: 27px 32px 30px !important;
}

.compact-open-dossier .case-photo-sheet {
  margin: 18px 18px 15px !important;
  padding: 9px 9px 20px !important;
}

.compact-open-dossier .case-photo-sheet img {
  height: 260px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #ddd0b0;
}

.compact-open-dossier .typed-date {
  margin-top: 18px !important;
}

.compact-open-dossier .dossier-right h2 {
  margin-bottom: 13px !important;
  font-size: clamp(34px, 3vw, 48px) !important;
}

.compact-open-dossier .case-story {
  font-size: 10.5px !important;
  line-height: 1.52 !important;
}

.compact-open-dossier .case-story p {
  margin-bottom: 9px !important;
}

.compact-open-dossier .margin-note {
  margin-top: 11px !important;
  margin-bottom: 11px !important;
  padding: 9px 12px !important;
}

.compact-open-dossier .case-section-index {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px !important;
}

.compact-open-dossier .case-section-index a {
  display: block;
  padding: 5px 7px 4px;
  border: 1px solid rgba(86, 65, 38, .22);
  color: #665b4b;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 7px;
  line-height: 1.15;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.compact-open-dossier .case-section-index a:hover,
.compact-open-dossier .case-section-index a.active {
  background: #211d18;
  border-color: #211d18;
  color: #f0e6cf;
}

.case-file-page [id] {
  scroll-margin-top: 115px;
}

.compact-case-chapter {
  min-height: 0 !important;
  padding: 58px 6vw 54px !important;
}

.compact-case-chapter .evidence-section-heading {
  margin-bottom: 28px !important;
}

.compact-case-chapter .evidence-section-heading h2 {
  font-size: clamp(40px, 4.4vw, 66px) !important;
  line-height: .9 !important;
}

.compact-case-chapter .evidence-notes-grid {
  gap: 18px !important;
}

.compact-case-chapter .evidence-notes-grid article {
  min-height: 0 !important;
  padding: 24px 25px !important;
}

.compact-case-chapter .evidence-notes-grid h3 {
  margin: 9px 0 10px !important;
  font-size: 28px !important;
}

.compact-case-chapter .evidence-notes-grid p {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.case-placeholder-chapters {
  padding: 46px 6vw 58px !important;
  gap: 12px !important;
}

.case-placeholder-chapters .chapter-file {
  min-height: 0 !important;
  padding: 22px 26px !important;
  grid-template-columns: 52px 1fr auto !important;
  gap: 20px !important;
}

.case-placeholder-chapters .chapter-file > span {
  font-size: 30px !important;
}

.case-placeholder-chapters .chapter-file h2 {
  margin: 3px 0 5px !important;
  font-size: clamp(25px, 2.3vw, 36px) !important;
}

.case-placeholder-chapters .chapter-copy {
  max-width: 760px;
  margin: 0 !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

@media (max-width: 980px) {
  .compact-open-dossier {
    height: auto !important;
    min-height: 0 !important;
  }
  .compact-open-dossier .dossier-page {
    height: auto !important;
  }
}


/* V38 — true in-place case-file tabs */
.case-tab-dossier {
  display: flex !important;
  flex-direction: column !important;
}

.case-tab-panels {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.case-tab-panel {
  display: none;
  animation: casePanelIn .22s ease;
}

.case-tab-panel.active {
  display: block;
}

@keyframes casePanelIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.case-tab-panel h2 {
  margin: 19px 0 18px !important;
  font-size: clamp(38px, 3.5vw, 54px) !important;
  line-height: .92 !important;
}

.case-tab-panel .typed-date {
  margin: 23px 0 8px !important;
}

.case-tab-panel .case-story {
  font-size: 10.5px !important;
  line-height: 1.58 !important;
}

.case-tab-panel .case-story p {
  margin-bottom: 11px !important;
}

.case-tab-panel .margin-note {
  margin-top: 15px !important;
  margin-bottom: 12px !important;
}

.case-section-index {
  margin-top: auto !important;
  padding-top: 9px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 5px !important;
}

.case-section-index button {
  appearance: none;
  width: 100%;
  display: block;
  padding: 5px 7px 4px;
  border: 1px solid rgba(86, 65, 38, .22);
  background: transparent;
  color: #665b4b;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 7px;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
}

.case-section-index button:hover,
.case-section-index button.active {
  background: #211d18;
  border-color: #211d18;
  color: #f0e6cf;
}

.compact-evidence-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.compact-evidence-list article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(64,47,27,.30);
}

.compact-evidence-list span {
  color: #8b6d43;
  font: 9px "Special Elite", "Courier New", monospace;
}

.compact-evidence-list h3 {
  margin: 0 0 3px;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 13px;
  font-weight: 400;
}

.compact-evidence-list p {
  margin: 0;
  color: #51483c;
  font: 10px/1.5 "Special Elite", "Courier New", monospace;
}

@media (max-width: 980px) {
  .case-tab-panels {
    overflow: visible;
  }
}


/* V40 — dedicated Case Files landing page */
.case-files-page {
  background: #e9dfcc;
}

.case-files-main {
  padding-top: 92px;
}

.case-files-page .dossier-archive {
  min-height: calc(100vh - 92px);
  padding-top: 58px !important;
}

.case-files-page .dossier-heading {
  margin-bottom: 42px !important;
}

.case-files-page .site-nav .active-nav {
  color: #d8bd86 !important;
}

.case-files-page .case-folder-stack {
  gap: 60px !important;
}

/* Homepage no longer carries the full Case Files archive. */
body:not(.case-files-page) .case-files-section.dossier-archive {
  display: none !important;
}

@media (max-width: 650px) {
  .case-files-main {
    padding-top: 72px;
  }

  .case-files-page .dossier-archive {
    min-height: calc(100vh - 72px);
    padding-top: 44px !important;
  }
}


/* V41 — scalable Case Files cabinet landing page */
.archive-cabinet-page {
  min-height: 100vh;
  padding-top: 92px;
  background:
    linear-gradient(rgba(236,228,211,.94), rgba(236,228,211,.94)),
    repeating-linear-gradient(0deg, rgba(74,57,35,.028) 0 1px, transparent 1px 5px),
    #e9dfcc;
}

.archive-cabinet-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 68px;
  align-items: end;
  max-width: 1450px;
  margin: 0 auto;
  padding: 38px 5vw 30px;
}

.cabinet-heading h1 {
  margin: 0;
  max-width: 780px;
  color: #1d1a16;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.035em;
}

.cabinet-intro {
  max-width: 500px;
  justify-self: end;
  padding-bottom: 4px;
}

.cabinet-intro p {
  margin: 0;
  color: #5a5145;
  font-size: 14px;
  line-height: 1.65;
}

.archive-cabinet {
  width: min(1380px, 90vw);
  margin: 0 auto 54px;
  border: 1px solid rgba(63,45,27,.34);
  background:
    linear-gradient(90deg, rgba(75,53,31,.13), transparent 3%, transparent 97%, rgba(75,53,31,.13)),
    #b99a69;
  box-shadow:
    0 25px 55px rgba(53,38,20,.18),
    inset 0 0 0 5px rgba(92,64,35,.08);
}

.cabinet-top,
.cabinet-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 21px 9px;
  color: #392c20;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: .09em;
}

.cabinet-top {
  border-bottom: 1px solid rgba(62,45,27,.35);
  background: rgba(86,61,34,.08);
}

.cabinet-footer {
  border-top: 1px solid rgba(62,45,27,.35);
  font-size: 9px;
  color: rgba(57,44,32,.74);
}

.cabinet-drawers {
  display: grid;
}

.cabinet-drawer {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1.45fr) minmax(180px, .58fr) 150px;
  gap: 24px;
  align-items: center;
  min-height: 102px;
  padding: 14px 31px 14px 90px;
  border-bottom: 1px solid rgba(61,43,24,.34);
  color: #211c16;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(65,45,25,.04)),
    #c9ad7e;
  transition: background .2s ease, transform .2s ease;
}

.cabinet-drawer:last-child {
  border-bottom: 0;
}

a.cabinet-drawer:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(65,45,25,.02)),
    #d1b789;
  transform: translateX(3px);
}

.drawer-handle {
  position: absolute;
  left: 27px;
  top: 50%;
  width: 39px;
  height: 18px;
  transform: translateY(-50%);
  border: 2px solid rgba(59,43,27,.55);
  border-radius: 2px;
  box-shadow: inset 0 -4px 0 rgba(73,52,31,.10);
}

.drawer-file-number {
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 17px;
  letter-spacing: .08em;
  color: #5f472c;
}

.drawer-watch strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.drawer-watch span {
  color: #675c4d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.drawer-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5e5140;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 8px;
}

.status-dot.open {
  background: #775733;
}

.status-dot.examination {
  background: #9a7c46;
}

.status-dot.dormant {
  background: rgba(83,66,45,.28);
}

.drawer-arrow {
  justify-self: end;
  color: #5b452d;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .06em;
}

.cabinet-drawer-empty {
  opacity: .54;
}

@media (max-width: 980px) {
  .archive-cabinet-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cabinet-intro {
    justify-self: start;
  }

  .cabinet-drawer {
    grid-template-columns: 90px 1fr;
    padding-left: 82px;
  }

  .drawer-status,
  .drawer-arrow {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 650px) {
  .archive-cabinet-page {
    padding-top: 72px;
  }

  .archive-cabinet-hero {
    padding: 34px 6vw 26px;
  }

  .cabinet-heading h1 {
    font-size: 48px;
  }

  .archive-cabinet {
    width: 92vw;
  }

  .cabinet-top,
  .cabinet-footer {
    flex-direction: column;
    gap: 4px;
  }

  .cabinet-drawer {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 132px;
    padding: 20px 20px 20px 72px;
  }

  .drawer-file-number,
  .drawer-watch,
  .drawer-status,
  .drawer-arrow {
    grid-column: 1;
  }
}


/* V42 — annual Case File archive tabs */
.case-year-tabs {
  width: min(1380px, 90vw);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(68, 49, 29, .22);
}

.case-year-tab {
  appearance: none;
  border: 1px solid rgba(70, 50, 29, .28);
  border-bottom: 0;
  padding: 9px 22px 8px;
  background: rgba(190, 159, 109, .18);
  color: #675038;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: .09em;
  cursor: pointer;
}

.case-year-tab.active {
  background: #b99a69;
  color: #2d2319;
}

.case-year-tab:disabled {
  opacity: .38;
  cursor: default;
}

.year-tab-note {
  margin-left: auto;
  padding: 0 0 8px 18px;
  color: rgba(77, 62, 44, .62);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .04em;
}

.case-year-heading {
  width: min(1380px, 90vw);
  margin: 0 auto 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.case-year-heading span {
  color: #806b4d;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.case-year-heading h2 {
  margin: 0;
  color: #211c16;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -.015em;
}

/* Real Balance of Time emblem in footer */
.footer-logo img,
.footer-mark img,
.footer-brand-emblem img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-brand-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

@media (max-width: 700px) {
  .case-year-tabs {
    overflow-x: auto;
    align-items: flex-end;
  }

  .year-tab-note {
    display: none;
  }

  .case-year-heading {
    align-items: center;
  }

  .case-year-heading h2 {
    font-size: 27px;
  }
}


/* V43 — unified footer lockup with real Balance of Time emblem */
.site-footer-v43 {
  padding: 58px 7vw 26px !important;
  background: #11110f !important;
  border-top: 1px solid rgba(216, 189, 134, .20) !important;
  color: rgba(255,255,255,.78) !important;
}

.site-footer-v43 .footer-main {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 50px !important;
  padding-bottom: 38px !important;
}

.site-footer-v43 .footer-brand-lockup {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  color: inherit !important;
  text-decoration: none !important;
}

.site-footer-v43 .footer-emblem {
  width: 86px !important;
  height: 86px !important;
  min-width: 86px !important;
  object-fit: contain !important;
  display: block !important;
}

.site-footer-v43 .footer-brand-copy strong {
  display: block !important;
  color: #d8bd86 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  letter-spacing: .05em !important;
  line-height: 1 !important;
}

.site-footer-v43 .footer-brand-copy strong em {
  font-size: .78em !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: 0 !important;
  margin: 0 .08em !important;
}

.site-footer-v43 .footer-brand-copy p {
  margin: 11px 0 0 !important;
  color: rgba(255,255,255,.56) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
}

.site-footer-v43 .footer-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 28px !important;
  margin: 0 !important;
}

.site-footer-v43 .footer-links a {
  color: rgba(255,255,255,.72) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: .01em !important;
  text-decoration: none !important;
}

.site-footer-v43 .footer-links a:hover {
  color: #d8bd86 !important;
}

.site-footer-v43 .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.38) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 10px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

@media (max-width: 900px) {
  .site-footer-v43 .footer-main {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .site-footer-v43 .footer-links {
    justify-content: flex-start !important;
  }
}

@media (max-width: 650px) {
  .site-footer-v43 {
    padding: 44px 6vw 24px !important;
  }

  .site-footer-v43 .footer-brand-lockup {
    gap: 16px !important;
  }

  .site-footer-v43 .footer-emblem {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
  }

  .site-footer-v43 .footer-brand-copy strong {
    font-size: 23px !important;
  }

  .site-footer-v43 .footer-brand-copy p {
    font-size: 17px !important;
  }

  .site-footer-v43 .footer-links {
    gap: 18px 22px !important;
  }

  .site-footer-v43 .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}


/* V44 — case cabinet column headings */
.cabinet-top {
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1.45fr) minmax(180px, .58fr) 150px !important;
  gap: 24px !important;
  align-items: center !important;
  padding: 11px 31px 9px 90px !important;
}
.cabinet-heading-files {
  grid-column: 1 / 3;
}
.cabinet-heading-status {
  grid-column: 3;
}
.cabinet-heading-access {
  grid-column: 4;
  text-align: right;
}
@media (max-width: 900px) {
  .cabinet-top {
    display: flex !important;
    justify-content: space-between !important;
    padding: 11px 21px 9px !important;
  }
  .cabinet-heading-status,
  .cabinet-heading-access {
    display: none;
  }
}


/* V45 — customer-first Services landing page */
.service-command {
  min-height: calc(100vh - 92px);
  padding: 42px 6vw 36px;
  background:
    radial-gradient(circle at 76% 10%, rgba(142,112,72,.10), transparent 28%),
    #11110f;
  color: #f2eee6;
  box-sizing: border-box;
}

.service-command-intro {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 70px;
  align-items: end;
  max-width: 1450px;
  margin: 0 auto 28px;
}

.service-command .eyebrow {
  margin-bottom: 12px;
  color: #c7a96e;
}

.service-command h1 {
  max-width: 850px;
  margin: 0;
  color: #f3efe7;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.035em;
}

.service-command-copy {
  max-width: 540px;
  justify-self: end;
}

.service-command-copy p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 1.65;
}

.service-command-cta {
  min-width: 220px;
  text-align: center;
}

.service-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1450px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.service-quick-card {
  position: relative;
  min-height: 278px;
  padding: 25px 27px 22px;
  border-right: 1px solid rgba(255,255,255,.13);
  box-sizing: border-box;
}

.service-quick-card:last-child {
  border-right: 0;
}

.service-quick-number {
  color: #b99a63;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 10px;
  letter-spacing: .12em;
}

.service-quick-type {
  margin: 20px 0 7px;
  color: rgba(255,255,255,.48);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-quick-card h2 {
  margin: 0 0 14px;
  color: #f0ebe1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(29px, 2.5vw, 42px);
  font-weight: 500;
  line-height: .96;
}

.service-quick-card > p:not(.service-quick-type) {
  margin: 0;
  color: rgba(255,255,255,.57);
  font-size: 13px;
  line-height: 1.55;
}

.service-best-for {
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 21px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #bfa06b;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  line-height: 1.4;
  letter-spacing: .06em;
}

.service-guidance-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 25px;
  align-items: center;
  max-width: 1450px;
  margin: 22px auto 0;
}

.service-guidance-bar > span {
  color: #c0a16b;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
}

.service-guidance-bar p {
  margin: 0;
  color: rgba(255,255,255,.54);
  font-size: 13px;
}

.service-guidance-bar a {
  color: #efe8da;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .07em;
  text-decoration: none;
  border-bottom: 1px solid rgba(239,232,218,.35);
  padding-bottom: 4px;
}

.service-scope-compact {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

@media (max-width: 1120px) {
  .service-command {
    min-height: auto;
  }

  .service-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-quick-card:nth-child(2) {
    border-right: 0;
  }

  .service-quick-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
}

@media (max-width: 760px) {
  .service-command {
    padding: 36px 5vw 38px;
  }

  .service-command-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-command-copy {
    justify-self: start;
  }

  .service-command h1 {
    font-size: 54px;
  }

  .service-quick-grid {
    grid-template-columns: 1fr;
  }

  .service-quick-card,
  .service-quick-card:nth-child(2) {
    min-height: 235px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .service-quick-card:last-child {
    border-bottom: 0;
  }

  .service-guidance-bar {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}


/* V46 — keep Services landing content below the fixed site header */
body:has(.service-command) main {
  padding-top: 104px !important;
}

body:has(.service-command) .service-command {
  min-height: calc(100vh - 104px) !important;
  padding-top: 38px !important;
}

@media (max-width: 980px) {
  body:has(.service-command) main {
    padding-top: 82px !important;
  }

  body:has(.service-command) .service-command {
    min-height: calc(100vh - 82px) !important;
  }
}

@media (max-width: 650px) {
  body:has(.service-command) main {
    padding-top: 72px !important;
  }

  body:has(.service-command) .service-command {
    min-height: auto !important;
    padding-top: 34px !important;
  }
}


/* V47 — tighter BT monogram header lockup */
.site-header .brand-lockup-v47 {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.site-header .brand-monogram-v47 {
  display: block !important;
  width: 66px !important;
  height: 66px !important;
  min-width: 66px !important;
  object-fit: contain !important;
}

.site-header .brand-name-v47 {
  display: inline-flex !important;
  align-items: baseline !important;
  white-space: nowrap !important;
  color: #d8bd86 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 31px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: .055em !important;
}

.site-header .brand-name-v47 em {
  margin: 0 .11em !important;
  font-size: .72em !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: 0 !important;
}

.site-header .brand-ornament,
.site-header .brand-emblem,
.site-header .brand-wordmark {
  display: none !important;
}

.site-header .brand-logo {
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.site-header {
  grid-template-columns: auto 1fr auto !important;
}

.site-header .site-nav {
  justify-self: end !important;
}

@media (max-width: 1100px) {
  .site-header .brand-monogram-v47 {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
  }

  .site-header .brand-name-v47 {
    font-size: 27px !important;
  }
}

@media (max-width: 820px) {
  .site-header .brand-lockup-v47 {
    gap: 13px !important;
  }

  .site-header .brand-monogram-v47 {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }

  .site-header .brand-name-v47 {
    font-size: 23px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand-name-v47 {
    font-size: 20px !important;
    letter-spacing: .035em !important;
  }

  .site-header .brand-monogram-v47 {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }
}


/* V48 — service-form upload status */
.photo-upload-note {
  display: block;
  margin-top: 10px;
  color: #7b705f;
  font-size: 10px;
  line-height: 1.5;
}

.dossier-button:disabled {
  cursor: wait;
  opacity: .72;
}


/* V49 — two-stage service submission */
.service-submit-status {
  min-height: 1px;
}


/* V56 — dedicated active workshop landing page */
.workshop-page {
  background: #11110f;
}

.workshop-page .site-nav .active-nav {
  color: #d8bd86 !important;
}

.workshop-main-v56 {
  padding-top: 104px;
  background: #11110f;
  color: #ece7dc;
}

.workshop-command {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  max-width: 1450px;
  margin: 0 auto;
  padding: 38px 5vw 30px;
}

.workshop-title-block h1 {
  margin: 0;
  max-width: 900px;
  color: #f1ede5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(55px, 5.2vw, 84px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.04em;
}

.workshop-intro-copy {
  max-width: 540px;
  justify-self: end;
}

.workshop-intro-copy p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
  line-height: 1.7;
}

.workshop-note {
  color: #a98b59;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .10em;
}

.bench-dashboard {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  max-width: 1450px;
  min-height: 560px;
  margin: 0 auto;
  border-top: 1px solid rgba(216,189,134,.28);
  border-bottom: 1px solid rgba(216,189,134,.28);
}

.bench-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-right: 1px solid rgba(216,189,134,.22);
  background: #090a08;
}

.bench-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08);
}

.bench-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.52));
  pointer-events: none;
}

.bench-photo-label {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  color: #e4d5b7;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .10em;
}

.bench-record {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 52px;
}

.bench-record-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.48);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.bench-status {
  color: #c1a267;
}

.bench-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #b39155;
}

.bench-file-number {
  margin: 27px 0 10px;
  color: #b69862;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
}

.bench-record h2 {
  margin: 0;
  color: #f1ede5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(45px, 4vw, 67px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.025em;
}

.bench-lead {
  max-width: 650px;
  margin: 22px 0 26px;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height: 1.65;
}

.bench-checks {
  border-top: 1px solid rgba(255,255,255,.12);
}

.bench-checks div {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.bench-checks span,
.bench-checks em {
  color: rgba(255,255,255,.38);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  font-style: normal;
  letter-spacing: .07em;
}

.bench-checks strong {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 500;
}

.bench-checks .complete em {
  color: #b89a62;
}

.workshop-record-link {
  align-self: flex-start;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(216,189,134,.45);
  color: #d9c59c;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-decoration: none;
}

.workshop-record-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1450px;
  margin: 58px auto;
  padding: 0 5vw;
  gap: 22px;
}

.workshop-record-card {
  border: 1px solid rgba(255,255,255,.12);
  background: #171714;
}

.workshop-card-image {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.workshop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.66) contrast(1.08);
  transition: transform .45s ease;
}

.workshop-record-card:hover .workshop-card-image img {
  transform: scale(1.025);
}

.workshop-card-image span {
  position: absolute;
  left: 18px;
  bottom: 15px;
  padding: 7px 9px 6px;
  background: rgba(17,17,15,.90);
  color: #d1b67f;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.workshop-card-copy {
  padding: 25px 27px 27px;
}

.workshop-card-copy > p:first-child,
.workshop-card-copy > span {
  color: #a98b59;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.workshop-card-copy h3 {
  margin: 11px 0 13px;
  color: #efe9dd;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: .96;
}

.workshop-card-copy > p:not(:first-child) {
  min-height: 64px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.6;
}

.workshop-method {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  max-width: 1450px;
  margin: 0 auto;
  padding: 65px 5vw 78px;
  border-top: 1px solid rgba(216,189,134,.20);
}

.workshop-method h2 {
  margin: 10px 0 0;
  color: #eee8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 3.5vw, 58px);
  font-weight: 500;
  line-height: .95;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.13);
  border-left: 1px solid rgba(255,255,255,.13);
}

.method-steps div {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.method-steps span {
  color: #a98b59;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
}

.method-steps strong {
  display: block;
  margin: 10px 0 5px;
  color: #eee8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.method-steps p {
  margin: 0;
  color: rgba(255,255,255,.50);
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .workshop-command,
  .workshop-method {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workshop-intro-copy {
    justify-self: start;
  }

  .bench-dashboard {
    grid-template-columns: 1fr;
  }

  .bench-photo {
    border-right: 0;
    border-bottom: 1px solid rgba(216,189,134,.22);
  }

  .workshop-record-grid {
    grid-template-columns: 1fr;
  }

  .workshop-card-image {
    height: 320px;
  }
}

@media (max-width: 650px) {
  .workshop-main-v56 {
    padding-top: 72px;
  }

  .workshop-command {
    padding: 34px 6vw 28px;
  }

  .workshop-title-block h1 {
    font-size: 48px;
  }

  .bench-record {
    padding: 35px 7vw;
  }

  .bench-record-top {
    flex-direction: column;
    gap: 8px;
  }

  .bench-checks div {
    grid-template-columns: 28px 1fr;
  }

  .bench-checks em {
    grid-column: 2;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }
}


/* V57 — tighter horizontal header and corrected footer brand lockup */
.site-header {
  min-height: 78px !important;
  height: 78px !important;
  padding: 0 4.5vw !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  column-gap: 34px !important;
}

.site-header .brand-logo {
  display: flex !important;
  align-items: center !important;
  height: 78px !important;
  min-width: 0 !important;
}

.site-header .brand-lockup-v57 {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  height: 100% !important;
}

.site-header .brand-monogram-v57 {
  display: block !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  object-fit: contain !important;
}

.site-header .brand-name-v57 {
  display: inline-flex !important;
  align-items: baseline !important;
  white-space: nowrap !important;
  color: #d8bd86 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 29px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: .075em !important;
}

.site-header .brand-name-v57 em {
  margin: 0 .20em !important;
  font-size: .70em !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: .02em !important;
}

.site-header .site-nav {
  justify-self: end !important;
  align-self: center !important;
  gap: 30px !important;
  margin: 0 !important;
}

.site-header .site-nav a {
  line-height: 1 !important;
}

.site-header .nav-cta {
  padding: 16px 21px !important;
}

.workshop-main-v56 {
  padding-top: 78px !important;
}

/* Unified footer using the actual BT monogram and matching wordmark */
.site-footer-v57 {
  padding: 46px 5vw 24px !important;
  background: #11110f !important;
  border-top: 1px solid rgba(216,189,134,.18) !important;
  color: rgba(255,255,255,.76) !important;
}

.site-footer-v57 .footer-main {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 50px !important;
  padding-bottom: 32px !important;
}

.site-footer-v57 .footer-brand-lockup {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  color: inherit !important;
  text-decoration: none !important;
}

.site-footer-v57 .footer-monogram-v57 {
  display: block !important;
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  object-fit: contain !important;
}

.site-footer-v57 .footer-brand-copy strong {
  display: block !important;
  color: #d8bd86 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 27px !important;
  font-weight: 600 !important;
  letter-spacing: .075em !important;
  line-height: 1 !important;
}

.site-footer-v57 .footer-brand-copy strong em {
  margin: 0 .18em !important;
  font-size: .72em !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: .02em !important;
}

.site-footer-v57 .footer-brand-copy p {
  margin: 10px 0 0 !important;
  color: rgba(255,255,255,.50) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}

.site-footer-v57 .footer-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 26px !important;
  margin: 0 !important;
}

.site-footer-v57 .footer-links a {
  color: rgba(255,255,255,.68) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.site-footer-v57 .footer-links a:hover {
  color: #d8bd86 !important;
}

.site-footer-v57 .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.34) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 9px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1100px) {
  .site-header {
    column-gap: 20px !important;
  }

  .site-header .site-nav {
    gap: 20px !important;
  }

  .site-header .brand-name-v57 {
    font-size: 25px !important;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px !important;
    min-height: 72px !important;
  }

  .site-header .brand-logo {
    height: 72px !important;
  }

  .site-header .brand-monogram-v57 {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }

  .site-header .brand-name-v57 {
    font-size: 22px !important;
  }

  .workshop-main-v56 {
    padding-top: 72px !important;
  }

  .site-footer-v57 .footer-main {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .site-footer-v57 .footer-links {
    justify-content: flex-start !important;
  }
}

@media (max-width: 560px) {
  .site-header .brand-lockup-v57 {
    gap: 11px !important;
  }

  .site-header .brand-name-v57 {
    font-size: 19px !important;
    letter-spacing: .05em !important;
  }

  .site-header .brand-monogram-v57 {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  .site-footer-v57 {
    padding: 40px 6vw 22px !important;
  }

  .site-footer-v57 .footer-monogram-v57 {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
  }

  .site-footer-v57 .footer-brand-copy strong {
    font-size: 22px !important;
  }

  .site-footer-v57 .footer-brand-copy p {
    font-size: 16px !important;
  }

  .site-footer-v57 .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 9px !important;
  }
}


/* V58 — explicit wordmark spacing + correct workshop image proportions */
.site-header .brand-name-v57 {
  display: flex !important;
  align-items: baseline !important;
  gap: 13px !important;
  letter-spacing: 0 !important;
}

.site-header .brand-name-v57 .word-balance,
.site-header .brand-name-v57 .word-time {
  display: inline-block !important;
  letter-spacing: .085em !important;
}

.site-header .brand-name-v57 .word-of {
  display: inline-block !important;
  margin: 0 !important;
  font-size: .70em !important;
  letter-spacing: .02em !important;
}

.site-footer-v57 .footer-brand-copy strong {
  display: flex !important;
  align-items: baseline !important;
  gap: 11px !important;
  letter-spacing: 0 !important;
}

.site-footer-v57 .footer-brand-copy strong .word-balance,
.site-footer-v57 .footer-brand-copy strong .word-time {
  letter-spacing: .075em !important;
}

.site-footer-v57 .footer-brand-copy strong .word-of {
  margin: 0 !important;
}

/* Preserve the original 1600×1000 bench photograph ratio.
   The image now crops cleanly instead of being forced into a tall grid cell. */
.current-bench {
  align-items: start !important;
}

.bench-photo {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 8 / 5 !important;
  align-self: start !important;
}

.bench-photo img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 820px) {
  .site-header .brand-name-v57 {
    gap: 9px !important;
  }
}

@media (max-width: 560px) {
  .site-header .brand-name-v57 {
    gap: 6px !important;
  }
}


/* V59 — refined Workshop hierarchy and bench layout */
.workshop-command {
  grid-template-columns: 1.08fr .92fr !important;
  gap: 58px !important;
  padding-top: 30px !important;
  padding-bottom: 24px !important;
}

.workshop-title-block h1 {
  max-width: 780px !important;
  font-size: clamp(48px, 4.55vw, 72px) !important;
  line-height: .90 !important;
}

.workshop-intro-copy {
  max-width: 560px !important;
}

.workshop-note {
  display: none !important;
}

.bench-dashboard {
  grid-template-columns: .90fr 1.10fr !important;
  min-height: 0 !important;
}

.bench-photo {
  aspect-ratio: 1.34 / 1 !important;
  min-height: 0 !important;
}

.bench-photo img {
  object-fit: cover !important;
  object-position: 50% 44% !important;
  transform: scale(.93) !important;
  background: #090a08 !important;
}

.bench-record {
  padding: 34px 48px 30px !important;
  justify-content: flex-start !important;
}

.bench-file-number {
  margin-top: 22px !important;
}

.bench-record h2 {
  font-size: clamp(40px, 3.5vw, 58px) !important;
  max-width: 620px !important;
}

.bench-lead {
  margin: 17px 0 20px !important;
  max-width: 690px !important;
}

.bench-checks div {
  padding: 8px 0 !important;
}

.workshop-record-link {
  margin-top: 16px !important;
}

@media (min-width: 1200px) {
  .workshop-command,
  .bench-dashboard {
    max-width: 1420px !important;
  }

  .workshop-main-v56 {
    min-height: 100vh !important;
  }
}

@media (max-width: 1000px) {
  .workshop-command,
  .bench-dashboard {
    grid-template-columns: 1fr !important;
  }

  .bench-photo {
    aspect-ratio: 8 / 5 !important;
  }

  .bench-photo img {
    transform: none !important;
    object-position: center center !important;
  }
}


/* V60 — Workshop photographic geometry correction
   Images must retain native proportions. */
.bench-photo {
  overflow: hidden !important;
  aspect-ratio: 8 / 5 !important;
  min-height: 0 !important;
  background: #090a08 !important;
}

.bench-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.workshop-grid-card .workshop-card-image {
  overflow: hidden !important;
  aspect-ratio: 16 / 9 !important;
  background: #090a08 !important;
}

.workshop-grid-card .workshop-card-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

/* Catch legacy card image wrappers/selectors in the Workshop page. */
.workshop-card-media,
.workshop-card-photo,
.workshop-evidence-image {
  overflow: hidden !important;
  aspect-ratio: 16 / 9 !important;
  background: #090a08 !important;
}

.workshop-card-media img,
.workshop-card-photo img,
.workshop-evidence-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}


/* Exact V60 evidence-photo rule */
.workshop-evidence-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}


/* V61 — Buy & Sell */
.market-page {
  background: #11110f;
}

.market-main {
  padding-top: 78px;
  background: #11110f;
  color: #ece7dc;
}

.market-page .active-nav {
  color: #d8bd86 !important;
}

.market-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  max-width: 1450px;
  margin: 0 auto;
  padding: 48px 5vw 44px;
}

.market-hero h1,
.sell-watch-copy h2,
.available-heading h2 {
  margin: 0;
  color: #f0ebe2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.035em;
}

.market-hero h1 {
  font-size: clamp(54px, 5vw, 80px);
  line-height: .89;
}

.market-hero-copy {
  max-width: 560px;
  justify-self: end;
}

.market-hero-copy > p {
  color: rgba(255,255,255,.59);
  font-size: 14px;
  line-height: 1.7;
}

.market-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}

.market-text-link {
  color: #dcc9a2;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-decoration: none;
}

.sell-watch-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  max-width: 1450px;
  margin: 0 auto;
  border-top: 1px solid rgba(216,189,134,.25);
  border-bottom: 1px solid rgba(216,189,134,.25);
}

.sell-watch-copy {
  padding: 58px 5vw;
  border-right: 1px solid rgba(216,189,134,.18);
}

.sell-watch-copy h2,
.available-heading h2 {
  font-size: clamp(45px, 4vw, 65px);
  line-height: .92;
}

.sell-watch-copy > p {
  max-width: 590px;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.7;
}

.sell-watch-points {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.sell-watch-points span {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.sell-watch-form {
  padding: 42px 5vw;
  background: #e9dfcc;
  color: #211c16;
}

.market-form-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(64,45,26,.25);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  color: #725b3d;
}

.sell-watch-form label {
  display: block;
  margin-bottom: 18px;
  color: #5f503d;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.sell-watch-form input,
.sell-watch-form textarea,
.sell-watch-form select {
  width: 100%;
  box-sizing: border-box;
  margin-top: 7px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(63,44,25,.35);
  background: transparent;
  color: #211c16;
  font: 15px "Inter", Arial, sans-serif;
  outline: 0;
}

.market-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.market-photo-field span {
  display: block;
  margin-top: 7px;
  color: #80715e;
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.available-watches {
  max-width: 1450px;
  margin: 0 auto;
  padding: 70px 5vw 90px;
}

.available-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 32px;
}

.available-heading > p {
  max-width: 420px;
  color: rgba(255,255,255,.48);
  font-size: 13px;
}

.watch-market-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.watch-market-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: 1px solid rgba(255,255,255,.13);
}

.watch-market-image {
  display: grid;
  place-items: center;
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 45%, rgba(216,189,134,.12), transparent 35%),
    #090a08;
  color: rgba(216,189,134,.40);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .10em;
}

.watch-market-copy {
  padding: 40px;
}

.watch-market-copy > p:first-child,
.market-watch-meta,
.market-watch-bottom {
  color: #ad8e59;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.watch-market-copy h3 {
  margin: 16px 0 7px;
  color: #eee8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 45px;
  font-weight: 500;
  line-height: .94;
}

.watch-market-copy > p:not(:first-child) {
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.65;
}

.market-watch-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.market-watch-bottom a {
  color: #d9c59c;
  text-decoration: none;
}

.market-empty-record {
  display: grid;
  place-content: center;
  min-height: 430px;
  padding: 40px;
  border: 1px dashed rgba(255,255,255,.15);
  text-align: center;
}

.market-empty-record span {
  color: #9e8253;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .08em;
}

.market-empty-record p {
  color: rgba(255,255,255,.42);
  font-size: 12px;
}

/* V61 — private Workshop Manager */
.workshop-manager-page {
  min-height: 100vh;
  margin: 0;
  background: #11110f;
  color: #eee8dc;
  font-family: "Inter", Arial, sans-serif;
}

.workshop-manager-shell {
  width: min(850px, 88vw);
  margin: 0 auto;
  padding: 65px 0;
}

.manager-heading p,
.manager-warning strong {
  color: #af905c;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
}

.manager-heading h1 {
  margin: 15px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  font-weight: 500;
}

.manager-heading > span {
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.workshop-manager-form {
  margin-top: 35px;
  padding: 35px;
  background: #e9dfcc;
  color: #211c16;
}

.workshop-manager-form label {
  display: block;
  margin-bottom: 20px;
  color: #675642;
  font-size: 11px;
  font-weight: 600;
}

.workshop-manager-form input,
.workshop-manager-form textarea,
.workshop-manager-form select {
  width: 100%;
  box-sizing: border-box;
  margin-top: 7px;
  padding: 11px;
  border: 1px solid rgba(58,41,24,.25);
  background: rgba(255,255,255,.25);
  font: 14px "Inter", Arial, sans-serif;
}

.manager-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.manager-warning {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(216,189,134,.25);
}

.manager-warning p {
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.6;
}

.manager-warning code {
  color: #d8bd86;
}

@media (max-width: 1000px) {
  .market-hero,
  .sell-watch-panel,
  .watch-market-grid,
  .watch-market-card {
    grid-template-columns: 1fr;
  }

  .market-hero-copy {
    justify-self: start;
  }

  .sell-watch-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(216,189,134,.18);
  }

  .available-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .market-main {
    padding-top: 72px;
  }

  .market-hero {
    padding: 38px 6vw;
  }

  .market-hero h1 {
    font-size: 48px;
  }

  .market-hero-actions,
  .market-form-row,
  .manager-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .sell-watch-copy,
  .sell-watch-form,
  .available-watches {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}


/* V62 — redesigned private Workshop Manager */
.workshop-manager-page-v62 {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 6%, rgba(170,137,80,.08), transparent 26%),
    #11110f;
  color: #eee8dc;
  font-family: "Inter", Arial, sans-serif;
}

.manager-topbar-v62 {
  height: 78px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(216,189,134,.18);
  background: rgba(17,17,15,.96);
  box-sizing: border-box;
}

.manager-brand-v62 {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d8bd86;
  text-decoration: none;
}

.manager-brand-v62 img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.manager-brand-v62 > span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  letter-spacing: .07em;
}

.manager-brand-v62 em {
  font-size: .7em;
  font-weight: 500;
}

.manager-topbar-meta-v62 {
  display: flex;
  align-items: center;
  gap: 28px;
}

.manager-topbar-meta-v62 span,
.manager-topbar-meta-v62 a {
  color: rgba(255,255,255,.45);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .1em;
  text-decoration: none;
}

.manager-topbar-meta-v62 a {
  color: #c8ac76;
}

.manager-shell-v62 {
  width: min(1380px, 91vw);
  margin: 0 auto;
  padding: 44px 0 70px;
}

.manager-intro-v62 {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 65px;
  align-items: end;
  margin-bottom: 34px;
}

.manager-kicker-v62 {
  margin: 0 0 11px;
  color: #b1935c;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.manager-intro-v62 h1 {
  margin: 0;
  color: #f0ebe2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.035em;
}

.manager-intro-copy-v62 {
  max-width: 540px;
  justify-self: end;
}

.manager-intro-copy-v62 p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 14px;
  line-height: 1.7;
}

.manager-form-v62 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border: 1px solid rgba(216,189,134,.20);
  background: #171714;
}

.manager-form-panel-v62 {
  padding: 38px 42px;
  box-sizing: border-box;
}

.manager-details-v62 {
  border-right: 1px solid rgba(216,189,134,.18);
}

.manager-section-heading-v62 {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.manager-section-heading-v62 > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(216,189,134,.35);
  color: #c6a66d;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
}

.manager-section-heading-v62 p {
  margin: 0 0 4px;
  color: #a88a57;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.manager-section-heading-v62 h2 {
  margin: 0;
  color: #eee8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.manager-field-grid-v62 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.manager-field-v62 {
  display: block;
  margin-bottom: 21px;
}

.manager-field-v62 > span {
  display: block;
  margin-bottom: 8px;
  color: #cfb987;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.manager-field-v62 input,
.manager-field-v62 textarea,
.manager-field-v62 select {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: #10100e;
  color: #eee8dc;
  font: 14px "Inter", Arial, sans-serif;
  outline: 0;
  transition: border-color .2s ease, background .2s ease;
}

.manager-field-v62 textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.manager-field-v62 input:focus,
.manager-field-v62 textarea:focus,
.manager-field-v62 select:focus {
  border-color: rgba(216,189,134,.65);
  background: #141410;
}

.manager-field-v62 small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.36);
  font-size: 10px;
  line-height: 1.5;
}

.manager-field-v62 code {
  color: #c8ac76;
}

.manager-upload-v62 {
  position: relative;
  display: block;
  height: 390px;
  overflow: hidden;
  border: 1px dashed rgba(216,189,134,.38);
  background:
    radial-gradient(circle at 50% 45%, rgba(216,189,134,.08), transparent 35%),
    #10100e;
  cursor: pointer;
}

.manager-upload-v62 input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.manager-upload-empty-v62 {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.manager-upload-empty-v62.hidden {
  display: none;
}

.manager-upload-icon-v62 {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(216,189,134,.38);
  border-radius: 50%;
  color: #d4b878;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 35px;
}

.manager-upload-empty-v62 strong {
  color: #eee8dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.manager-upload-empty-v62 span {
  color: rgba(255,255,255,.38);
  font-size: 10px;
}

.manager-photo-preview-v62 {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #090a08;
}

.manager-photo-preview-v62.visible {
  display: block;
}

.manager-photo-guidance-v62 {
  margin-top: 17px;
  padding: 17px 19px;
  border-left: 3px solid #9d7d48;
  background: rgba(216,189,134,.05);
}

.manager-photo-guidance-v62 span {
  color: #ae905a;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .09em;
}

.manager-photo-guidance-v62 p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.46);
  font-size: 11px;
  line-height: 1.6;
}

.manager-publish-v62 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: end;
  padding: 28px 42px 30px;
  border-top: 1px solid rgba(216,189,134,.18);
  background: #131310;
}

.manager-key-wrap-v62 .manager-field-v62 {
  margin: 0;
}

.manager-publish-action-v62 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.manager-publish-action-v62 span {
  color: #a98a57;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .09em;
}

.manager-publish-action-v62 p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.40);
  font-size: 11px;
}

.manager-publish-button-v62 {
  min-width: 245px;
  padding: 17px 24px;
  border: 1px solid #d0bb91;
  background: #e8dec9;
  color: #1d1913;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.manager-publish-button-v62:hover {
  background: #f0e8d8;
}

.manager-security-note-v62 {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 18px;
  color: rgba(255,255,255,.32);
  font-size: 9px;
}

.manager-security-note-v62 strong {
  color: #8f754b;
  font-family: "Special Elite", "Courier New", monospace;
  letter-spacing: .08em;
}

@media (max-width: 940px) {
  .manager-intro-v62,
  .manager-form-v62,
  .manager-publish-v62 {
    grid-template-columns: 1fr;
  }

  .manager-intro-copy-v62 {
    justify-self: start;
  }

  .manager-details-v62 {
    border-right: 0;
    border-bottom: 1px solid rgba(216,189,134,.18);
  }

  .manager-publish-action-v62 {
    justify-content: space-between;
  }
}

@media (max-width: 650px) {
  .manager-topbar-v62 {
    height: 68px;
    padding: 0 5vw;
  }

  .manager-brand-v62 img {
    width: 42px;
    height: 42px;
  }

  .manager-brand-v62 > span {
    gap: 6px;
    font-size: 20px;
  }

  .manager-topbar-meta-v62 span {
    display: none;
  }

  .manager-shell-v62 {
    width: 90vw;
    padding-top: 34px;
  }

  .manager-intro-v62 h1 {
    font-size: 48px;
  }

  .manager-field-grid-v62 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .manager-form-panel-v62,
  .manager-publish-v62 {
    padding: 28px 6vw;
  }

  .manager-upload-v62 {
    height: 300px;
  }

  .manager-publish-action-v62 {
    flex-direction: column;
    align-items: stretch;
  }

  .manager-publish-button-v62 {
    width: 100%;
  }
}

/* V64 — dedicated About page */
.about-page-v64 { background: #11110f; }
.about-main-v64 { background: #11110f; color: #f1eadc; }
.about-hero-v64 { width: 88vw; max-width: 1460px; margin: 0 auto; padding: 72px 0 92px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 7vw; align-items: center; }
.about-hero-image-v64 { position: relative; overflow: hidden; min-height: 650px; border: 1px solid rgba(216,189,134,.18); background: #181713; }
.about-hero-image-v64 img { width: 100%; height: 100%; min-height: 650px; position: absolute; inset: 0; object-fit: cover; object-position: 50% 48%; display: block; }
.about-hero-image-v64::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(10,10,9,.68)); }
.about-hero-image-v64 > span { position: absolute; z-index: 1; left: 28px; bottom: 24px; font: 9px "Special Elite", monospace; letter-spacing: .12em; color: #d2b579; }
.about-hero-copy-v64 h1 { margin: 14px 0 28px; font: 600 clamp(54px,5vw,86px)/.9 "Cormorant Garamond", Georgia, serif; letter-spacing: -.035em; }
.about-hero-copy-v64 > p:not(.eyebrow) { max-width: 600px; color: rgba(241,234,220,.66); font: 15px/1.75 Inter, sans-serif; }
.about-hero-copy-v64 .about-lead-v64 { color: #e3d3b2 !important; font: 500 25px/1.35 "Cormorant Garamond", Georgia, serif !important; }
.about-signature-v64 { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(216,189,134,.2); display: flex; flex-direction: column; gap: 4px; }
.about-signature-v64 strong { font: 600 26px "Cormorant Garamond", Georgia, serif; }
.about-signature-v64 span { color: #a98a57; font: 9px "Special Elite", monospace; letter-spacing: .11em; text-transform: uppercase; }
.about-philosophy-v64 { width: 88vw; max-width: 1460px; margin: 0 auto; padding: 92px 0; border-top: 1px solid rgba(216,189,134,.22); display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.about-philosophy-heading-v64 h2, .about-work-copy-v64 h2, .about-honesty-v64 h2 { margin: 10px 0 0; font: 600 clamp(50px,5vw,78px)/.92 "Cormorant Garamond", Georgia, serif; letter-spacing: -.03em; }
.about-philosophy-copy-v64 p, .about-work-copy-v64 p, .about-honesty-v64 p { color: rgba(241,234,220,.65); font: 15px/1.75 Inter, sans-serif; }
.about-philosophy-copy-v64 blockquote { margin: 38px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(216,189,134,.2); color: #dfcfac; font: italic 500 31px/1.25 "Cormorant Garamond", Georgia, serif; }
.about-work-v64 { display: grid; grid-template-columns: 1.2fr .8fr; background: #e7dfcf; color: #211e19; }
.about-work-image-v64 { position: relative; min-height: 720px; overflow: hidden; }
.about-work-image-v64 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 48% 50%; }
.about-work-image-v64::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 70%, rgba(20,18,15,.62)); }
.about-work-caption-v64 { position: absolute; z-index: 1; left: 30px; right: 30px; bottom: 24px; display: flex; justify-content: space-between; color: #e9dcc1; font: 9px "Special Elite", monospace; letter-spacing: .1em; }
.about-work-copy-v64 { padding: 90px 7vw 80px; align-self: center; }
.about-work-copy-v64 p { color: #625c52; }
.about-work-copy-v64 .eyebrow { color: #8c7043; }
.about-manifesto-v64 { margin: 34px 0; padding: 26px 0; border-top: 1px solid rgba(31,29,26,.18); border-bottom: 1px solid rgba(31,29,26,.18); display: grid; gap: 7px; font: 600 30px/1.05 "Cormorant Garamond", Georgia, serif; }
.about-honesty-v64 { width: 88vw; max-width: 1460px; margin: 0 auto; padding: 105px 0 115px; display: grid; grid-template-columns: .35fr .75fr 1fr; gap: 5vw; border-bottom: 1px solid rgba(216,189,134,.2); }
.about-index-v64 { color: #9f8355; font: 9px "Special Elite", monospace; letter-spacing: .1em; }
.about-honesty-v64 h2 { font-size: clamp(48px,4.4vw,72px); }
@media (max-width: 980px) {
  .about-hero-v64, .about-philosophy-v64, .about-work-v64, .about-honesty-v64 { grid-template-columns: 1fr; }
  .about-hero-v64 { padding-top: 45px; }
  .about-hero-image-v64, .about-hero-image-v64 img { min-height: 520px; }
  .about-work-image-v64 { min-height: 540px; }
  .about-honesty-v64 { gap: 25px; }
}
@media (max-width: 620px) {
  .about-hero-v64, .about-philosophy-v64, .about-honesty-v64 { width: 90vw; }
  .about-hero-image-v64, .about-hero-image-v64 img { min-height: 430px; }
  .about-work-image-v64 { min-height: 430px; }
  .about-work-copy-v64 { padding: 65px 7vw; }
  .about-work-caption-v64 { flex-direction: column; gap: 6px; }
}


/* V68 — real Buy & Sell inventory listing */
.inventory-card-photo-v68 {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #090a08;
}

.inventory-card-photo-v68 img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.inventory-available-v68 {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 10px 7px;
  background: rgba(17,17,15,.92);
  color: #d8bd86;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .11em;
}

.inventory-condition-v68 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.inventory-condition-v68 span {
  padding: 7px 9px 6px;
  border: 1px solid rgba(216,189,134,.22);
  color: #b99b65;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 7px;
  letter-spacing: .08em;
}

.inventory-detail-page-v68 {
  background: #11110f;
}

.inventory-detail-page-v68 .active-nav {
  color: #d8bd86 !important;
}

.inventory-detail-main-v68 {
  padding-top: 78px;
  color: #eee8dc;
  background: #11110f;
}

.inventory-breadcrumb-v68 {
  max-width: 1450px;
  margin: 0 auto;
  padding: 30px 5vw 18px;
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,.34);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .09em;
}

.inventory-breadcrumb-v68 a {
  color: #b4965f;
  text-decoration: none;
}

.inventory-detail-layout-v68 {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  max-width: 1450px;
  margin: 0 auto;
  border-top: 1px solid rgba(216,189,134,.22);
  border-bottom: 1px solid rgba(216,189,134,.22);
}

.inventory-gallery-v68 {
  padding: 30px 30px 34px 5vw;
  border-right: 1px solid rgba(216,189,134,.18);
}

.inventory-main-image-v68 {
  position: relative;
  height: min(66vh, 720px);
  min-height: 520px;
  background: #080907;
  overflow: hidden;
}

.inventory-main-image-v68 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.inventory-main-image-v68 > span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 9px;
  background: rgba(17,17,15,.90);
  color: #c7a96f;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.inventory-thumbs-v68 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 9px;
}

.inventory-thumb-v68 {
  height: 88px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #090a08;
  cursor: pointer;
}

.inventory-thumb-v68 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inventory-thumb-v68.active {
  border-color: #c2a36a;
}

.inventory-watch-record-v68 {
  padding: 40px 5vw 42px 48px;
}

.inventory-record-top-v68 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #a98b58;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .09em;
}

.inventory-watch-record-v68 h1 {
  margin: 12px 0 7px;
  color: #f0ebe2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(50px, 4.3vw, 72px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.035em;
}

.inventory-ref-v68 {
  color: #b59660;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
}

.inventory-intro-v68 {
  margin: 26px 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.7;
}

.inventory-specs-v68 {
  border-top: 1px solid rgba(255,255,255,.12);
}

.inventory-specs-v68 div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.inventory-specs-v68 span,
.inventory-price-v68 span {
  color: #9d8254;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.inventory-specs-v68 strong {
  color: rgba(255,255,255,.80);
  font-size: 12px;
  font-weight: 500;
}

.inventory-price-v68 {
  margin: 29px 0 18px;
}

.inventory-price-v68 strong {
  display: block;
  margin-top: 7px;
  color: #eee7d9;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
}

.inventory-inquiry-button-v68 {
  display: block;
  padding: 16px 20px;
  border: 1px solid #d0b98d;
  background: #e8deca;
  color: #1e1913;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
}

.inventory-note-v68 {
  margin-top: 18px;
  color: rgba(255,255,255,.36);
  font-size: 10px;
  line-height: 1.6;
}

.inventory-condition-section-v68 {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  max-width: 1450px;
  margin: 0 auto;
  padding: 70px 5vw;
}

.inventory-condition-section-v68 h2,
.inventory-inquiry-heading-v68 h2 {
  margin: 10px 0 0;
  color: #f0ebe2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 4vw, 66px);
  font-weight: 500;
  line-height: .92;
}

.inventory-condition-copy-v68 {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.75;
}

.inventory-inquiry-v68 {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  max-width: 1450px;
  margin: 0 auto 75px;
  border: 1px solid rgba(216,189,134,.20);
}

.inventory-inquiry-heading-v68 {
  padding: 50px 5vw;
  border-right: 1px solid rgba(216,189,134,.18);
}

.inventory-inquiry-heading-v68 > p:last-child {
  color: rgba(255,255,255,.50);
  font-size: 12px;
  line-height: 1.65;
}

.inventory-inquiry-form-v68 {
  padding: 40px 5vw;
  background: #e8decb;
  color: #211c16;
}

.inventory-inquiry-form-v68 label {
  display: block;
  margin-bottom: 17px;
  color: #66543f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.inventory-inquiry-form-v68 input,
.inventory-inquiry-form-v68 textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 7px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(55,39,22,.35);
  background: transparent;
  color: #211c16;
  font: 14px "Inter", Arial, sans-serif;
  outline: 0;
}

.inventory-inquiry-form-v68 button {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid #292016;
  background: #1a1712;
  color: #eadfc8;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .inventory-detail-layout-v68,
  .inventory-condition-section-v68,
  .inventory-inquiry-v68 {
    grid-template-columns: 1fr;
  }

  .inventory-gallery-v68 {
    padding: 25px 5vw;
    border-right: 0;
    border-bottom: 1px solid rgba(216,189,134,.18);
  }

  .inventory-watch-record-v68 {
    padding: 38px 5vw;
  }

  .inventory-inquiry-heading-v68 {
    border-right: 0;
    border-bottom: 1px solid rgba(216,189,134,.18);
  }
}

@media (max-width: 650px) {
  .inventory-detail-main-v68 {
    padding-top: 72px;
  }

  .inventory-main-image-v68 {
    height: 55vh;
    min-height: 390px;
  }

  .inventory-thumbs-v68 {
    grid-template-columns: repeat(4, 1fr);
  }

  .inventory-thumb-v68 {
    height: 72px;
  }

  .inventory-specs-v68 div {
    grid-template-columns: 115px 1fr;
  }

  .inventory-condition-section-v68,
  .inventory-inquiry-v68 {
    margin-bottom: 45px;
  }
}


/* V69 — luxury inventory detail layout */
.inventory-detail-page-v69 {
  background: #0e0f0d;
  color: #eee8dc;
}

.inventory-detail-page-v69 .active-nav {
  color: #d8bd86 !important;
}

.inventory-detail-main-v69 {
  padding-top: 78px;
  background: #0e0f0d;
}

.inventory-breadcrumb-v69 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 18px 2vw 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
}

.inventory-breadcrumb-v69 a {
  color: #c2a46a;
  text-decoration: none;
}

.inventory-product-layout-v69 {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 52px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2vw 45px;
}

.inventory-main-image-v69 {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: #090a08;
  border: 1px solid rgba(216,189,134,.10);
}

.inventory-main-image-v69 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.inventory-expand-v69 {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(12,12,10,.88);
  color: #eee8dc;
  font-size: 19px;
  cursor: pointer;
}

.inventory-thumbs-wrap-v69 {
  display: grid;
  grid-template-columns: 26px minmax(0,1fr) 26px;
  gap: 7px;
  align-items: center;
  padding: 10px 8px;
  border: 1px solid rgba(216,189,134,.12);
  border-top: 0;
}

.inventory-thumbs-v69 {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
}

.inventory-thumbs-v69::-webkit-scrollbar {
  display: none;
}

.inventory-thumb-v69 {
  flex: 0 0 105px;
  height: 82px;
  padding: 0;
  border: 1px solid transparent;
  background: #080907;
  overflow: hidden;
  cursor: pointer;
}

.inventory-thumb-v69 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inventory-thumb-v69.active {
  border-color: #c8a765;
}

.inventory-thumb-arrow-v69 {
  border: 0;
  background: transparent;
  color: #c8a765;
  font-size: 31px;
  cursor: pointer;
}

.inventory-trust-grid-v69 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(216,189,134,.18);
}

.inventory-trust-grid-v69 > div {
  padding: 25px 28px 6px;
  text-align: center;
}

.inventory-trust-grid-v69 > div + div {
  border-left: 1px solid rgba(216,189,134,.18);
}

.inventory-trust-icon-v69 {
  display: block;
  margin-bottom: 12px;
  color: #b69254;
  font-size: 32px;
}

.inventory-trust-grid-v69 strong {
  display: block;
  color: #b99557;
  font-size: 11px;
  letter-spacing: .12em;
}

.inventory-trust-grid-v69 p {
  margin: 9px auto 0;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  line-height: 1.5;
}

.inventory-product-record-v69 {
  padding-top: 3px;
}

.inventory-availability-v69 {
  margin: 0 0 13px;
  color: #95a43b;
  font-size: 12px;
  letter-spacing: .16em;
}

.inventory-product-record-v69 h1 {
  margin: 0;
  color: #f0ebe2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 4vw, 64px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.03em;
}

.inventory-reference-v69 {
  margin: 13px 0 21px;
  color: #bd9551;
  font-size: 15px;
  letter-spacing: .12em;
}

.inventory-intro-v69 {
  padding: 20px 0 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.65;
}

.inventory-spec-table-v69 {
  margin-top: 2px;
}

.inventory-spec-table-v69 div {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 18px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.inventory-spec-table-v69 span {
  color: #bd9551;
  font-size: 11px;
  letter-spacing: .06em;
}

.inventory-spec-table-v69 strong {
  color: rgba(255,255,255,.79);
  font-size: 12px;
  font-weight: 400;
}

.inventory-condition-box-v69 {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(216,189,134,.25);
  border-radius: 7px;
  background: rgba(255,255,255,.015);
}

.inventory-condition-icon-v69 {
  color: #c39c58;
  font-size: 34px;
}

.inventory-condition-box-v69 span {
  color: #c39c58;
  font-size: 11px;
  letter-spacing: .10em;
}

.inventory-condition-box-v69 p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  line-height: 1.55;
}

.inventory-condition-box-v69 strong {
  color: rgba(255,255,255,.80);
  font-weight: 500;
}

.inventory-price-box-v69 {
  margin-top: 15px;
  padding: 14px 18px;
  border: 1px solid #b68e50;
  color: #c5a15f;
  font-size: 17px;
  letter-spacing: .11em;
  text-align: center;
}

.inventory-cta-v69 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-top: 11px;
  padding: 17px 18px;
  background: #c9a66a;
  color: #17130e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
}

.inventory-cta-v69 span {
  font-size: 21px;
}

.inventory-inquiry-v69 {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  max-width: 1500px;
  margin: 30px auto 75px;
  border: 1px solid rgba(216,189,134,.20);
}

.inventory-inquiry-copy-v69 {
  padding: 50px 5vw;
  border-right: 1px solid rgba(216,189,134,.18);
}

.inventory-inquiry-copy-v69 h2 {
  margin: 10px 0 15px;
  color: #f0ebe2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 4vw, 64px);
  font-weight: 500;
  line-height: .92;
}

.inventory-inquiry-copy-v69 > p:last-child {
  color: rgba(255,255,255,.52);
  font-size: 12px;
  line-height: 1.65;
}

.inventory-inquiry-form-v69 {
  padding: 38px 5vw;
  background: #e8decb;
  color: #211c16;
}

.inventory-inquiry-form-v69 label {
  display: block;
  margin-bottom: 17px;
  color: #66543f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.inventory-inquiry-form-v69 input,
.inventory-inquiry-form-v69 textarea {
  width: 100%;
  box-sizing: border-box;
  margin-top: 7px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(55,39,22,.35);
  background: transparent;
  color: #211c16;
  font: 14px "Inter", Arial, sans-serif;
  outline: 0;
}

.inventory-inquiry-form-v69 button {
  width: 100%;
  padding: 17px 20px;
  border: 1px solid #292016;
  background: #1a1712;
  color: #eadfc8;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
  cursor: pointer;
}

.inventory-lightbox-v69 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3vw;
  background: rgba(0,0,0,.92);
}

.inventory-lightbox-v69.open {
  display: flex;
}

.inventory-lightbox-v69 img {
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
}

.inventory-lightbox-close-v69 {
  position: absolute;
  top: 22px;
  right: 30px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 44px;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .inventory-product-layout-v69,
  .inventory-inquiry-v69 {
    grid-template-columns: 1fr;
  }

  .inventory-product-layout-v69 {
    gap: 30px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .inventory-product-record-v69 {
    padding-bottom: 30px;
  }

  .inventory-inquiry-copy-v69 {
    border-right: 0;
    border-bottom: 1px solid rgba(216,189,134,.18);
  }
}

@media (max-width: 650px) {
  .inventory-detail-main-v69 {
    padding-top: 72px;
  }

  .inventory-breadcrumb-v69 {
    padding-left: 5vw;
    padding-right: 5vw;
    overflow-x: auto;
    white-space: nowrap;
  }

  .inventory-main-image-v69 {
    height: 440px;
  }

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

  .inventory-trust-grid-v69 > div + div {
    border-left: 0;
    border-top: 1px solid rgba(216,189,134,.18);
  }

  .inventory-spec-table-v69 div {
    grid-template-columns: 112px 1fr;
  }

  .inventory-inquiry-v69 {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}


/* V71 — Stripe purchase flow */
.inventory-buy-now-v71 {
  background: #c9a66a;
}

.inventory-question-v71 {
  display: block;
  margin-top: 13px;
  color: #c7a466;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
  text-align: center;
  text-decoration: none;
}

.purchase-confirmation-v71 {
  margin: 0;
  min-height: 100vh;
  background: #0e0f0d;
  color: #eee8dc;
  font-family: "Inter", Arial, sans-serif;
}

.purchase-confirmation-shell-v71 {
  width: min(720px, 86vw);
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.purchase-confirmation-shell-v71 img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 28px;
}

.purchase-confirmation-shell-v71 > p:first-of-type {
  color: #b49358;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}

.purchase-confirmation-shell-v71 h1 {
  margin: 17px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(70px, 10vw, 116px);
  font-weight: 500;
  line-height: .82;
}

.purchase-confirmation-shell-v71 h2 {
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.purchase-confirmation-rule-v71 {
  width: 90px;
  height: 1px;
  margin: 30px 0;
  background: #9e7d48;
}

.purchase-confirmation-copy-v71 {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  line-height: 1.75;
}

.purchase-confirmation-shell-v71 a {
  color: #c9a66a;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
  text-decoration: none;
}


/* V73 — automatic sold-watch status */
.inventory-sold-v73 .inventory-available-v68 {
  background: rgba(112, 31, 26, .94);
  color: #f0ddd1;
}

.inventory-sold-v73 .inventory-card-photo-v68 img {
  opacity: .58;
}

.inventory-sold-v73 .inventory-card-photo-v68::after {
  content: "SOLD";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  padding: 12px 22px 9px;
  border: 2px solid rgba(226, 191, 151, .72);
  color: rgba(240, 221, 209, .92);
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 28px;
  letter-spacing: .15em;
  background: rgba(80, 19, 16, .58);
}

.inventory-sold-detail-v73 .inventory-availability-v69 {
  color: #b56d5a;
}

.inventory-sold-button-v73 {
  pointer-events: none;
  cursor: default;
  background: #4d4236 !important;
  color: rgba(255,255,255,.65) !important;
}


/* V74 — Services page rebuild */
.services-hero-v74 {
  background: #11110f;
  color: #eee8dc;
  padding: 44px 5vw 0;
}

.services-hero-inner-v74 {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 58px;
  align-items: stretch;
  max-width: 1450px;
  margin: 0 auto;
  padding: 34px 0 46px;
  border-bottom: 1px solid rgba(216,189,134,.22);
}

.services-hero-copy-v74 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 18px;
}

.services-hero-copy-v74 h1 {
  margin: 13px 0 24px;
  color: #f0ebe2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 5.7vw, 92px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.04em;
}

.services-hero-lede-v74 {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.75;
}

.services-hero-actions-v74 {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 31px;
}

.services-primary-cta-v74 {
  padding: 16px 22px;
  background: #e8deca;
  color: #1d1913;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .09em;
  text-decoration: none;
}

.services-secondary-cta-v74 {
  color: #c6a56a;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .09em;
  text-decoration: none;
}

.services-hero-image-v74 {
  position: relative;
  min-height: 540px;
  background: #080907;
  overflow: hidden;
}

.services-hero-image-v74 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.78) contrast(1.04) brightness(.80);
}

.services-hero-image-v74::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.28));
  pointer-events: none;
}

.services-hero-caption-v74 {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #d2b57e;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.services-options-wrap-v74 {
  max-width: 1450px;
  margin: 0 auto;
}

/* Remove the old full-screen/min-height behavior that created the dead black void. */
.services-hero-v74,
.services-options-wrap-v74,
.services-options-wrap-v74 > div {
  min-height: 0 !important;
  height: auto !important;
}

@media (max-width: 1000px) {
  .services-hero-inner-v74 {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-hero-image-v74 {
    min-height: 500px;
  }
}

@media (max-width: 650px) {
  .services-hero-v74 {
    padding: 28px 5vw 0;
  }

  .services-hero-inner-v74 {
    padding-top: 18px;
  }

  .services-hero-copy-v74 h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .services-hero-image-v74 {
    min-height: 390px;
  }

  .services-hero-caption-v74 {
    flex-direction: column;
    gap: 6px;
  }
}


/* V75 — Refined editorial headline scale */
.services-hero-copy-v74 h1 {
  font-size: clamp(48px, 4.35vw, 70px);
  line-height: .94;
  letter-spacing: -.035em;
}

.services-options-wrap-v74 h1,
.services-options-wrap-v74 h2 {
  font-size: clamp(42px, 4vw, 66px);
  line-height: .98;
}

@media (max-width: 650px) {
  .services-hero-copy-v74 h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .services-options-wrap-v74 h1,
  .services-options-wrap-v74 h2 {
    font-size: clamp(38px, 11vw, 52px);
  }
}


/* V76 — Workshop scope section heading refinement */
.services-options-wrap-v74 h1,
.services-options-wrap-v74 h2 {
  font-size: clamp(40px, 3.35vw, 52px) !important;
  line-height: 1.02;
  letter-spacing: -.03em;
}

@media (max-width: 650px) {
  .services-options-wrap-v74 h1,
  .services-options-wrap-v74 h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }
}

/* V77 — Reduce Workshop Scope heading so it reads as a section title */
.service-scope-compact h2 {
  font-size: clamp(38px, 3vw, 46px) !important;
  line-height: 1.06;
  letter-spacing: -.025em;
}

@media (max-width: 650px) {
  .service-scope-compact h2 {
    font-size: clamp(32px, 9vw, 40px) !important;
  }
}

/* V78 — Refine service intake typography hierarchy */
.service-request .contact-copy h2 {
  font-size: clamp(42px, 4vw, 58px) !important;
  line-height: 1.02;
  letter-spacing: -.03em;
}

.service-request .dossier-header h3 {
  font-size: clamp(32px, 2.5vw, 36px) !important;
  line-height: 1.02;
  letter-spacing: -.02em;
}

@media (max-width: 650px) {
  .service-request .contact-copy h2 {
    font-size: clamp(38px, 11vw, 48px) !important;
  }

  .service-request .dossier-header h3 {
    font-size: clamp(30px, 8vw, 34px) !important;
  }
}


/* V80 — Home page visual refinement */
.home-page-v80 main,
.home-page-v80 section,
.home-page-v80 .hero,
.home-page-v80 .home-hero,
.home-page-v80 .story-section,
.home-page-v80 .case-files-section,
.home-page-v80 .services-section,
.home-page-v80 .workshop-section,
.home-page-v80 .about-section,
.home-page-v80 .buy-sell-section {
  min-height: 0 !important;
  height: auto !important;
}

/* Remove exaggerated full-screen spacing and dead zones. */
.home-page-v80 section {
  padding-top: clamp(64px, 7vw, 104px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.home-page-v80 .hero,
.home-page-v80 .home-hero {
  min-height: auto !important;
  padding-top: clamp(46px, 6vw, 88px);
  padding-bottom: clamp(52px, 6vw, 92px);
}

/* Home headline system now matches Services/About. */
.home-page-v80 h1 {
  font-size: clamp(50px, 4.7vw, 76px) !important;
  line-height: .94 !important;
  letter-spacing: -.035em !important;
}

.home-page-v80 h2 {
  font-size: clamp(40px, 3.55vw, 56px) !important;
  line-height: .98 !important;
  letter-spacing: -.03em !important;
}

.home-page-v80 h3 {
  font-size: clamp(28px, 2.2vw, 38px) !important;
  line-height: 1.02 !important;
}

/* Constrain long copy so it reads editorially instead of spanning empty space. */
.home-page-v80 p {
  max-width: 680px;
}

.home-page-v80 .hero-copy,
.home-page-v80 .home-hero-copy,
.home-page-v80 .section-copy,
.home-page-v80 .story-copy,
.home-page-v80 .intro-copy {
  max-width: 640px;
}

/* Reduce oversized gaps inherited from older iterations. */
.home-page-v80 [class*="section"] + [class*="section"],
.home-page-v80 .section + .section {
  margin-top: 0 !important;
}

.home-page-v80 .eyebrow,
.home-page-v80 [class*="eyebrow"] {
  margin-bottom: 14px;
}

/* More controlled cards and content grids. */
.home-page-v80 [class*="grid"] {
  row-gap: clamp(28px, 3vw, 48px);
}

.home-page-v80 [class*="card"] {
  min-height: 0 !important;
}

/* Keep images visually intentional rather than stretched. */
.home-page-v80 img {
  max-width: 100%;
}

.home-page-v80 [class*="image"] img,
.home-page-v80 [class*="photo"] img,
.home-page-v80 [class*="media"] img {
  object-fit: cover;
}

/* Reduce large blank bands immediately before footer. */
.home-page-v80 footer {
  margin-top: 0 !important;
}

@media (max-width: 700px) {
  .home-page-v80 section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .home-page-v80 h1 {
    font-size: clamp(44px, 13vw, 60px) !important;
  }

  .home-page-v80 h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .home-page-v80 h3 {
    font-size: clamp(26px, 8vw, 34px) !important;
  }
}


/* V81 — Homepage structural refinement */

/* Give the hero a deliberate visual break from the navigation. */
.home-page-v80 [data-home-hero-v81="true"],
.home-page-v80 .hero,
.home-page-v80 .home-hero {
  padding-top: clamp(72px, 6.5vw, 104px) !important;
}

/* Tighten the hero bottom so the following section begins without a dead band. */
.home-page-v80 [data-home-hero-v81="true"],
.home-page-v80 .hero,
.home-page-v80 .home-hero {
  padding-bottom: clamp(58px, 5vw, 78px) !important;
  margin-bottom: 0 !important;
}

/* Eliminate inherited spacer/min-height behavior between hero and latest case file. */
.home-page-v80 main > section,
.home-page-v80 main > div,
.home-page-v80 [data-home-case-v81="true"] {
  min-height: 0 !important;
}

.home-page-v80 [data-home-case-v81="true"] {
  margin-top: 0 !important;
  padding-top: clamp(56px, 5vw, 78px) !important;
  padding-bottom: clamp(58px, 5vw, 82px) !important;
}

/* Collapse anonymous/spacer bands that only create empty vertical zones. */
.home-page-v80 main > div:empty,
.home-page-v80 main > section:empty {
  display: none !important;
}

/* Latest Case File: lighter image weight and tighter rhythm. */
.home-page-v80 [data-home-case-v81="true"] img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.home-page-v80 [data-home-case-v81="true"] [class*="image"],
.home-page-v80 [data-home-case-v81="true"] [class*="photo"],
.home-page-v80 [data-home-case-v81="true"] [class*="media"] {
  max-width: 84%;
  margin-left: 0;
}

.home-page-v80 [data-home-case-v81="true"] h2 {
  font-size: clamp(38px, 3.2vw, 52px) !important;
  line-height: .98 !important;
}

.home-page-v80 [data-home-case-v81="true"] p {
  margin-bottom: 18px;
}

/* Broader homepage audit: keep section headlines below hero scale. */
.home-page-v80 section:not([data-home-hero-v81="true"]) h2 {
  font-size: clamp(38px, 3.25vw, 52px) !important;
  line-height: 1 !important;
}

.home-page-v80 section:not([data-home-hero-v81="true"]) h3 {
  font-size: clamp(27px, 2.1vw, 36px) !important;
}

/* Reduce exaggerated section gaps across legacy blocks. */
.home-page-v80 main > section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.home-page-v80 main > section + section {
  padding-top: clamp(58px, 5.5vw, 84px) !important;
}

/* Avoid cream/black bands caused by padding-only wrappers. */
.home-page-v80 [class*="spacer"],
.home-page-v80 [class*="gap"],
.home-page-v80 [class*="band"] {
  min-height: 0 !important;
}

/* Mobile refinement */
@media (max-width: 700px) {
  .home-page-v80 [data-home-hero-v81="true"],
  .home-page-v80 .hero,
  .home-page-v80 .home-hero {
    padding-top: 58px !important;
    padding-bottom: 50px !important;
  }

  .home-page-v80 [data-home-case-v81="true"] {
    padding-top: 48px !important;
    padding-bottom: 52px !important;
  }

  .home-page-v80 [data-home-case-v81="true"] [class*="image"],
  .home-page-v80 [data-home-case-v81="true"] [class*="photo"],
  .home-page-v80 [data-home-case-v81="true"] [class*="media"] {
    max-width: 100%;
  }
}


/* V82 — final homepage hero-to-case-file spacing correction */

/* More breathing room below the navigation divider. */
.home-page-v80 [data-home-hero-v81="true"],
.home-page-v80 .hero,
.home-page-v80 .home-hero {
  padding-top: calc(clamp(72px, 6.5vw, 104px) + 20px) !important;
}

/* Remove the remaining spacer band between hero and Latest Case File. */
.home-page-v80 [data-home-hero-v81="true"] {
  margin-bottom: 0 !important;
}

.home-page-v80 [data-home-hero-v81="true"] + *,
.home-page-v80 [data-home-case-v81="true"] {
  margin-top: 0 !important;
}

.home-page-v80 [data-home-case-v81="true"] {
  padding-top: 0 !important;
}

/* Collapse any padding-only wrapper immediately before the case-file section. */
.home-page-v80 [data-home-hero-v81="true"] + div,
.home-page-v80 [data-home-hero-v81="true"] + section {
  min-height: 0 !important;
}

.home-page-v80 [data-home-hero-v81="true"] + div:has(+ [data-home-case-v81="true"]),
.home-page-v80 [data-home-hero-v81="true"] + section:has(+ [data-home-case-v81="true"]) {
  display: none !important;
}

@media (max-width: 700px) {
  .home-page-v80 [data-home-hero-v81="true"],
  .home-page-v80 .hero,
  .home-page-v80 .home-hero {
    padding-top: 72px !important;
  }
}


/* V84 — Latest Case File clean re-balance
   Scope only the section's direct layout and image; do not target nested
   image/photo/media classes, which can alter decorative overlay geometry. */
.home-page-v80 [data-home-case-v81="true"] {
  padding-bottom: clamp(38px, 3.5vw, 56px) !important;
}

.home-page-v80 [data-home-case-v81="true"] > .home-case-v81-inner {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr) !important;
}

.home-page-v80 [data-home-case-v81="true"] .home-case-v81-image img {
  max-height: 550px !important;
  width: auto !important;
  max-width: 100% !important;
}

/* Prevent the case image's decorative wash/pseudo layers from crossing the photo. */
.home-page-v80 [data-home-case-v81="true"] .home-case-v81-image::before,
.home-page-v80 [data-home-case-v81="true"] .home-case-v81-image::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 900px) {
  .home-page-v80 [data-home-case-v81="true"] > .home-case-v81-inner {
    grid-template-columns: 1fr !important;
  }
}


/* V85 — remove obsolete Latest Case File image overlay */
.home-page-v80 .latest-case-image-shade {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}


/* V86 — Homepage visual anchors */

/* Philosophy: add a quiet evidence image without turning the section into a gallery. */
.home-page-v80 .home-philosophy-v86 {
  position: relative;
  overflow: hidden;
  grid-template-columns: .18fr .9fr .86fr .72fr !important;
  gap: clamp(28px, 3vw, 58px);
  align-items: center;
}

.home-page-v80 .home-philosophy-v86::after {
  content: "";
  display: block;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(14,15,13,.08), rgba(14,15,13,.2)),
    url("workshop-dial-evidence.jpg") center / cover no-repeat;
  border: 1px solid rgba(201,166,106,.18);
}

/* Current collection cards: use actual site photography where the subject matches. */
.home-page-v80 .watch-card .watch-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background-color: #151513;
}

.home-page-v80 .watch-card .watch-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.28));
  pointer-events: none;
}

.home-page-v80 .watch-card .watch-image.image-one {
  background-image: url("case-file-bot-001-lecoultre.jpg");
  background-size: cover;
  background-position: center 46%;
}

.home-page-v80 .watch-card .watch-image.image-two {
  background-image: url("case-file-bot-002-kienzle.jpg");
  background-size: cover;
  background-position: center;
}

/* Third card stays an atmospheric study because there is no honest Longines image in the current package. */
.home-page-v80 .watch-card .watch-image.image-three {
  background:
    linear-gradient(135deg, rgba(20,20,18,.18), rgba(0,0,0,.56)),
    url("workshop-current-bench.jpg") center / cover no-repeat;
}

.home-page-v80 .watch-card .watch-label {
  position: relative;
  z-index: 2;
}

/* Workshop: replace legacy empty image boxes with actual bench photography. */
.home-page-v80 .workshop-image.large {
  background: url("workshop-current-bench.jpg") center / cover no-repeat;
}

.home-page-v80 .workshop-image.detail-one {
  background: url("workshop-alarm-detail.jpg") center / cover no-repeat;
}

.home-page-v80 .workshop-image.detail-two {
  background: url("workshop-dial-evidence.jpg") center / cover no-repeat;
}

.home-page-v80 .workshop-image {
  min-height: 250px;
  background-color: #0b0c0a;
}

.home-page-v80 .workshop-image.large {
  min-height: 520px;
}

/* Founder area: use the existing portrait instead of a placeholder. */
.home-page-v80 .about-home-image-v86 {
  min-height: 560px;
  overflow: hidden;
  background: #0d0e0c;
}

.home-page-v80 .about-home-image-v86 img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 35%;
}

/* Tighten sections now that the visual anchors are present. */
.home-page-v80 .collection-section,
.home-page-v80 .workshop-section,
.home-page-v80 .about-section {
  padding-top: clamp(64px, 6vw, 92px) !important;
  padding-bottom: clamp(64px, 6vw, 92px) !important;
}

@media (max-width: 900px) {
  .home-page-v80 .home-philosophy-v86 {
    grid-template-columns: 1fr !important;
  }

  .home-page-v80 .home-philosophy-v86::after {
    min-height: 360px;
  }

  .home-page-v80 .about-home-image-v86,
  .home-page-v80 .about-home-image-v86 img {
    min-height: 440px;
  }
}


/* V88 — Preservation Before Perfection final photography */
.home-page-v80 .workshop-section .workshop-image.large {
  background-image: url("preservation-movement.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
}

.home-page-v80 .workshop-section .workshop-image.detail-one {
  background-image: url("preservation-dial.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
}

.home-page-v80 .workshop-section .workshop-image.detail-two {
  background-image: url("preservation-tools.jpg") !important;
  background-position: center !important;
  background-size: cover !important;
}

.home-page-v80 .workshop-section .workshop-image {
  overflow: hidden;
  background-repeat: no-repeat !important;
}


/* V91 — Case File 003 pending investigation */
.home-page-v80 .watch-card .watch-image.image-three {
  background-image: url("case-file-bot-003-coming-soon.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
}

.home-page-v80 .case-link-pending {
  cursor: default;
}


/* V92 — Workshop page finalized imagery */
.workshop-main-v56 .bench-photo img,
.workshop-main-v56 .workshop-evidence-photo,
.workshop-main-v56 .workshop-tools-image-v92 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-main-v56 .bench-photo img {
  min-height: 620px;
  object-position: center;
}

.workshop-main-v56 .workshop-card-image {
  overflow: hidden;
}

.workshop-main-v56 .workshop-evidence-photo {
  min-height: 360px;
  object-position: center;
}

.workshop-tools-v92 {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  background: #0e0f0d;
  color: #f2ede3;
  border-top: 1px solid rgba(201,166,106,.22);
  border-bottom: 1px solid rgba(201,166,106,.22);
}

.workshop-tools-copy-v92 {
  padding: clamp(62px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workshop-tools-copy-v92 h2 {
  margin: 0 0 26px;
  max-width: 560px;
}

.workshop-tools-copy-v92 p:last-child {
  max-width: 580px;
  color: rgba(242,237,227,.72);
  line-height: 1.7;
}

.workshop-tools-image-v92 {
  min-height: 520px;
  overflow: hidden;
}

.workshop-tools-image-v92 img {
  min-height: 520px;
  object-position: center;
}

@media (max-width: 860px) {
  .workshop-tools-v92 {
    grid-template-columns: 1fr;
  }

  .workshop-tools-image-v92,
  .workshop-tools-image-v92 img {
    min-height: 380px;
  }

  .workshop-main-v56 .bench-photo img {
    min-height: 460px;
  }

  .workshop-main-v56 .workshop-evidence-photo {
    min-height: 300px;
  }
}


/* V93 — Workshop record card image coherence */
.workshop-main-v56 .workshop-record-grid .workshop-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden;
  background: #0d0e0c;
}

.workshop-main-v56 .workshop-record-grid .workshop-evidence-photo {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
}

/* Individual focal-point control while preserving one visual system. */
.workshop-main-v56 .workshop-record-card:nth-child(1) .workshop-evidence-photo {
  object-position: center 49% !important;
}

.workshop-main-v56 .workshop-record-card:nth-child(2) .workshop-evidence-photo {
  object-position: center 48% !important;
}

.workshop-main-v56 .workshop-record-card:nth-child(3) .workshop-evidence-photo {
  object-position: center 43% !important;
}

.workshop-main-v56 .workshop-record-grid .workshop-card-image > span {
  z-index: 2;
}

@media (max-width: 760px) {
  .workshop-main-v56 .workshop-record-grid .workshop-card-image {
    aspect-ratio: 4 / 3 !important;
  }
}


/* V95 — Latest Case File balanced editorial layout */
.home-page-v80 [data-home-case-v81="true"] {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

.home-page-v80 [data-home-case-v81="true"] > * {
  min-width: 0;
}

/* Left visual panel */
.home-page-v80 [data-home-case-v81="true"] > :first-child {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: #0d0e0c !important;
  padding: clamp(42px, 4.5vw, 72px) !important;
  min-height: 720px !important;
}

.home-page-v80 [data-home-case-v81="true"] > :first-child img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  object-position: center !important;
  max-height: none !important;
  min-height: 0 !important;
  margin: 0 !important;
}

/* Any wrapper directly around the image should become the clean image frame. */
.home-page-v80 [data-home-case-v81="true"] > :first-child > div:has(img) {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  background: #0d0e0c !important;
}

.home-page-v80 [data-home-case-v81="true"] > :first-child > div:has(img) img {
  height: 100% !important;
}

/* Keep the case-file label close to the image. */
.home-page-v80 [data-home-case-v81="true"] > :first-child > *:last-child {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

/* Right editorial panel */
.home-page-v80 [data-home-case-v81="true"] > :last-child {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(58px, 6vw, 104px) !important;
  min-height: 720px !important;
}

/* Restore equal visual weight between image and text. */
.home-page-v80 [data-home-case-v81="true"] h2 {
  max-width: 520px !important;
}

.home-page-v80 [data-home-case-v81="true"] p {
  max-width: 680px !important;
}

@media (max-width: 900px) {
  .home-page-v80 [data-home-case-v81="true"] {
    grid-template-columns: 1fr !important;
  }

  .home-page-v80 [data-home-case-v81="true"] > :first-child,
  .home-page-v80 [data-home-case-v81="true"] > :last-child {
    min-height: 0 !important;
  }

  .home-page-v80 [data-home-case-v81="true"] > :first-child {
    padding: 34px !important;
  }

  .home-page-v80 [data-home-case-v81="true"] > :last-child {
    padding: 52px 34px !important;
  }
}


/* V96 — Latest Case File portrait image treatment */
.home-page-v80 [data-home-case-v81="true"] > :first-child {
  align-items: center !important;
}

.home-page-v80 [data-home-case-v81="true"] > :first-child > div:has(img) {
  width: min(78%, 560px) !important;
  max-width: 560px !important;
  aspect-ratio: 4 / 5 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-page-v80 [data-home-case-v81="true"] > :first-child img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.home-page-v80 [data-home-case-v81="true"] > :first-child > *:last-child {
  width: min(78%, 560px) !important;
  max-width: 560px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 900px) {
  .home-page-v80 [data-home-case-v81="true"] > :first-child > div:has(img),
  .home-page-v80 [data-home-case-v81="true"] > :first-child > *:last-child {
    width: min(88%, 560px) !important;
  }
}
