/*
  Lines Brothers
  Two pages: index.html and for-owners-selling.html
*/

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400i.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #061723;
  --navy-deep: #020d14;
  --navy-soft: #0b2130;
  --green: #062f24;
  --green-deep: #031c16;
  --ivory: #f4efe3;
  --ivory-soft: #faf6ee;
  --paper: #efe7d9;
  --gold: #d3a35e;
  --gold-soft: #e4c28a;
  --ink: #0d1f2b;
  --muted: #675e50;
  --line: rgba(211, 163, 94, 0.46);
  --line-soft: rgba(211, 163, 94, 0.24);
  --shadow: 0 24px 70px rgba(1, 10, 15, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Lora", Georgia, serif;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy-deep);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

::selection {
  background: rgba(211, 163, 94, 0.38);
  color: var(--navy);
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background:
    linear-gradient(180deg, rgba(2, 13, 20, 0.98), rgba(5, 23, 35, 0.96));
  border-bottom: 1px solid rgba(211, 163, 94, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: var(--gold-soft);
}

.brand-mark {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.brand-wordmark {
  color: var(--gold-soft);
  font-family: var(--serif);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 21px;
  white-space: nowrap;
}

/* ── Navigation ────────────────────────────────────────── */

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.65);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 240ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 18px !important;
  border: 1px solid var(--gold);
  color: var(--gold-soft) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(211, 163, 94, 0.12);
  color: #f6dfb0 !important;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-soft);
  transform-origin: center;
  transition: transform 260ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: transparent;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: rgba(211, 163, 94, 0.12);
  color: #f6dfb0;
  transform: translateY(-1px);
}

.button--solid {
  background: var(--green);
  color: var(--ivory-soft);
  border-color: var(--gold);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: #0a3e2f;
}

.button--wide { min-width: 360px; }


.hero {
  position: relative;
  color: var(--ivory-soft);
  min-height: 600px;
  overflow: hidden;
  background-color: var(--navy);
  border-bottom: 2px solid rgba(211, 163, 94, 0.6);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg,
      rgba(2, 13, 20, 1.00) 0%,
      rgba(2, 13, 20, 1.00) 44%,
      rgba(2, 13, 20, 0.72) 58%,
      rgba(4, 19, 30, 0.20) 74%,
      rgba(4, 19, 30, 0.04) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center 30%;
  animation: hero-zoom 22s ease-out forwards;
}

.hero--home { --hero-image: url("../img/hero-train-1.webp"); }
.hero--owners { --hero-image: url("../img/hero-train-2.webp"); }

/* Hero home — full-width overlay, centered text */
.hero--home::before {
  background-image:
    linear-gradient(160deg, rgba(2, 13, 20, 0.80) 0%, rgba(4, 19, 30, 0.60) 100%),
    var(--hero-image);
}

.hero--home .hero-wrap {
  align-items: center;
  text-align: center;
}

.hero--home .hero-content {
  align-items: center;
  max-width: 820px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 13, 20, 0.10), rgba(2, 13, 20, 0.35));
  pointer-events: none;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 92px 0 84px;
  max-width: 565px;
}

.hero-title {
  margin: 0;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 30px auto 0;
}

.hero-copy {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(250, 246, 238, 0.92);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.heritage-line {
  background: var(--ivory-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
  padding: 28px 0;
}

.section {
  padding: 88px 0;
}

.section--ivory {
  background: var(--ivory);
}

.section--paper {
  background: var(--ivory);
}

.section--green {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--ivory-soft);
}

.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--ivory-soft);
}

.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.section--green .section-title,
.section--navy .section-title,
.dark-band .section-title,
.quote-band .section-title,
.final-cta .section-title {
  color: var(--ivory-soft);
}

.section-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
}

.section--green .section-copy,
.section--navy .section-copy,
.dark-band .section-copy,
.quote-band .section-copy,
.final-cta .section-copy {
  color: rgba(250, 246, 238, 0.82);
}

.centered { text-align: center; max-width: 860px; margin-inline: auto; }

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.about-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-title {
  font-weight: 600;
  margin-bottom: 36px;
}

.title-gold {
  color: var(--gold);
}

.about-body .section-copy {
  color: var(--ink);
}

