/* Patrimony Collection — quiet-luxury look.
   Copy is unchanged; this file only restyles the static site. */

:root {
  --paper: #f4efe6;
  --paper-deep: #ebe4d8;
  --ink: #1a1714;
  --ink-soft: #241f1a;
  --cream: #f4efe6;
  --muted-on-paper: #5c564e;
  --muted-on-ink: #c9c0b3;
  --rule-paper: #d8d0c4;
  --rule-ink: #3a342c;
  --gold: #c4a574;
  --gold-deep: #8f7350;
  --color-bg: var(--paper);
  --color-text: var(--ink);
  --color-accent: var(--gold-deep);
  --color-accent-700: var(--gold-deep);
  --color-divider: var(--rule-paper);
  --color-plate: var(--ink-soft);
  --color-coast: #8a7d6b;
  --font-heading: "Fraunces", "Source Serif 4", "Iowan Old Style", Palatino, Georgia, serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --space-3: 12px;
  --wrap: 1160px;
  --gutter: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
    background: var(--ink);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.band { width: 100%; }
.band-ink {
  background: var(--ink);
  color: var(--cream);
  --color-text: var(--cream);
  --color-divider: var(--rule-ink);
  --color-accent: var(--gold);
  --color-accent-700: var(--gold);
}
.band-paper {
  background: var(--paper);
  color: var(--ink);
}

.kicker {
  display: block;
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.band-ink .kicker { color: var(--gold); }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
}

h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.12;
  max-width: 16ch;
}

h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 72px;
  padding-inline: max(var(--gutter), calc((100% - var(--wrap)) / 2 + var(--gutter)));
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-brand {
  margin-right: auto;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--cream);
}
.nav a:not(.btn) { color: #c9c0b3; }
.nav a:not(.btn):hover,
.nav a[aria-current="location"] { color: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 12px 22px;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  background: none;
  color: inherit;
  appearance: none;
  border-radius: 0;
}
.btn-primary,
.btn-solid {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-solid:hover,
.btn-primary:hover { opacity: 0.88; color: var(--ink); }
.band-paper .btn-solid,
.band-paper .btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.band-paper .btn-solid:hover { color: var(--cream); }
.btn-ghost,
.btn-outline {
  border-color: #8f7350;
  color: inherit;
  background: transparent;
}
.btn-outline:hover,
.btn-ghost:hover { border-color: currentColor; }

.nav .btn {
  min-height: 36px;
  padding: 8px 16px;
  letter-spacing: 0.14em;
}

.input {
  border: 1px solid #5a5348;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 14px;
  color: var(--cream);
  border-radius: 0;
  appearance: none;
  min-height: 44px;
  flex: 1;
  min-width: 220px;
}
.input::placeholder { color: #8a8276; }
.input:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.hero {
  padding: 104px 0 96px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: flex-end;
}
.hero h1 {
  font-size: clamp(46px, 8vw, 108px);
  line-height: 1.02;
  font-weight: 300;
  margin: 28px 0 0 -0.03em;
  max-width: 14ch;
}
.hero h1 span { display: block; }
.hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 7fr);
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-ink);
  max-width: 62ch;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  color: var(--muted-on-ink);
  text-align: justify;
  hyphens: auto;
}
.actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.cinematic {
  margin: 0;
  width: 100%;
  background: var(--ink);
}
.plate { background: var(--ink-soft); }
.plate-surface { display: block; background: var(--ink-soft); }

.cinematic-wide,
.cinematic-tall {
  width: 100%;
  background-color: #12100e;
  background-image:
    linear-gradient(180deg, rgba(18, 16, 14, 0.35) 0%, rgba(18, 16, 14, 0.72) 100%),
    url("../images/pc-screen-1.png");
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}
.cinematic-wide { aspect-ratio: 21 / 9; }
.cinematic-tall {
  aspect-ratio: 4 / 5;
  background-position: center 28%;
  background-image:
    linear-gradient(180deg, rgba(18, 16, 14, 0.2) 0%, rgba(18, 16, 14, 0.55) 100%),
    url("../images/pc-screen-1.png");
}

.map-block { margin: 0; padding: 88px 0; }
.map-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule-paper);
}
.map-aside {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted-on-paper);
}
.map-block iframe {
  display: block;
  width: 100%;
  aspect-ratio: 12 / 5.2;
  border: 0;
  margin-top: 20px;
  background: var(--paper-deep);
}

