/* ============================================================
   HJ Proprietorship Holding Group LLC — style.css
   Premium corporate landing page
   Palette: Gold #A37C3A · Black #111111 · White #FFFFFF
            Light Gray #F7F7F7 · Dark Gray #444444
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --gold: #A37C3A;
  --gold-light: #C49A56;
  --gold-pale: #EFE6D6;
  --black: #111111;
  --near-black: #1A1A1A;
  --white: #FFFFFF;
  --gray-light: #F7F7F7;
  --gray-dark: #444444;
  --gray-mid: #6B6B6B;
  --line: rgba(17, 17, 17, 0.08);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 6px 24px rgba(17, 17, 17, 0.06);
  --shadow-lift: 0 18px 44px rgba(17, 17, 17, 0.12);
  --shadow-gold: 0 10px 30px rgba(163, 124, 58, 0.28);

  --container: 1280px;
  --nav-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.15;
  font-weight: 600;
}

/* Layout container */
.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #8C692F 100%);
  color: var(--white);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  margin-top: 1.5rem;
}

.btn--dark:hover,
.btn--dark:focus-visible {
  transform: translateY(-3px);
  background: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn--full {
  width: 100%;
  text-align: center;
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Blur applied once the page is scrolled (toggled via JS) */
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(17, 17, 17, 0.05);
}

.navbar__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.navbar__logo {
  height: 62px;
  width: 62px;
  object-fit: contain;
  /* The artwork sits inside generous padding — scale it up slightly */
  transform: scale(1.35);
  transform-origin: center;
}

.navbar__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.navbar__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.navbar__sub {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.navbar__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--near-black);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}

/* Gold underline indicator */
.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.navbar__link:hover,
.navbar__link.is-active {
  color: var(--gold);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
  transform: scaleX(1);
}

.navbar__link--cta {
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold);
}

.navbar__link--cta::after {
  display: none;
}

.navbar__link--cta:hover,
.navbar__link--cta.is-active {
  background: var(--gold);
  color: var(--white);
}

/* Hamburger (hidden on desktop) */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.navbar__toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-open .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
  padding: calc(var(--nav-height) + 4rem) 0 6rem;
}

/* Subtle animated gradient wash */
.hero__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #111111 0%, #17130B 45%, #111111 100%);
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 30% 40%, rgba(163, 124, 58, 0.14) 0%, transparent 45%),
              radial-gradient(ellipse at 70% 60%, rgba(163, 124, 58, 0.10) 0%, transparent 45%);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: translate(-3%, -2%) rotate(0deg); }
  to   { transform: translate(3%, 2%) rotate(4deg); }
}

/* Floating gold orbs behind content */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 340px;
  height: 340px;
  top: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(163, 124, 58, 0.5), transparent 70%);
}

.hero__orb--2 {
  width: 420px;
  height: 420px;
  bottom: 5%;
  right: 6%;
  background: radial-gradient(circle, rgba(196, 154, 86, 0.35), transparent 70%);
  animation-delay: -5s;
  animation-duration: 18s;
}

.hero__orb--3 {
  width: 220px;
  height: 220px;
  top: 55%;
  left: 42%;
  background: radial-gradient(circle, rgba(163, 124, 58, 0.3), transparent 70%);
  animation-delay: -9s;
  animation-duration: 16s;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.08); }
}

/* Faint luxury grid lines */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(163, 124, 58, 0.4);
  border-radius: 100px;
  padding: 0.55rem 1.4rem;
  margin-bottom: 2.2rem;
}

.hero__title {
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 1.8rem;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 55%, #8C692F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin: 0 auto 2.8rem;
}

