:root {
  --ink: #12110f;
  --cream: #eee9df;
  --paper: #f6f2ea;
  --wine: #651f2c;
  --copper: #b98b55;
  --line: rgba(238, 233, 223, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.landing { display: flex; flex-direction: column; }
.landing > .top-note, .landing > .site-header { order: 0; }
.landing > .hero { order: 1; }
.landing > .truth-band { order: 2; }
.landing > .manifest { order: 3; }
.landing > .estate { order: 4; }
.landing > .batch { order: 5; }
.landing > .journal { order: 6; }
.landing > .principles { order: 7; }
.landing > .singularity { order: 8; }
.landing > .quote-section { order: 9; }
.landing > .personnel { order: 10; }
.landing > .about { order: 11; }
.landing > footer { order: 12; }

.top-note {
  min-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 24px;
  background: var(--wine);
  color: #fff8ed;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 33px;
  left: 0;
  width: 100%;
  min-height: 91px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: grid;
  width: max-content;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
}
.brand-mark {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(238,233,223,.66);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: -.04em;
}
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1;
}
.brand-place {
  margin-top: 4px;
  color: rgba(238,233,223,.65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: clamp(20px, 2.7vw, 44px);
  color: rgba(238,233,223,.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.desktop-nav a, .text-link { transition: color 180ms ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible,
.text-link:hover, .text-link:focus-visible { color: #fff; }
.nav-cta {
  justify-self: end;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(920px, calc(100svh - 33px));
  padding: 180px clamp(24px, 8vw, 132px) 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1c1512;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/barkarby-hero-campaign.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero-mobile-visual { display: none; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,12,10,.97) 0%, rgba(15,12,10,.82) 35%, rgba(15,12,10,.18) 72%, rgba(15,12,10,.35) 100%),
    linear-gradient(0deg, rgba(10,8,7,.74) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, 67vw);
}
.eyebrow {
  margin: 0 0 24px;
  color: #d3ad7c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 7.8vw, 118px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}
h1 em { color: #d2a977; font-weight: 400; }
.hero-lead {
  max-width: 610px;
  margin: 36px 0 0;
  color: rgba(238,233,223,.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.button-primary { background: var(--cream); color: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { background: #fff; transform: translateY(-2px); }
.text-link {
  padding-block: 10px;
  border-bottom: 1px solid rgba(238,233,223,.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-facts {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 80px);
  bottom: 44px;
  display: flex;
  gap: clamp(24px, 3vw, 52px);
}
.hero-facts div { display: grid; gap: 5px; }
.hero-facts strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; }
.hero-facts span {
  color: rgba(238,233,223,.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.truth-band {
  display: flex;
  justify-content: center;
  padding: 17px 24px;
  background: var(--paper);
  color: #5d5146;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
}
.truth-band p { margin: 0; }

.section-light {
  background: var(--paper);
  color: var(--ink);
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 62px;
  color: #796e62;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-kicker span {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .05em;
}
.section-kicker p { margin: 0; }
.section-kicker::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: .35;
}
.section-kicker-dark { color: rgba(238,233,223,.5); }
.section-kicker-dark span { color: #d3ad7c; }

.manifest {
  padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 132px);
}
.manifest-grid {
  display: grid;
  grid-template-columns: minmax(330px, .92fr) minmax(360px, 1.08fr);
  gap: clamp(55px, 9vw, 150px);
  align-items: start;
}
.manifest h2, .batch h2, .about h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(49px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}
.manifest h2 em { color: var(--wine); font-weight: 400; }
.manifest-copy {
  max-width: 670px;
  color: #5b544d;
  font-size: 15px;
  line-height: 1.8;
}
.manifest-copy p { margin: 0 0 24px; }
.manifest-copy .large-copy {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.5;
}
.founder-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(18,17,15,.15);
}
.founder-line div { display: grid; gap: 6px; }
.founder-line strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}
.founder-line span {
  color: #857a6e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.estate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 1.05fr) minmax(250px, .7fr) minmax(300px, .9fr);
  grid-template-rows: auto auto;
  gap: 28px;
  padding: clamp(85px, 9vw, 140px) clamp(24px, 6vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(72,168,170,.13), transparent 27%),
    #0d1213;
}
.estate::before,
.personnel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(150,207,206,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,207,206,.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.estate figure { position: relative; z-index: 1; margin: 0; overflow: hidden; background: #090c0d; }
.estate img { width: 100%; height: 100%; display: block; object-fit: cover; }
.estate-main { grid-row: 1 / 3; min-height: 790px; }
.estate-main img { object-position: center; }
.estate-secondary {
  grid-column: 2 / 4;
  min-height: 410px;
}
.estate-secondary img { object-position: center 68%; }
.estate figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 8px;
  padding: 70px 28px 28px;
  background: linear-gradient(transparent, rgba(5,7,8,.93));
}
.estate figcaption span {
  color: #83c8c7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.estate figcaption strong {
  max-width: 500px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.25;
}
.estate-copy {
  position: relative;
  z-index: 1;
  grid-column: 2 / 4;
  align-self: center;
  padding: 35px clamp(12px, 3vw, 50px) 45px;
}
.estate-copy .eyebrow { color: #83c8c7; }
.estate-copy h2, .personnel-heading h2, .singularity h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 75px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}
.estate-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 20px;
  color: rgba(238,233,223,.65);
  font-size: 15px;
  line-height: 1.8;
}
.estate-copy small {
  color: rgba(238,233,223,.38);
  font-size: 9px;
  letter-spacing: .08em;
}

.personnel {
  position: relative;
  padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 132px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(72,168,170,.12), transparent 22%),
    radial-gradient(circle at 16% 78%, rgba(101,31,44,.25), transparent 28%),
    #090c0d;
}
.personnel-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 80px;
  margin-bottom: 70px;
}
.personnel-heading .section-kicker { margin: 9px 0 0; }
.personnel-heading .eyebrow { color: #83c8c7; }
.dossier-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.dossier {
  position: relative;
  min-height: 760px;
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(238,233,223,.18);
  background: rgba(12,16,17,.72);
}
.dossier::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0,0,0,.24);
}
.dossier-joakim { border-color: rgba(185,139,85,.32); }
.dossier-mikael { border-color: rgba(131,200,199,.32); }
.dossier-johan { border-color: rgba(218,178,91,.34); }
.dossier-lars { border-color: rgba(166,73,63,.4); }
.dossier-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(238,233,223,.14);
  color: rgba(238,233,223,.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.glyph-field {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 28px 0 38px;
  border: 1px solid rgba(185,139,85,.18);
  color: #c69d68;
  font-size: clamp(42px, 6vw, 82px);
  background:
    radial-gradient(circle, rgba(185,139,85,.13), transparent 65%),
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(185,139,85,.035) 16px);
}
.glyph-field span:nth-child(2), .glyph-field span:nth-child(4) { transform: translateY(15px); opacity: .58; }
.system-scan {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 13px 30px;
  margin: 28px 0 38px;
  padding: 27px;
  border: 1px solid rgba(131,200,199,.2);
  background:
    linear-gradient(rgba(131,200,199,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131,200,199,.045) 1px, transparent 1px),
    rgba(2,13,14,.42);
  background-size: 20px 20px;
  color: #83c8c7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
}
.system-scan strong { color: #d9f4f2; font-weight: 400; }
.arrival-log,
.vortex-log {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 13px 30px;
  margin: 28px 0 38px;
  padding: 27px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
}
.arrival-log {
  border: 1px solid rgba(218,178,91,.22);
  color: #d5ad58;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(218,178,91,.04) 19px),
    rgba(20,16,6,.38);
}
.arrival-log strong { color: #f0dca8; font-weight: 400; }
.vortex-log {
  border: 1px solid rgba(166,73,63,.25);
  color: #d88c7f;
  background:
    repeating-radial-gradient(circle at 100% 0%, transparent 0 18px, rgba(166,73,63,.045) 19px 20px),
    rgba(25,7,6,.38);
}
.vortex-log strong { color: #f1c1b9; font-weight: 400; }
.dossier-label {
  margin: 0 0 12px;
  color: rgba(238,233,223,.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.dossier h3 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -.045em;
}
.dossier > p:not(.dossier-label) {
  max-width: 620px;
  color: rgba(238,233,223,.55);
  font-size: 13px;
  line-height: 1.75;
}
.dossier .dossier-lead {
  color: rgba(238,233,223,.86) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px !important;
  line-height: 1.55 !important;
}
.dossier dl { margin: 38px 0 0; border-top: 1px solid rgba(238,233,223,.13); }
.dossier dl div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(238,233,223,.1);
}
.dossier dt {
  color: rgba(238,233,223,.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.dossier dd { margin: 0; color: rgba(238,233,223,.72); font-size: 11px; }
.fiction-note {
  position: relative;
  z-index: 1;
  margin: 25px 0 0;
  color: rgba(238,233,223,.35);
  font-size: 9px;
  letter-spacing: .08em;
  text-align: center;
}

.singularity {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  min-height: 750px;
  background: #06090a;
}
.singularity figure { position: relative; min-height: 650px; margin: 0; overflow: hidden; }
.singularity figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, #06090a 100%);
}
.singularity figure img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 63% center; }
.singularity figcaption {
  position: absolute;
  z-index: 1;
  left: 25px;
  bottom: 22px;
  color: rgba(238,233,223,.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.singularity-copy {
  align-self: center;
  padding: 75px clamp(28px, 6vw, 95px) 75px 40px;
}
.singularity-copy .eyebrow { color: #83c8c7; }
.singularity-copy .large-copy {
  margin: 30px 0 38px;
  color: rgba(238,233,223,.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.55;
}
.singularity dl { margin: 0; border-top: 1px solid rgba(131,200,199,.2); }
.singularity dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(131,200,199,.14);
}
.singularity dt {
  color: rgba(131,200,199,.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.singularity dd { margin: 0; color: rgba(238,233,223,.64); font-size: 11px; }

.quote-section {
  min-height: 560px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 90px 24px;
  background:
    linear-gradient(rgba(40,12,18,.86), rgba(40,12,18,.93)),
    url('../images/barkarby-hero.png') center 66% / cover;
  text-align: center;
}
.quote-label {
  margin: 0 0 35px;
  color: #d3ad7c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.12;
}
.quote-credit {
  margin-top: 38px;
  color: rgba(238,233,223,.5);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journal {
  padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 132px);
  background: #191512;
}
.section-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 80px;
  margin-bottom: 75px;
}
.section-heading .section-kicker { margin: 9px 0 0; }
.section-heading > div:last-child { max-width: 850px; }
.section-heading h2, .principles h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}
.section-heading > div > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(238,233,223,.6);
  font-size: 15px;
  line-height: 1.75;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journal-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(24px, 3vw, 46px) 38px;
  border-right: 1px solid var(--line);
}
.journal-card:first-child { padding-left: 0; }
.journal-card:last-child { padding-right: 0; border-right: 0; }
.card-number {
  margin-bottom: 70px;
  color: rgba(238,233,223,.33);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}
.card-kicker {
  margin: 0 0 18px;
  color: #d3ad7c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.journal-card h3 {
  max-width: 330px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.card-copy {
  margin: 22px 0 32px;
  color: rgba(238,233,223,.55);
  font-size: 13px;
  line-height: 1.7;
}
.coming-soon {
  margin-top: auto;
  width: max-content;
  padding-top: 10px;
  border-top: 1px solid rgba(238,233,223,.3);
  color: rgba(238,233,223,.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.batch {
  padding: clamp(90px, 11vw, 170px) clamp(24px, 8vw, 132px);
}
.batch-grid {
  display: grid;
  grid-template-columns: minmax(350px, 1fr) minmax(390px, .9fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}
.eyebrow-dark { color: var(--wine); }
.batch-title > p:last-child {
  max-width: 420px;
  margin: 30px 0 0;
  color: #6d6257;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.6;
}
.batch-data { margin: 0; border-top: 1px solid rgba(18,17,15,.16); }
.batch-data div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18,17,15,.16);
}
.batch-data dt {
  color: #83776a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.batch-data dd {
  margin: 0;
  color: #3f3933;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 4px rgba(101,31,44,.12);
}

.principles {
  padding: clamp(90px, 10vw, 145px) clamp(24px, 8vw, 132px);
  background: var(--wine);
}
.principles-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}
.principles-intro .eyebrow { margin: 0 0 9px; }
.principles-intro h2 { max-width: 730px; }
.principles ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(238,233,223,.3);
}
.principles li {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 26px 28px 0 0;
  border-right: 1px solid rgba(238,233,223,.22);
}
.principles li + li { padding-left: 28px; }
.principles li:last-child { border-right: 0; }
.principles li > span {
  margin-bottom: 58px;
  color: rgba(238,233,223,.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}
.principles li strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.principles li p {
  margin: 10px 0 0;
  color: rgba(238,233,223,.6);
  font-size: 12px;
  line-height: 1.6;
}

.about {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  padding: clamp(90px, 11vw, 170px) clamp(24px, 12vw, 190px);
}
.about-copy { max-width: 780px; }
.about-copy > p:last-child {
  max-width: 650px;
  margin: 34px 0 0;
  color: #62594f;
  font-size: 16px;
  line-height: 1.8;
}
.about-seal {
  width: clamp(190px, 20vw, 290px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(101,31,44,.48);
  border-radius: 50%;
  outline: 1px solid rgba(101,31,44,.18);
  outline-offset: 9px;
  color: var(--wine);
}
.about-seal strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8vw, 98px);
  font-weight: 400;
  letter-spacing: -.08em;
  line-height: .9;
}
.about-seal span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 510px) 1fr;
  align-items: center;
  gap: 35px;
  padding: 42px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--line);
}
.footer-brand { color: var(--cream); }
footer > p {
  margin: 0;
  color: rgba(238,233,223,.48);
  text-align: center;
  font-size: 10px;
  line-height: 1.7;
}
.back-top {
  justify-self: end;
  color: rgba(238,233,223,.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero-content { width: min(700px, 92vw); }
  .hero-facts { left: 24px; right: auto; }
  .manifest-grid, .batch-grid { grid-template-columns: 1fr; }
  .estate { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .estate-main { grid-column: 1; grid-row: 1 / 3; min-height: 680px; }
  .estate-copy { grid-column: 2; padding: 20px; }
  .estate-secondary { grid-column: 2; min-height: 360px; }
  .personnel-heading { grid-template-columns: 1fr; gap: 20px; }
  .personnel-heading .section-kicker { margin-bottom: 35px; }
  .dossier-grid { grid-template-columns: 1fr; }
  .dossier { min-height: auto; }
  .singularity { grid-template-columns: 1fr; }
  .singularity figure { min-height: 520px; }
  .singularity figure::after { background: linear-gradient(0deg, #06090a 0%, transparent 30%); }
  .singularity-copy { padding: 25px 40px 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading .section-kicker { margin-bottom: 35px; }
  .journal-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .journal-card, .journal-card:first-child, .journal-card:last-child {
    min-height: auto;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .card-number { margin-bottom: 35px; }
  .coming-soon { margin-top: 25px; }
  .principles-intro { display: block; }
  .principles ol { grid-template-columns: repeat(2, 1fr); }
  .principles li:nth-child(2) { border-right: 0; }
  .principles li:nth-child(3), .principles li:nth-child(4) { border-top: 1px solid rgba(238,233,223,.22); }
  .about { grid-template-columns: 1fr; }
  .about-seal { justify-self: center; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .back-top { justify-self: center; }
}
@media (max-width: 620px) {
  .top-note { min-height: 30px; flex-wrap: wrap; gap: 5px 9px; font-size: 7px; line-height: 1.4; }
  .site-header { top: 30px; min-height: 76px; padding: 14px 20px; }
  .brand { grid-template-columns: 36px auto; }
  .brand-mark { width: 36px; height: 36px; font-size: 12px; }
  .brand-name { font-size: 18px; }
  .brand-place { font-size: 7px; }
  .nav-cta { max-width: 78px; gap: 7px; text-align: right; font-size: 8px; line-height: 1.35; }
  .hero { min-height: 0; display: block; padding: 0 20px 130px; }
  .hero-image, .hero-shade { display: none; }
  .hero-mobile-visual {
    position: relative;
    display: block;
    width: calc(100% + 40px);
    height: min(140vw, 760px);
    margin: 0 -20px 34px;
    background: #100d0b url('../images/barkarby-hero-mobile.webp') center top / cover no-repeat;
  }
  .hero-mobile-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,8,7,.08) 62%, #100d0b 100%);
  }
  .hero-content { width: 100%; }
  h1 { font-size: clamp(52px, 16vw, 76px); line-height: .92; }
  .hero-lead { margin-top: 28px; font-size: 17px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 30px; }
  .button { width: 100%; }
  .hero-facts { bottom: 38px; left: 20px; gap: 24px; }
  .manifest, .journal, .batch, .principles, .about { padding-inline: 20px; }
  .estate, .personnel { padding-inline: 20px; }
  .estate { grid-template-columns: 1fr; }
  .estate-main, .estate-copy, .estate-secondary { grid-column: 1; grid-row: auto; }
  .estate-main { min-height: 570px; }
  .estate-copy { padding: 35px 0; }
  .estate-secondary { min-height: 470px; }
  .estate-copy h2, .personnel-heading h2, .singularity h2 { font-size: 45px; }
  .dossier { padding: 24px 20px 30px; }
  .dossier-topline { font-size: 7px; }
  .glyph-field { height: 145px; }
  .system-scan, .arrival-log, .vortex-log { padding: 20px 15px; gap: 12px; font-size: 8px; }
  .dossier dl div { grid-template-columns: 1fr; gap: 7px; }
  .singularity figure { min-height: 430px; }
  .singularity-copy { padding: 20px 20px 75px; }
  .singularity dl div { grid-template-columns: 1fr; gap: 7px; }
  .section-kicker { margin-bottom: 40px; }
  .manifest-grid { gap: 38px; }
  .manifest h2, .batch h2, .about h2 { font-size: 48px; }
  .founder-line { grid-template-columns: 1fr; }
  .quote-section { min-height: 500px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2, .principles h2 { font-size: 45px; }
  .batch-grid { gap: 45px; }
  .batch-data div { grid-template-columns: 1fr; gap: 9px; }
  .principles ol { grid-template-columns: 1fr; }
  .principles li, .principles li + li {
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-top: 1px solid rgba(238,233,223,.22);
  }
  .principles li:first-child { border-top: 0; }
  .principles li > span { margin-bottom: 24px; }
  .about { gap: 65px; }
  .about-seal { width: 190px; }
  footer { padding-inline: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* WordPress journal and archive templates */
.journal-card-link { transition: background-color 180ms ease, padding 180ms ease; }
.journal-card-link:hover,
.journal-card-link:focus-visible { background: rgba(238,233,223,.035); }
.article-site-header {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px clamp(20px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
  background: #101010;
}
.article-site-header .back-top { color: rgba(238,233,223,.65); }
.article-shell,
.archive-shell {
  min-height: 70vh;
  padding: clamp(75px, 10vw, 140px) 24px;
  background: var(--paper);
  color: var(--ink);
}
.journal-entry,
.archive-shell > * { width: min(860px, 100%); margin-inline: auto; }
.journal-entry > .eyebrow,
.archive-shell > .eyebrow { color: var(--wine); }
.journal-entry h1,
.archive-shell > h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
}
.entry-byline {
  margin: 25px 0 55px;
  color: #766b60;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.entry-image { margin: 0 0 55px; }
.entry-image img { width: 100%; height: auto; display: block; }
.entry-content {
  color: #3f3933;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
}
.entry-content h2,
.entry-content h3 {
  margin: 2.2em 0 .7em;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.15;
}
.entry-content a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.article-footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px clamp(20px, 6vw, 90px);
  color: rgba(238,233,223,.55);
}
.article-footer p { margin: 0; font-size: 10px; }
.archive-list { display: grid; gap: 0; margin-top: 70px; border-top: 1px solid rgba(18,17,15,.18); }
.archive-list > a {
  display: grid;
  gap: 12px;
  padding: 35px 0;
  border-bottom: 1px solid rgba(18,17,15,.18);
}
.archive-list time { color: var(--wine); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.archive-list h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 4vw, 44px); font-weight: 400; }
.archive-list p { margin: 0; color: #675e55; line-height: 1.7; }

@media (max-width: 620px) {
  .article-site-header { align-items: flex-start; }
  .article-site-header .back-top { max-width: 100px; text-align: right; line-height: 1.5; }
  .article-footer { flex-direction: column; text-align: center; }
}