.stats-band { padding: 0; }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stats > div {
  padding: 48px 28px 48px 0;
  border-left: 1px solid var(--rule-ink);
  padding-left: 28px;
}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 52px;
  line-height: 1.05;
  margin: 0;
  font-feature-settings: "tnum" 1;
}
.stat-num.accent { color: var(--gold); }
.stat-label {
  font-size: 13px;
  line-height: 1.5;
  margin: 14px 0 0;
  max-width: 26ch;
  color: var(--muted-on-ink);
}

[data-section] { padding: 96px 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 32px clamp(24px, 6vw, 96px);
}
.split-end { align-items: end; }

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 4.5ch 1fr;
  gap: 0 clamp(20px, 3vw, 40px);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--rule-paper);
}
.step:first-child { padding-top: 0; }
.step.last { border-bottom: 0; padding-bottom: 0; }
.step-num {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 30px;
  margin: 0;
  font-feature-settings: "tnum" 1;
  color: var(--gold-deep);
}
.step p[data-justify],
.object-copy p,
.systems-lead,
.access-split > p {
  font-size: 15.5px;
  line-height: 1.75;
  margin: 14px 0 0;
  max-width: 52ch;
  text-align: justify;
  hyphens: auto;
  color: var(--muted-on-paper);
}
.object-copy p { color: var(--muted-on-ink); margin-top: 22px; max-width: 50ch; }
.object-copy { padding-bottom: 8px; }
.object-plate { margin: 0; width: 100%; }

.section-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule-paper);
}

.screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  margin-top: 40px;
}
.phone-frame {
  margin: 0;
  width: 100%;
  background: #12100e;
  padding: 28px 18px 36px;
  aspect-ratio: auto;
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.watch-title {
  max-width: 22ch;
  margin: 16px 0 48px -0.03em;
}
.table {
  border-collapse: collapse;
  width: 100%;
}
.table td {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--rule-ink);
  vertical-align: top;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted-on-ink);
}
.table .td-kicker {
  width: 22%;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.table .td-head {
  width: 26%;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--cream);
}

.systems-lead { margin: 0 0 32px; max-width: 54ch; }
.systems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--rule-paper);
}
.systems p {
  font-size: 14.5px;
  line-height: 22px;
  margin: 0;
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--rule-paper);
}

.access { padding-top: 112px; padding-bottom: 112px; }
.access h2 {
  font-size: clamp(36px, 5vw, 72px);
  max-width: 14ch;
  margin-left: -0.03em;
}
.access-split { margin-top: 48px; align-items: start; }
.access-split > p { margin: 0; color: var(--muted-on-ink); text-align: left; }
#access-form {
  display: flex;
  gap: var(--space-3);
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 520px;
}
.access-note {
  font-size: 13px;
  line-height: 1.7;
  margin: 18px 0 0;
  color: #a8a093;
}

footer {
  background: var(--ink);
  color: #9e9689;
  border-top: 1px solid var(--rule-ink);
}
.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
  padding: 28px 0 56px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .nav a:not(.btn) { display: none; }
}

@media (max-width: 820px) {
  [data-split],
  .split { grid-template-columns: 1fr !important; }
  .wrap { padding-left: 20px !important; padding-right: 20px !important; }
  [data-hero],
  .hero { padding-top: 56px !important; min-height: 0; align-items: flex-start; }
  [data-hero] h1,
  .hero h1 { font-size: clamp(34px, 11vw, 56px) !important; max-width: none !important; }
  [data-hero] h1 span,
  .hero h1 span { display: inline !important; }
  [data-section] { padding-top: 64px !important; padding-bottom: 64px !important; }
  [data-justify] { text-align: left !important; }
  [data-map],
  .map-block iframe { aspect-ratio: 4 / 3 !important; }
  [data-screens],
  .screens { grid-template-columns: 1fr 1fr !important; }
  [data-figure-plate] { width: 100% !important; }
  [data-watch] tr { display: block; padding: 20px 0; border-bottom: 1px solid var(--rule-ink); }
  [data-watch] td { display: block; width: auto !important; border: 0 !important; padding: 0 !important; }
  [data-watch] td + td { margin-top: 6px; }
  [data-cta] { flex-direction: column; }
  [data-cta] .btn { width: 100%; }
  .stats > div { padding: 28px 16px; }
  .map-block { padding: 56px 0; }
  .access { padding-top: 72px; padding-bottom: 72px; }
}