.about-body .section-copy + .section-copy {
  margin-top: 20px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.value-card {
  padding: 32px 20px 36px;
  border-top: 1px solid var(--line);
  background: transparent;
}

.value-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
}

.dark-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  color: var(--ivory-soft);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

.dark-band h2 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.dark-band p {
  max-width: 900px;
  margin: 18px auto 0;
  color: rgba(250, 246, 238, 0.86);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
}

.principles-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.principles-intro {
  margin-top: 0;
  font-size: 19px;
  line-height: 1.6;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.principle-card {
  padding-top: 28px;
  border-top: 1px solid rgba(211, 163, 94, 0.35);
}

.principle-num {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}

.principle-title {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ivory-soft);
}

.principle-body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.72);
}

.sectors-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.55fr;
  gap: 60px;
  align-items: center;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sector-card {
  border: 1px solid rgba(211, 163, 94, 0.42);
  background: rgba(3, 19, 16, 0.38);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.sector-card img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 280ms ease;
}

.sector-card:hover img { transform: scale(1.2); }

.sector-card span {
  display: block;
  padding: 12px 14px 14px;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  background-color: var(--green-deep);
}

.protect-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.protect-image {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  line-height: 0;
}

.protect-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.protect-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0 0 0 34px;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 22px;
}

.checklist li {
  position: relative;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
}

.checklist li::before {
  content: "—";
  position: absolute;
  left: -34px;
  top: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
}

.people-intro {
  max-width: 720px;
  margin-bottom: 56px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.person-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ivory-soft);
}