.hero__actions {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   Sections — shared
   ============================================================ */
.section {
  padding: 7rem 0;
}

.section--gray {
  background: var(--gray-light);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 1.2rem;
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  text-align: center;
  margin: 5rem 0 2.8rem;
}

.section__lead {
  font-size: 1.06rem;
  color: var(--gray-mid);
}

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.about__purpose {
  background: var(--gray-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.4rem 1.6rem;
  font-size: 0.95rem !important;
  color: var(--gray-mid);
}

.about__purpose strong {
  color: var(--black);
  font-weight: 600;
}

/* Decorative monogram panel */
.about__panel {
  background: linear-gradient(150deg, var(--black) 0%, #241C0E 100%);
  border-radius: var(--radius);
  aspect-ratio: 4 / 4.6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.about__panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(163, 124, 58, 0.35);
  border-radius: calc(var(--radius) - 6px);
}

.about__panel-inner {
  text-align: center;
}

.about__panel-mark {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, #7d5d2a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
}

.about__panel-caption {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Core values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(163, 124, 58, 0.35);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}

.value-card:hover .value-card__icon {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(163, 124, 58, 0.12);
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
}

.value-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.value-card__text {
  font-size: 0.92rem;
  color: var(--gray-mid);
}

/* ============================================================
   Companies
   ============================================================ */
.companies__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.company-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

/* Thin gold top edge revealed on hover */
.company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(163, 124, 58, 0.3);
}

.company-card:hover::before {
  transform: scaleX(1);
}

/* Parent company gets a dark premium treatment */
.company-card--parent {
  background: linear-gradient(155deg, var(--black) 0%, #221A0D 100%);
  border-color: rgba(163, 124, 58, 0.35);
}

.company-card--parent .company-card__name {
  color: var(--white);
}

.company-card--parent .company-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

.company-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  color: var(--gold);
  margin-bottom: 1.3rem;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

.company-card--parent .company-card__icon {
  background: rgba(163, 124, 58, 0.18);
  color: var(--gold-light);
}

.company-card:hover .company-card__icon {
  background: var(--gold);
  color: var(--white);
}

.company-card__icon svg {
  width: 25px;
  height: 25px;
}

.company-card__industry {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.company-card__name {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.company-card__desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  flex-grow: 1;
  margin-bottom: 1.4rem;
}

.company-card__status {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 100px;
  padding: 0.35rem 0.95rem;
}

.company-card__status--parent {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   Vision & Investment Philosophy
   ============================================================ */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.vision__text .section__title {
  text-align: left;
}

.vision__text p {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.vision__philosophy {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 2.8rem 2.6rem;
  border: 1px solid var(--line);
}

.vision__philosophy-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Timeline connected by an elegant gold line */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 10px;
  bottom: 10px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold) 60%, rgba(163, 124, 58, 0.2));
}

.timeline__step {
  position: relative;
  display: flex;
  gap: 1.4rem;
  padding-bottom: 1.9rem;
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.timeline__step:hover .timeline__marker {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(163, 124, 58, 0.15);
}

.timeline__label {
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

/* ============================================================
   Statistics
   ============================================================ */
.stats {
  background: linear-gradient(155deg, var(--black) 0%, #1D160A 55%, var(--black) 100%);
  padding: 5.5rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {
  padding: 1rem 0.5rem;
}

.stats__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0.4rem;
}

.stats__label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   Why Choose Us
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(163, 124, 58, 0.35);
  box-shadow: var(--shadow-lift), 0 0 40px rgba(163, 124, 58, 0.08);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  color: var(--gold);
  margin-bottom: 1.3rem;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

.feature-card:hover .feature-card__icon {
  background: var(--gold);
  color: var(--white);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card__title {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.feature-card__text {
  font-size: 0.93rem;
  color: var(--gray-mid);
}

/* ============================================================
   Quote
   ============================================================ */
.quote {
  background: linear-gradient(160deg, #0D0D0D 0%, #1C150A 50%, #0D0D0D 100%);
  padding: 7.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Faint oversized quotation mark */
.quote::before {
  content: "\201C";
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 26rem;
  line-height: 1;
  color: rgba(163, 124, 58, 0.07);
  pointer-events: none;
}

.quote__block {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 2rem;
}

.quote__cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Contact
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: start;
}

/* --- Info panel --- */
.contact__info {
  background: linear-gradient(155deg, var(--black) 0%, #241C0E 100%);
  border-radius: var(--radius);
  padding: 2.8rem 2.5rem;
  box-shadow: var(--shadow-lift);
}

.contact__info-title {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.contact__item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.7rem;
}

.contact__item-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(163, 124, 58, 0.16);
  color: var(--gold-light);
}

.contact__item-icon svg {
  width: 22px;
  height: 22px;
}

.contact__item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}

.contact__item-value {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact__item-value a {
  transition: color 0.3s var(--ease);
}

.contact__item-value a:hover {
  color: var(--gold-light);
}

.contact__note {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.6rem;
}

.contact__note p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}

/* --- Form --- */
.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.8rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form__group {
  margin-bottom: 1.4rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.45rem;
}

.form__label span {
  color: var(--gold);
}

.form__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--gray-light);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.form__input::placeholder {
  color: #A9A9A9;
}

.form__input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(163, 124, 58, 0.12);
}

.form__input--area {
  resize: vertical;
  min-height: 130px;
}

/* Validation states */
.form__input.is-invalid {
  border-color: #C0392B;
  background: #FDF5F4;
}

.form__error {
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 0.35rem;
  min-height: 0;
}

.form__success {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2E7D46;
  background: #EDF7F0;
  border: 1px solid #CDEBD8;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Logo sits on a white tile so the black "J" stays visible */
.footer__logo-wrap {
  display: inline-flex;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  margin-bottom: 1.4rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.footer__logo-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.footer__logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

.footer__desc {
  font-size: 0.9rem;
  max-width: 380px;
  margin-bottom: 1.6rem;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease),
              background-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 19px;
  height: 19px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.footer__links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0;
  text-align: center;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   Back to top
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease),
              transform 0.4s var(--ease), background-color 0.4s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--black);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   Scroll reveal animations (activated by JS)
   ============================================================ */
/* Hidden states apply only when JS is running (html.js set in <head>),
   so content is never lost if scripts fail to load. */
.js .reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.js .reveal.fade-up      { transform: translateY(36px); }
.js .reveal.slide-left   { transform: translateX(-48px); }
.js .reveal.slide-right  { transform: translateX(48px); }

.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal.fade-up,
  .js .reveal.slide-left,
  .js .reveal.slide-right {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Responsive — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .companies__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values,
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid,
  .vision__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__panel {
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   Responsive — Mobile nav breakpoint (≤ 860px)
   ============================================================ */
@media (max-width: 860px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08);
    padding: 1rem 0 1.6rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease),
                visibility 0.4s var(--ease);
  }

  .navbar__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar__menu li {
    width: 100%;
    text-align: center;
  }

  .navbar__link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .navbar__link::after {
    display: none;
  }

  .navbar__link--cta {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.7rem 2.4rem;
  }
}

/* ============================================================
   Responsive — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --nav-height: 72px;
  }

  .navbar__logo {
    height: 52px;
    width: 52px;
  }

  .navbar__name {
    font-size: 1.1rem;
  }

  .navbar__sub {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section__head {
    margin-bottom: 2.8rem;
  }

  .hero {
    padding: calc(var(--nav-height) + 3rem) 0 5rem;
  }

  .hero__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    padding: 0.5rem 1.1rem;
    max-width: 100%;
    line-height: 1.6;
  }

  .hero__title {
    font-size: clamp(2.4rem, 10.5vw, 3rem);
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .values,
  .why__grid,
  .companies__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 1rem;
  }

  .vision__philosophy {
    padding: 2rem 1.5rem;
  }

  .contact__info,
  .contact__form {
    padding: 2rem 1.5rem;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .back-to-top {
    right: 1.1rem;
    bottom: 1.1rem;
    width: 44px;
    height: 44px;
  }
}
