@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap');

:root {
  --paper: #f0eee8;
  --paper-soft: #e8e5dd;
  --paper-bright: #f8f7f3;
  --ink: #111310;
  --ink-soft: #494c45;
  --ink-muted: #777a71;
  --night: #0b0d0c;
  --night-soft: #141714;
  --gold: #a88b55;
  --gold-light: #c8b07c;
  --line: rgba(17, 19, 16, 0.14);
  --line-light: rgba(240, 238, 232, 0.18);
  --serif: 'Italiana', 'Times New Roman', serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --container: 1460px;
  --gutter: clamp(1.4rem, 4vw, 4.75rem);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

body::selection {
  color: var(--night);
  background: var(--gold-light);
}

main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
}

p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.eyebrow,
.hero-label,
.division-num,
.principle-num,
.meta-label {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .25em;
  line-height: 1.4;
  text-transform: uppercase;
}

.text-accent,
.text-gold { color: var(--gold); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(240, 238, 232, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.header.scrolled {
  background: rgba(240, 238, 232, .97);
  border-bottom-color: var(--line);
}

.nav-container {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  width: auto;
  height: 72px;
  object-fit: contain;
  transition: opacity .25s ease;
}

.logo-link:hover .logo-img { opacity: .65; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
}

.nav-item { position: relative; }

.nav-link {
  position: relative;
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -.65rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-link:hover,
.nav-link.active { color: var(--ink); }

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-nav,
.btn-contact-nav {
  padding: .75rem 1.2rem;
  border: 1px solid var(--line);
}

.btn-nav::after,
.btn-contact-nav::after { display: none; }

.dropdown-icon { margin-left: .25rem; color: var(--gold); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1.25rem);
  left: -1.25rem;
  width: max-content;
  min-width: 230px;
  padding: .6rem;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .3s var(--ease);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown-item a {
  display: block;
  padding: .8rem 1rem;
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dropdown-item a:hover {
  color: var(--gold);
  background: var(--paper-soft);
}

/* Mobile navigation */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.mobile-toggle:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(11, 13, 12, .55);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 999;
  width: min(88vw, 390px);
  height: 100dvh;
  padding: 7rem 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  border-left: 1px solid var(--line);
  transition: right .5s var(--ease);
}

.mobile-nav-drawer.open { right: 0; }

.mobile-menu-links {
  display: grid;
  gap: 0;
}

.mobile-menu-links > li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu-links > li > a,
.mobile-menu-section-label {
  min-height: 3.65rem;
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mobile-menu-links > li > a::after {
  content: '';
  width: 0;
  height: 1px;
  margin-left: auto;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.mobile-menu-links > li > a.active,
.mobile-menu-links > li > a:hover,
.mobile-submenu a.active,
.mobile-submenu a:hover { color: var(--ink); }

.mobile-menu-links > li > a.active::after,
.mobile-menu-links > li > a:hover::after { width: 2rem; }

.mobile-submenu {
  margin: -.2rem 0 .8rem;
  padding: .25rem 0 .25rem 1.15rem;
  display: grid;
  gap: 0;
  border-left: 1px solid var(--gold);
}

.mobile-submenu a {
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  min-height: 48px;
  padding: .85rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}

.btn-primary {
  color: var(--paper);
  background: var(--night);
  border-color: var(--night);
}

.btn-primary:hover {
  color: var(--night);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline-light {
  color: var(--paper);
  border-color: var(--line-light);
}

.btn-outline-light:hover {
  border-color: var(--paper);
  background: rgba(240, 238, 232, .08);
}

.link-arrow {
  width: fit-content;
  padding-bottom: .4rem;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* Homepage hero */
.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero:has(.hero-bg) {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, .94) 0%, rgba(7, 9, 8, .74) 48%, rgba(7, 9, 8, .26) 100%),
    linear-gradient(0deg, rgba(7, 9, 8, .82), transparent 60%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.55) contrast(1.06);
  transform: scale(1.03);
  animation: heroDrift 18s ease-out both;
}

.hero-bg img.hero-master-art {
  object-fit: contain;
  object-position: right center;
  filter: saturate(.78) contrast(1.04);
  transform: none;
  animation: none;
}

@keyframes heroDrift {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .14;
  background-image:
    linear-gradient(rgba(200,176,124,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,176,124,.08) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero:has(.hero-bg) .container {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

.hero-content { max-width: 1050px; }

.hero:has(.hero-bg) .hero-content {
  position: relative;
  padding-left: clamp(1.25rem, 3vw, 3rem);
  border-left: 1px solid rgba(200,176,124,.55);
}

.hero:has(.hero-bg) .hero-title {
  max-width: 680px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: clamp(1.5rem, 2.15vw, 2.1rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-title-accent {
  display: block;
  color: var(--gold-light);
}

.hero:has(.hero-bg) .hero-description {
  max-width: 560px;
  margin-top: 2rem;
  color: rgba(240, 238, 232, .72);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 300;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Interior heroes */
.hero:not(:has(.hero-bg)) {
  padding-top: 108px;
  background: var(--paper);
}

.hero:not(:has(.hero-bg)) .container {
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.hero:not(:has(.hero-bg)) .hero-content {
  max-width: 1150px;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .55fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.hero:not(:has(.hero-bg)) .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.hero:not(:has(.hero-bg)) .hero-title {
  color: var(--ink);
  font-size: clamp(3.7rem, 7vw, 7.2rem);
  letter-spacing: -.03em;
}

.hero:not(:has(.hero-bg)) .hero-description {
  color: var(--ink-soft);
  font-size: 1rem;
  padding-bottom: .7rem;
}

:is(.division-page, .compact-hero-page) .hero:not(:has(.hero-bg)) .container {
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

:is(.division-page, .compact-hero-page) .hero:not(:has(.hero-bg)) .hero-content {
  max-width: 900px;
  padding-bottom: clamp(2rem, 3vw, 3rem);
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

:is(.division-page, .compact-hero-page) .hero:not(:has(.hero-bg)) .hero-description {
  max-width: 650px;
  margin-top: .35rem;
  padding: .15rem 0 .15rem 1.25rem;
  border-left: 1px solid var(--gold);
}

:is(.division-page, .compact-hero-page) .header {
  background: rgba(248, 247, 243, .98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(17, 19, 16, .035);
}

.hero-banner-image {
  position: relative;
  width: 100%;
  height: clamp(360px, 48vw, 690px);
  overflow: hidden;
  background: var(--night);
}

.hero-banner-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(240, 238, 232, .12);
  pointer-events: none;
}

.hero-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.62) contrast(1.04);
  transition: transform 1.4s var(--ease), filter 1.4s ease;
}

.hero-banner-image img.division-abstract-art {
  filter: saturate(.86) contrast(1.03);
}

.hero-banner-image:hover img {
  transform: scale(1.025);
  filter: saturate(.8) contrast(1.04);
}

.hero-banner-image:hover img.division-abstract-art {
  filter: saturate(1) contrast(1.04);
}

/* Sections */
.section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  border-bottom: 1px solid var(--line);
}

.section:nth-of-type(even) { background: var(--paper-bright); }

#divisions.section {
  padding-bottom: 0;
}

.section-header {
  max-width: 1000px;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(190px, .42fr) 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.section-header .eyebrow { padding-top: .6rem; }

.section-title {
  font-size: clamp(3rem, 5.8vw, 6rem);
  letter-spacing: -.025em;
}

.section-header p {
  grid-column: 2;
  max-width: 640px;
  margin-top: 1.5rem;
}

.home-page .section {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.home-page .section-header {
  position: relative;
  max-width: none;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  padding: clamp(2.75rem, 4vw, 4.25rem);
  grid-template-columns: minmax(170px, .4fr) minmax(280px, .78fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  border: 0;
  background:
    linear-gradient(135deg, rgba(228, 224, 214, .72), rgba(248, 247, 243, .3));
}

.home-page .section-header .eyebrow {
  padding-top: 0;
}

.home-page .section-header p {
  grid-column: auto;
  max-width: 590px;
  margin-top: 0;
}

/* Divisions */
.divisions-list {
  display: grid;
  gap: clamp(5rem, 9vw, 9rem);
}

.division-panel,
.division-panel.reverse {
  min-height: 620px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  background: transparent;
  border: 0;
  direction: ltr;
}

.division-panel:nth-child(even) {
  background: rgba(228, 224, 214, .38);
}

.division-panel.reverse { grid-template-columns: 1.18fr .82fr; }
.division-panel.reverse .division-body { order: 2; }
.division-panel.reverse .division-media { order: 1; }

.division-body {
  padding: clamp(3rem, 7vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.division-body::before {
  content: "";
  width: 38px;
  height: 1px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  background: var(--gold);
}

.division-headline {
  max-width: 560px;
  margin: 1.5rem 0 2rem;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.division-text {
  max-width: 510px;
  margin-bottom: 2.5rem;
}

.division-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--night);
}

.division-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,13,12,.1), rgba(11,13,12,.36));
  pointer-events: none;
}

.division-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.55);
  transition: transform 1.4s var(--ease), filter 1.2s ease;
}

.division-media img.division-abstract-art {
  filter: saturate(.82) contrast(1.02);
}

.division-panel:hover .division-media img {
  transform: scale(1.035);
  filter: saturate(.78);
}

.division-panel:hover .division-media img.division-abstract-art {
  filter: saturate(1) contrast(1.03);
}

/* Principles */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.principle-box {
  position: relative;
  min-height: 230px;
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  border: 0;
}

.principle-box:hover {
  color: inherit;
  background: transparent;
}

.principle-title {
  margin: clamp(2.25rem, 3vw, 3rem) 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.principle-body {
  font-size: .9rem;
  transition: color .35s ease;
}

.principle-box:hover .principle-body { color: var(--ink-soft); }

/* Institutional content */
.institutional-intro {
  max-width: 840px;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.institutional-intro .eyebrow { margin-bottom: 1.25rem; }

.institutional-intro h2 {
  max-width: 720px;
  margin-bottom: 1.4rem;
  font-family: var(--sans);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.institutional-intro p {
  max-width: 690px;
  font-size: 1.05rem;
}

.operating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.operating-card {
  position: relative;
  min-height: 230px;
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  border: 0;
  background: transparent;
}

.operating-card .card-index {
  color: var(--gold);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.operating-card h3 {
  margin: clamp(2.25rem, 3vw, 3rem) 0 1rem;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.operating-card p {
  font-size: .9rem;
  line-height: 1.75;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.profile-fact {
  position: relative;
  min-height: 150px;
  padding: 2.25rem 0 0;
  border: 0;
}

.profile-fact dt {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.profile-fact dd {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
}

:is(.principle-box, .operating-card, .profile-fact)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 1px;
  background: var(--gold);
  transition: width .45s var(--ease);
}

:is(.principle-box, .operating-card, .profile-fact):hover::before {
  width: 68px;
}

.statement-band {
  padding: clamp(3rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
  color: var(--paper);
  background: var(--night);
}

.statement-band .eyebrow { color: var(--gold-light); }

.statement-band blockquote {
  max-width: 760px;
  font-family: var(--sans);
  font-size: clamp(1.5rem, 2.15vw, 2.1rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.statement-band p {
  max-width: 640px;
  margin-top: 2rem;
  color: rgba(240,238,232,.62);
}

/* Editorial pages */
.content-wrapper,
.editorial-article {
  width: min(820px, 100%);
  margin-inline: auto;
}

.division-page .editorial-article {
  margin-inline: 0 auto;
}

.company-page .editorial-article {
  width: min(1040px, 100%);
  margin-inline: 0 auto;
}

.company-page .editorial-visual {
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
  overflow: hidden;
  background: #e8e2d8;
}

.company-page .editorial-visual img {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: none;
}

.editorial-article h2,
.content-wrapper h2 {
  margin: 4.5rem 0 1.35rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.editorial-article h2:first-child,
.content-wrapper h2:first-child { margin-top: 0; }

.editorial-article p,
.content-wrapper p { margin-bottom: 1.5rem; }

.editorial-article ul,
.content-wrapper ul { margin: 1.5rem 0 2.5rem; }

.editorial-article li,
.content-wrapper li {
  padding: .85rem 0 .85rem 1.5rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.editorial-article li::before,
.content-wrapper li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.editorial-article img,
.content-wrapper img {
  margin-block: 4rem;
  width: 100%;
  filter: saturate(.65);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: stretch;
}

.contact-page .contact-section {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.contact-meta {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  text-align: center;
}

.meta-block {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.contact-page .contact-meta > .meta-block:first-child {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 0;
}

.meta-value {
  margin-top: .75rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.contact-email {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-email a {
  color: var(--ink);
  transition: color .3s ease;
}

.contact-email a:hover { color: var(--gold); }

.contact-note {
  max-width: 620px;
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: .95rem;
}

.contact-inquiry-areas {
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.contact-inquiry-areas ul {
  max-width: 620px;
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 5rem);
}

.contact-inquiry-areas li {
  padding: .75rem 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  letter-spacing: .04em;
}

.contact-disclaimer {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  border-top: 0;
  font-size: .78rem;
  line-height: 1.7;
}

.contact-visual {
  min-height: 520px;
  overflow: hidden;
  background: var(--night);
}

.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.form-panel {
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--paper-bright);
  border: 1px solid var(--line);
}

.form-field { margin-bottom: 1.4rem; }

.form-field label {
  display: block;
  margin-bottom: .55rem;
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.input-text {
  width: 100%;
  padding: 1rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.input-text:focus { border-bottom-color: var(--gold); }
.input-text::placeholder { color: var(--ink-muted); }
textarea.input-text { min-height: 130px; resize: vertical; }

/* Footer */
.footer {
  color: var(--paper);
  background: var(--night);
  border-top: 1px solid var(--line-light);
}

.footer .container { padding-top: clamp(4rem, 8vw, 8rem); }

.footer-top,
.footer-grid {
  padding-bottom: clamp(4rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
}

.footer-brand-logo,
.footer-logo {
  width: auto;
  height: 80px;
  margin-bottom: 1.5rem;
  filter: invert(1) grayscale(1);
  opacity: .86;
}

.footer-desc,
.footer-tagline {
  max-width: 330px;
  color: rgba(240, 238, 232, .58);
  font-size: .9rem;
}

.footer-heading,
.footer-col-title {
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-nav,
.footer-links {
  display: grid;
  gap: .75rem;
}

.footer-nav a,
.footer-links a {
  color: rgba(240,238,232,.65);
  font-size: .82rem;
}

.footer-nav a:hover,
.footer-links a:hover { color: var(--paper); }

.footer-bottom-bar,
.footer-bottom {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(240,238,232,.42);
  border-top: 1px solid var(--line-light);
  font-size: .7rem;
  letter-spacing: .04em;
}

.scroll-top-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--night);
  border: 1px solid var(--line-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (max-width: 1024px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-facts { grid-template-columns: repeat(2, 1fr); }
  .division-panel,
  .division-panel.reverse { min-height: 0; grid-template-columns: 1fr; }
  .division-panel.reverse .division-body { order: 1; }
  .division-panel.reverse .division-media { order: 2; }
  .division-media { min-height: 440px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-meta {
    grid-template-rows: auto;
    gap: clamp(2rem, 4vw, 3rem);
  }
  .contact-page .contact-meta > .meta-block:first-child,
  .contact-inquiry-areas,
  .contact-disclaimer {
    padding-block: 1.5rem;
  }
  .contact-disclaimer { margin: 0 auto; }
  .contact-visual { min-height: 440px; }
  .footer-top,
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top > :last-child,
  .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 768px) {
  .nav-container { min-height: 84px; }
  .logo-img { height: 58px; }
  nav { display: none; }
  .mobile-toggle { display: grid; place-items: center; }

  .hero-bg img.hero-master-art {
    object-fit: cover;
    object-position: 68% center;
  }

  .hero:has(.hero-bg) { min-height: 860px; }
  .hero:has(.hero-bg) .container {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .hero:has(.hero-bg) .hero-title {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    line-height: 1.38;
    letter-spacing: .11em;
  }
  .hero:has(.hero-bg) .hero-description { max-width: 92%; }

  .hero:not(:has(.hero-bg)) { padding-top: 84px; }
  .hero:not(:has(.hero-bg)) .container { padding-top: 4rem; padding-bottom: 4rem; }
  .hero:not(:has(.hero-bg)) .hero-content {
    padding-bottom: 3rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero:not(:has(.hero-bg)) .eyebrow { margin-bottom: 0; }
  .hero:not(:has(.hero-bg)) .hero-title { font-size: clamp(3.2rem, 15vw, 4.8rem); }
  :is(.division-page, .compact-hero-page) .hero:not(:has(.hero-bg)) .container {
    padding-top: 2.25rem;
    padding-bottom: 2.75rem;
  }
  :is(.division-page, .compact-hero-page) .hero:not(:has(.hero-bg)) .hero-content {
    padding-bottom: 2rem;
  }
  .hero-banner-image { height: clamp(280px, 92vw, 440px); }

  .section { padding-block: 5.5rem; }
  .section-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-header p { grid-column: 1; margin-top: 0; }
  .home-page .section-header {
    padding: 2.75rem 1.5rem 2.25rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .home-page .section-header p {
    grid-column: 1;
    margin-top: .5rem;
  }
  .section-title { font-size: clamp(2.8rem, 13vw, 4.4rem); }

  .division-body { padding: 3.5rem 1.5rem; }
  .divisions-list { gap: 4.5rem; }
  .division-headline { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .division-media { min-height: 330px; }
  .principle-box { min-height: 230px; }
  .operating-grid { grid-template-columns: 1fr; }
  .operating-card {
    min-height: auto;
    padding-block: 2rem;
  }
  .operating-card h3 { margin: 2.5rem 0 1rem; }
  .statement-band { grid-template-columns: 1fr; }

  .footer-top,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child,
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-top > :last-child,
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .principles-grid { grid-template-columns: 1fr; }
  .profile-facts { grid-template-columns: 1fr; }
  .principle-box,
  .profile-fact {
    min-height: auto;
    padding-block: 2rem;
  }
  .principle-title { margin: 2.5rem 0 1rem; }
  .contact-layout { gap: 2.5rem; }
  .contact-visual { min-height: 400px; }
  .contact-inquiry-areas ul { grid-template-columns: 1fr; }
  .form-panel { padding: 2rem 1.3rem; }
  .footer-top,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top > *,
  .footer-grid > *,
  .footer-top > :last-child,
  .footer-grid > :last-child { grid-column: 1; }
  .footer-bottom-bar,
  .footer-bottom {
    padding-block: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Compact corporate heading system — the homepage statement remains editorial. */
.hero:not(:has(.hero-bg)) .hero-title,
.editorial-article h1,
.content-wrapper h1 {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-title,
.division-headline,
.editorial-article h2,
.content-wrapper h2,
.form-panel h3 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.principle-title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.editorial-article h2,
.content-wrapper h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