.person-photo {
  margin: 0;
  flex-shrink: 0;
  height: 185px;
  overflow: hidden;
  background: var(--paper);
  filter: grayscale(15%);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.person-info {
  flex: 1;
}

.person-name {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.person-role {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.person-bio {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.person-email {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.person-email:hover {
  text-decoration: underline;
}

.brands-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.55fr;
  gap: 60px;
  align-items: center;
}

.seek-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 56px;
}

.seek-list li {
  position: relative;
  break-inside: avoid;
  padding-left: 34px;
  margin: 0 0 20px;
  color: rgba(250, 246, 238, 0.92);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.42;
}

.seek-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: radial-gradient(circle, var(--gold) 0 2px, transparent 3px);
}

.quote-band {
  background: linear-gradient(110deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  color: var(--ivory-soft);
  border-bottom: 1px solid var(--line);
  padding: 54px 0;
}

.quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.quote-text {
  margin: 0;
  max-width: 820px;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.16;
  font-style: italic;
}

.quote-text cite {
  display: block;
  margin-top: 16px;
  color: var(--gold-soft);
  font-size: 20px;
  font-style: normal;
}

.quote-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  opacity: 0.9;
  flex: 0 0 auto;
}

.final-cta {
  background: var(--navy);
  color: var(--ivory-soft);
  border-top: 1px solid var(--line);
  padding: 48px 0 54px;
  text-align: center;
}

.footer {
  background: var(--navy-deep);
  color: rgba(250, 246, 238, 0.65);
  border-top: 1px solid rgba(211, 163, 94, 0.18);
  padding: 34px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-family: var(--serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand img { width: 34px; height: 34px; object-fit: contain; }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.promise-card {
  min-height: 190px;
  border: 1px solid var(--line);
  background: rgba(250, 246, 238, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}

.promise-card p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.14;
}

.promise-card p::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 44px;
  margin-top: 54px;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: start;
}

.step-number {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: var(--green);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 0 0 6px rgba(211, 163, 94, 0.1);
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.14;
  font-weight: 400;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.52;
}

.section--green .process-step h3 {
  color: var(--ivory-soft);
}

.section--green .process-step p {
  color: rgba(250, 246, 238, 0.72);
}

.section--green .step-number {  
  border-color: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.contact-card {
  margin-top: 38px;
  border: 1px solid var(--line);
  background: rgba(238, 226, 209, 0.62);
  padding: 34px;
  text-align: center;
  font-family: var(--serif);
}

.contact-card h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.field label {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(143, 107, 56, 0.55);
  background: rgba(250, 246, 238, 0.58);
  color: var(--ink);
  padding: 10px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 115px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #fffaf2;
  box-shadow: 0 0 0 3px rgba(211, 163, 94, 0.16);
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.form-actions { margin-left: 0; }

.field--honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer-cta {
  background:
    radial-gradient(circle at 32% 20%, rgba(211, 163, 94, 0.11), transparent 32%),
    linear-gradient(135deg, var(--green), var(--navy));
  color: var(--ivory-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-cta h2 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 43px);
  font-style: italic;
  font-weight: 400;
}

.footer-cta p {
  margin: 5px 0 0;
  color: rgba(250, 246, 238, 0.84);
  font-family: var(--serif);
  font-size: 18px;
}

.footer-cta img { width: 100px; height: 100px; object-fit: contain; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(211, 163, 94, 0.55);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes hero-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

@keyframes hero-fade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.hero-tag    { animation: hero-fade 0.9s ease 0.10s both; }
.hero-title  { animation: hero-fade 0.9s ease 0.30s both; }
.hero-copy   { animation: hero-fade 0.9s ease 0.55s both; }
.hero-actions { animation: hero-fade 0.9s ease 0.75s both; }

/* ─── Scroll Reveal ─────────────────────────────────────────────────── */

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before { animation: none; }
  .hero-tag, .hero-title, .hero-copy, .hero-actions { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 560px; }
  .principles-header { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .principles-grid { grid-template-columns: 1fr; gap: 32px; }
  .sectors-layout,
  .brands-layout { grid-template-columns: 1fr; }
  .protect-layout { grid-template-columns: 1fr; }
  .protect-image { max-width: 560px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(100% - 30px, var(--container)); }
  .header-inner { min-height: 74px; }
  .brand-mark { width: 54px; height: 54px; }
  .brand-wordmark { font-size: 17px; letter-spacing: 0.1em; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(2, 13, 20, 0.98);
    border-bottom: 1px solid rgba(211, 163, 94, 0.18);
    padding: 8px 24px 24px;
    backdrop-filter: blur(18px);
    z-index: 39;
  }

  .site-nav.is-open { display: flex !important; }

  .site-nav a:not(.nav-cta) {
    font-size: 13px;
    letter-spacing: 0.14em;
    padding: 14px 0;
    border-bottom: 1px solid rgba(211, 163, 94, 0.12);
  }

  .nav-cta {
    align-self: flex-start;
    width: fit-content;
    margin-top: 14px;
  }
  .hero { min-height: 540px; }
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(2, 13, 20, 0.90) 0%, rgba(4, 19, 30, 0.80) 55%, rgba(4, 19, 30, 0.50) 100%),
      var(--hero-image);
    background-position: center 30%;
  }
  .hero-wrap { min-height: 0; }
  .hero-content { padding: 70px 0; max-width: 100%; }
  .hero-title { font-size: clamp(42px, 13vw, 65px); }
  .hero-copy { font-size: 18px; max-width: 95%; }
  .button { width: 100%; min-height: 50px; }
  .button--wide { min-width: 0; }
  .section { padding: 64px 0; }
  .heritage-line { padding: 24px 0; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; text-align: left; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sector-card span { font-size: 16px; }
  .protect-content { gap: 24px; }
  .checklist { border-left: 0; padding-left: 34px; }
  .people-grid { grid-template-columns: 1fr; }
  .person-card { gap: 24px; padding: 22px; }
  .person-photo { width: 88px; height: 104px; }
  .seek-list { columns: 1; }
  .quote-inner { align-items: flex-start; }
  .quote-logo { width: 92px; height: 92px; }
  .promise-grid { grid-template-columns: 1fr; gap: 16px; }
  .promise-card { min-height: 135px; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .field { gap: 6px; }
  .footer-inner,
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .brand-wordmark { font-size: 14px; letter-spacing: 0.08em; }
  .brand-mark { width: 48px; height: 48px; }
  .hero { min-height: 620px; }
  .hero-title::after { margin-top: 22px; }
  .hero-actions { width: 100%; }
  .section-title { font-size: 36px; }
  .sector-grid { grid-template-columns: 1fr; }
  .quote-inner { flex-direction: column; }
  .quote-logo { width: 110px; height: 110px; }
}

/* =============================================================
   V2 — New components
   ============================================================= */

/* Hero: text-only variant (no photograph) */
.hero--minimal::before {
  background-image: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  animation: none;
  background-size: auto;
  background-position: center;
}

.hero--minimal .hero-content {
  max-width: 720px;
}

/* Page hero for interior pages */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--ivory-soft);
  padding: 96px 0 84px;
  border-bottom: 1px solid rgba(211, 163, 94, 0.35);
  text-align: center;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero-title {
  margin: 0 auto;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.page-hero-strapline {
  margin: 22px auto 0;
  color: rgba(250, 246, 238, 0.7);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  max-width: 640px;
}

/* Philosophy grid — 3 blocks with dividers */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(211, 163, 94, 0.22);
  margin-top: 52px;
}

.philosophy-block {
  padding: 40px 36px 44px;
  border-right: 1px solid rgba(211, 163, 94, 0.22);
}

.philosophy-block:last-child {
  border-right: none;
}

.philosophy-block-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.philosophy-block p {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.7);
}

/* Sector tiles — homepage, with optional background images */
.sectors-homepage-intro {
  margin-bottom: 40px;
}

.sector-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: rgba(211, 163, 94, 0.18);
  margin-top: 40px;
}

.sector-tile {
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  background-color: var(--green-deep);
  background-image:
    linear-gradient(to top, rgba(3, 28, 22, 0.93) 0%, rgba(3, 28, 22, 0.62) 55%, rgba(3, 28, 22, 0.35) 100%),
    var(--tile-img, none);
  background-size: cover;
  background-position: center;
  padding: 20px 22px 22px;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background-color 220ms ease, color 200ms ease;
}

.sector-tile:hover {
  background-color: var(--green);
  color: var(--gold-soft);
}

/* Text link (inline arrow-style) */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 32px;
  border-bottom: 1px solid rgba(211, 163, 94, 0.35);
  padding-bottom: 3px;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}

.text-link--light {
  color: var(--gold-soft);
  border-bottom-color: rgba(244, 239, 227, 0.28);
}

.text-link--light:hover {
  color: #f6dfb0;
  border-color: rgba(244, 239, 227, 0.55);
}

/* CTA block — homepage "Sell Your Business" */
.cta-block {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  color: var(--ivory-soft);
  border-top: 1px solid var(--line);
  padding: 96px 0 100px;
  text-align: center;
}

.cta-block .container {
  max-width: 720px;
}

.cta-block-title {
  margin: 0;
  color: var(--ivory-soft);
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.cta-block-body {
  margin: 26px 0 0;
  color: rgba(250, 246, 238, 0.75);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
}

.cta-block-actions {
  margin-top: 40px;
}

/* Footer — 4-column layout */
.footer--full {
  padding: 64px 0 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-family: var(--serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-group img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  color: rgba(250, 246, 238, 0.55);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  max-width: 360px;
}

.footer-col-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-col--links a,
.footer-col--legal a {
  color: rgba(250, 246, 238, 0.52);
  font-family: var(--sans);
  font-size: 13px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 160ms ease;
}

.footer-col--links a:hover,
.footer-col--legal a:hover {
  color: var(--gold-soft);
}

.footer-address {
  font-style: normal;
  color: rgba(250, 246, 238, 0.52);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.85;
  margin: 0 0 10px;
}

.footer-contact-email {
  color: rgba(250, 246, 238, 0.52);
  font-family: var(--sans);
  font-size: 13px;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(211, 163, 94, 0.15);
  padding: 20px 0 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(250, 246, 238, 0.32);
  font-family: var(--sans);
  font-size: 12px;
}

/* Sectors page */
.sectors-page-intro {
  max-width: 760px;
  margin-bottom: 72px;
}

.sector-section {
  padding: 60px 0;
  border-top: 1px solid var(--line-soft);
}

.sector-section-title {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}

.sector-section p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.68;
}

.sector-section p:last-child {
  margin-bottom: 0;
}

.sector-invite {
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 4px !important;
}

/* About page — approach prose */
.prose-block {
  max-width: 780px;
}

.prose-block .section-copy {
  color: var(--ink);
  margin-top: 20px;
}

.prose-block .section-copy:first-child {
  margin-top: 0;
}

/* People contact button */
.button--sm {
  min-height: 36px;
  padding: 0 16px;
  font-size: 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 12px;
  transition: background 180ms ease, color 180ms ease;
}

.button--sm:hover {
  background: rgba(211, 163, 94, 0.12);
  color: var(--gold-soft);
}

/* Why sell — 5 blocks */
.why-sell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 56px;
}

.why-sell-block {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.why-sell-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 26px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.why-sell-block p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

/* What we look for */
.look-for-list {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
  max-width: 800px;
}

.look-for-list li {
  position: relative;
  padding-left: 26px;  
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
}

.look-for-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.look-for-list strong {
  font-weight: 600;
}

/* Sell Your Business — process on ivory */
.section--ivory .process-step h3 {
  color: var(--ink);
}

.section--ivory .process-step p {
  color: var(--muted);
}

.section--ivory .step-number {
  background: var(--ivory);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(211, 163, 94, 0.08);
}

/* Sell page — contact section direct contact card */
.direct-contact {
  padding: 32px;
  border: 1px solid var(--line-soft);
  background: rgba(238, 226, 209, 0.45);
}

.direct-contact-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.direct-contact-email {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.direct-contact-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
}

/* Active nav state */
.site-nav a.nav-active {
  color: var(--gold-soft);
}

.site-nav a.nav-active::after {
  width: 100%;
}

/* Responsive — v2 additions */
@media (max-width: 1100px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-block {
    border-right: none;
    border-bottom: 1px solid rgba(211, 163, 94, 0.22);
  }
  .philosophy-block:last-child {
    border-bottom: none;
  }
  .why-sell-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
  }
}

@media (max-width: 860px) {
  .sector-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hero {
    padding: 72px 0 60px;
  }
  .cta-block {
    padding: 72px 0 76px;
  }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sector-section-inner {
    grid-template-columns: 1fr !important;
  }
  .sector-section-image img {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .sector-tiles {
    grid-template-columns: 1fr;
  }
}

/* ── New component classes ─────────────────────────────── */

/* Descriptive subtitle beneath a section-label/section-title */
.section-subtitle {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.55;
  max-width: 680px;
}

.section--navy .section-subtitle,
.section--green .section-subtitle {
  color: rgba(250, 246, 238, 0.65);
}

/* Centered intro block */
.section-intro-center {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.section-intro-center .section-subtitle {
  margin-inline: auto;
}

/* Homepage Who We Are — 2-column layout */
.who-we-are-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 0;
}

.who-we-are-text .section-title {
  margin-top: 12px;
}

.who-we-are-image {
  overflow: hidden;
  border-radius: 2px;
}

.who-we-are-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) contrast(1.06);
}

/* Sectors page — per-sector 2-column layout */
.sector-section {
  padding: 72px 0;
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 96px;
}

.sector-section-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.sector-section:nth-child(even) .sector-section-inner {
  grid-template-columns: 1fr 380px;
}

.sector-section:nth-child(even) .sector-section-image {
  order: 2;
}

.sector-section:nth-child(even) .sector-section-text {
  order: 1;
}

.sector-section-image {
  overflow: hidden;
  border-radius: 2px;
  line-height: 0;
}

.sector-section-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.90) contrast(1.04);
  transition: transform 400ms ease;
}

.sector-section-image:hover img {
  transform: scale(1.03);
}

.sector-section-text { }

/* Philosophy grid on ivory background */
.section--ivory .philosophy-grid {
  border-color: var(--line-soft);
}

.section--ivory .philosophy-block {
  border-right-color: var(--line-soft);
}

.section--ivory .philosophy-block-title {
  color: var(--ink);
}

.section--ivory .philosophy-block p {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .sector-section-inner,
  .sector-section:nth-child(even) .sector-section-inner {
    grid-template-columns: 1fr;
  }
  .sector-section:nth-child(even) .sector-section-image {
    order: 0;
  }
  .sector-section:nth-child(even) .sector-section-text {
    order: 0;
  }
  .who-we-are-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .who-we-are-image img {
    height: 320px;
  }
}