:root {
  --color-bg: #f5f2eb;
  --color-text: #2c2a26;
  --color-muted: #6b665c;
  --color-accent: #a5402d; /* warm rust accent */
  --font-primary: 'IBM Plex Sans', sans-serif;
  --layout-padding: 4rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Header */
.site-header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--layout-padding);
  z-index: 100;
  background: var(--color-bg);
  color: var(--color-text);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: auto;
  height: 3.5rem;
}

.logo:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 5px;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 0;
  display: inline-block;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--color-accent);
}

/* Hero Panorama */
.hero-panorama {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  background: #1a1917;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  padding: var(--layout-padding);
  padding-bottom: 6rem;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  max-width: 600px;
  color: #e5e3db;
}

/* About */
.journal-about {
  padding: 8rem var(--layout-padding);
  border-bottom: 1px solid rgba(44, 42, 38, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-grid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.25rem;
  color: var(--color-muted);
}

/* Businesses */
.journal-bands {
  padding: 8rem 0;
}

.section-header {
  padding: 0 var(--layout-padding);
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.story-band {
  display: flex;
  height: 60vh;
  min-height: 400px;
  margin-bottom: 1px;
}

.story-band.reverse {
  flex-direction: row-reverse;
}

.band-image {
  flex: 6;
  position: relative;
}

.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-text {
  flex: 4;
  background: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band-text h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.band-text p {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.minor-sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem var(--layout-padding) 0;
}

.business-profiles {
  padding: 8rem var(--layout-padding);
  background: #f3efe6;
  color: #171713;
}

.profiles-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.profiles-kicker,
.profile-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profiles-kicker {
  margin-bottom: 1rem;
  color: #655c50;
}

.profiles-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 7vw, 6.75rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.profiles-intro > p {
  max-width: 28rem;
  color: #625b51;
  font-size: 1.05rem;
  line-height: 1.65;
}

.profile-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.profile-story {
  position: relative;
  grid-column: span 5;
  min-height: clamp(29rem, 39vw, 37rem);
  overflow: hidden;
  background: #2c2a26;
}

.profile-story--wide {
  grid-column: span 7;
}

.profile-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.profile-story:hover img {
  transform: scale(1.025);
}

.profile-story::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 16, 13, 0.02) 28%, rgba(18, 16, 13, 0.93) 100%);
}

.profile-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: #fff;
}

.profile-eyebrow {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
}

.profile-copy h3 {
  max-width: 34rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.1vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.profile-copy > p:last-child {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.minor-sector h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.minor-sector p {
  color: var(--color-muted);
}

/* Companies Roster */
.journal-roster {
  padding: 8rem var(--layout-padding);
  background: #fff;
}

.roster-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.roster-table th, .roster-table td {
  padding: 2rem 1rem;
  border-bottom: 1px solid rgba(44, 42, 38, 0.1);
  font-size: 1.1rem;
}

.roster-table th {
  font-weight: 500;
  width: 30%;
  vertical-align: top;
}

.roster-table td {
  color: var(--color-muted);
}

.roster-loc {
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem !important;
  width: 20%;
}

/* Presence */
.journal-presence {
  padding: 8rem var(--layout-padding);
  background: var(--color-text);
  color: #fff;
}

.presence-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.presence-inner > p {
  font-size: 1.25rem;
  color: #a09d96;
  margin-bottom: 4rem;
}

.markets-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3rem;
  row-gap: 1.5rem;
  list-style: none;
}

.markets-list li {
  font-size: 1.5rem;
  font-weight: 400;
}

/* Footer */
.journal-footer {
  padding: 6rem var(--layout-padding) 3rem;
  background: #1a1917;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 6rem;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 7.5rem;
  height: auto;
}

.contact-info {
  text-align: right;
}

.contact-info .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8c8982;
  margin-bottom: 1rem;
}

.contact-info a {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  transition: color 0.2s;
  word-break: break-all;
}

.contact-info a:hover {
  color: var(--color-accent);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #8c8982;
}

.photo-note {
  font-style: italic;
}

.materials-gallery {
  scroll-margin-top: 6rem;
  padding: 8rem 0 7rem;
  background: #2c2a26;
  color: #f5f1e8;
}

.gallery-heading {
  padding: 0 var(--layout-padding) 3rem;
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 30rem);
  gap: 2rem 4rem;
  align-items: end;
}

.gallery-kicker {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #b5ae9f;
}

.gallery-heading h2 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.gallery-heading > p:last-child {
  color: #bdb6aa;
  font-size: 1.05rem;
}

.gallery-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 0 var(--layout-padding) 1.5rem;
  scroll-padding-inline: var(--layout-padding);
  scroll-snap-type: x mandatory;
  scrollbar-color: #777066 transparent;
}

.gallery-track:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: -3px;
}

.gallery-track figure {
  flex: 0 0 clamp(20rem, 42vw, 44rem);
  scroll-snap-align: start;
}

.gallery-track img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gallery-track figcaption {
  padding-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bdb6aa;
}

/* Responsive */
@media (max-width: 1024px) {
  :root { --layout-padding: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-band, .story-band.reverse { flex-direction: column; height: auto; }
  .band-image { height: 40vh; }
  .roster-table th, .roster-table td { display: block; width: 100%; padding: 1rem 0; border: none; }
  .roster-table tr { border-bottom: 1px solid rgba(44, 42, 38, 0.1); padding: 1rem 0; }
  .roster-loc { text-align: left; padding-top: 0 !important; }
}

@media (max-width: 768px) {
  .site-header { position: static; background: var(--color-bg); color: var(--color-text); padding: 1rem 2rem 0; flex-wrap: wrap; }
  .logo:focus-visible { outline-color: var(--color-text); }
  .main-nav { display: block; width: 100%; margin-top: 0.5rem; }
  .main-nav ul { width: 100%; flex-wrap: wrap; justify-content: space-between; gap: 0.2rem 0.9rem; }
  .main-nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 0.66rem; letter-spacing: 0; }
  .hero-panorama { height: auto; min-height: 70vh; }
  .hero-content { padding-bottom: 3rem; }
  .minor-sectors { grid-template-columns: 1fr; gap: 2rem; }
  .business-profiles { padding: 5rem var(--layout-padding); }
  .profiles-intro { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 3rem; }
  .profile-mosaic { grid-template-columns: 1fr; }
  .profile-story, .profile-story--wide { grid-column: 1; min-height: 34rem; }
  .materials-gallery { padding: 4rem 0; }
  .gallery-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .gallery-track figure { flex-basis: 82vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info { text-align: left; }
  .footer-meta { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* Authorized vertical BHR lockup: gold emblem above dark lettering. */
.logo img { width: auto; height: 96px; aspect-ratio: 2154 / 4114; }

.journal-footer .brand {
  display: inline-block;
  padding: 1.5rem 1.75rem;
  background: #f5f2eb;
}

.footer-logo { width: auto; height: 124px; aspect-ratio: 2154 / 4114; }

@media (max-width: 768px) {
  .logo img { width: auto; height: 80px; }
  .journal-footer .brand { padding: 1.25rem; }
}
