:root {
  color-scheme: light;
  --ink: #151412;
  --muted: #6f6a61;
  --paper: #f7f3eb;
  --paper-strong: #fffaf1;
  --line: #ded6c8;
  --steel: #315a64;
  --steel-dark: #203940;
  --garnet: #8d3028;
  --gold: #c79b43;
  --success: #1f6f5f;
  --shadow: 0 24px 70px rgba(21, 20, 18, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid rgba(21, 20, 18, 0.1);
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 10px 34px rgba(21, 20, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.73rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.primary-action,
.secondary-action,
.tab,
.lead-form button,
.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-cta {
  padding: 0 18px;
  color: var(--paper-strong);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(640px, 70svh);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  background-image: url("assets/hero-watch.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.88) 0%, rgba(12, 12, 11, 0.68) 38%, rgba(12, 12, 11, 0.08) 78%),
    linear-gradient(0deg, rgba(12, 12, 11, 0.25), rgba(12, 12, 11, 0));
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(220px, 300px);
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(38px, 6vh, 72px) 0;
}

.hero-copy {
  color: var(--paper-strong);
  padding-bottom: 14px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 5.2vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-copy p {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-actions,
.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-action,
.secondary-action {
  padding: 0 18px;
  font-weight: 700;
}

.primary-action {
  color: var(--paper-strong);
  background: var(--garnet);
  border-color: var(--garnet);
}

.secondary-action {
  color: var(--paper-strong);
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(255, 250, 241, 0.34);
}

.primary-action:hover,
.secondary-action:hover,
.nav-cta:hover,
.lead-form button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  align-self: end;
  width: min(100%, 300px);
  padding: 20px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: var(--radius);
  color: var(--paper-strong);
  background: rgba(18, 18, 17, 0.58);
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 0.92rem;
}

.takeaways,
.inventory-section,
.process-section,
.sell-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.takeaways {
  padding: clamp(44px, 8vw, 92px) 0;
}

.takeaways h2,
.process-section h2 {
  max-width: 760px;
}

.takeaway-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.takeaway-grid article,
.process-grid article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper-strong);
}

.takeaway-grid span,
.process-grid span {
  color: var(--garnet);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.takeaway-grid h3,
.process-grid h3 {
  margin-top: 26px;
}

.takeaway-grid p,
.process-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.inventory-section {
  padding: clamp(44px, 8vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.inventory-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.tabs {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: min(100%, 330px);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-strong);
}

.tab {
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
}

.tab + .tab {
  border-left: 1px solid var(--ink);
}

.tab span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--paper-strong);
  background: var(--steel);
  font-size: 0.78rem;
}

.tab.is-active {
  color: var(--paper-strong);
  background: var(--ink);
}

.inventory-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 210px) minmax(180px, 220px);
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.68);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper-strong);
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 155, 67, 0.45);
  outline-offset: 2px;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.watch-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(21, 20, 18, 0.07);
}

.watch-photo,
.drawer-photo {
  background-image: url("assets/watch-sprite.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  background-position: var(--sprite-position);
}

.watch-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #e7e0d6;
}

.watch-card[data-status="sold"] .watch-photo::after {
  content: "Sold";
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--paper-strong);
  background: rgba(141, 48, 40, 0.92);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.watch-card[data-status="sold"] .watch-photo {
  filter: saturate(0.55);
}

.watch-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.watch-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.watch-meta span:last-child {
  color: var(--steel);
  text-align: right;
}

.watch-title {
  display: grid;
  gap: 8px;
}

.watch-title h3 {
  font-size: 1.35rem;
}

.watch-title p {
  margin: 0;
  color: var(--muted);
}

.watch-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.watch-specs span {
  min-width: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.watch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.price {
  display: grid;
  gap: 2px;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.details-button {
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.details-button:hover {
  color: var(--paper-strong);
  background: var(--ink);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  background: rgba(255, 250, 241, 0.62);
}

.process-section {
  padding: clamp(44px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.sell-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(44px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.sell-copy {
  position: sticky;
  top: 104px;
}

.sell-copy p {
  max-width: 620px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(21, 20, 18, 0.07);
}

.lead-form button {
  width: 100%;
  color: var(--paper-strong);
  background: var(--steel-dark);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.detail-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto auto 1fr;
  width: min(470px, 100%);
  height: 100dvh;
  overflow: auto;
  transform: translateX(104%);
  transition: transform 180ms ease;
  border-left: 1px solid var(--line);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.detail-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  justify-self: end;
  margin: 14px 14px 0;
  padding: 0 14px;
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.drawer-photo {
  aspect-ratio: 1 / 0.85;
  margin: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #e7e0d6;
}

.drawer-body {
  padding: 6px 24px 28px;
}

.drawer-status {
  margin: 0 0 10px;
  color: var(--garnet);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drawer-body p {
  color: var(--muted);
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 0;
}

.spec-list div {
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-list dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.drawer-actions .secondary-action {
  color: var(--ink);
  border-color: var(--ink);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(21, 20, 18, 0.42);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 4vw, 46px);
  color: rgba(255, 250, 241, 0.7);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-panel {
    justify-self: start;
  }

  .takeaway-grid,
  .process-grid,
  .watch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sell-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 14px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-media {
    background-position: 67% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(12, 12, 11, 0.9) 0%, rgba(12, 12, 11, 0.72) 58%, rgba(12, 12, 11, 0.14) 100%),
      linear-gradient(0deg, rgba(12, 12, 11, 0.35), rgba(12, 12, 11, 0));
  }

  .hero-inner,
  .takeaways,
  .inventory-section,
  .process-section,
  .sell-section {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .hero-actions,
  .drawer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .inventory-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .tabs,
  .inventory-tools,
  .takeaway-grid,
  .process-grid,
  .watch-grid {
    grid-template-columns: 1fr;
  }

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

  .details-button {
    width: 100%;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }
}
