:root {
  --white: #ffffff;
  --corduroy: #656c6c;
  --corduroy-dark: #4f5656;
  --orange: #f47208;
  --orange-dark: #d85f00;
  --soft: #f7f8f7;
  --line: #e7e9e8;
  --text: #303535;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  display: block;
  width: 235px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--corduroy);
}

.nav-links a:hover { color: var(--orange); }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  color: var(--orange) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background:
    linear-gradient(135deg, rgba(244,114,8,.055), transparent 38%),
    var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -170px;
  border: 72px solid rgba(244,114,8,.055);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.42fr .78fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--corduroy);
}

h1 {
  margin-bottom: 26px;
  font-weight: 900;
  max-width: 790px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(2.75rem, 5.7vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: -.025em;
}

h1 span { color: var(--orange); }

h2 {
  max-width: 790px;
  font-weight: 800;
  margin-bottom: 38px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.16;
  letter-spacing: -.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 700px;
  color: var(--corduroy);
  font-size: 1.11rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: .18s ease;
}

.button:hover { transform: translateY(-1px); }

.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(244,114,8,.18);
}

.primary:hover { background: var(--orange-dark); }

.secondary {
  color: var(--corduroy);
  border: 1px solid var(--line);
  background: var(--white);
}

.secondary:hover {
  color: var(--orange);
  border-color: rgba(244,114,8,.45);
}

.hero-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(101,108,108,.12);
}

.mountain-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.mountain-mark img {
  width: 100%;
  image-rendering: auto;
}

.panel-label {
  color: var(--corduroy);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.panel-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.panel-item strong,
.panel-item span { display: block; }

.panel-item strong {
  margin-bottom: 3px;
  color: var(--corduroy);
}

.panel-item span {
  color: #7c8383;
  font-size: .92rem;
}

.section { padding: 96px 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  min-height: 260px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: .18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,114,8,.45);
  box-shadow: 0 14px 35px rgba(101,108,108,.08);
}

.number {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-family: Montserrat, Arial, sans-serif;
  font-size: .73rem;
}

.card p {
  margin-bottom: 0;
  color: #747c7c;
  font-size: .93rem;
}

.experience-section {
  color: white;
  background: var(--corduroy);
}

.experience-section h2 { color: white; }

.eyebrow.light { color: #ffd0a9; }

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.orange-rule {
  width: 90px;
  height: 5px;
  margin-bottom: 48px;
  background: var(--orange);
}

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

.stat {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.stat strong,
.stat span { display: block; }

.stat strong {
  margin-bottom: 6px;
  color: white;
  font-size: 1.25rem;
}

.stat span { color: #d7dddd; }

.experience-note {
  max-width: 850px;
  margin: 34px 0 0;
  color: #e5e8e8;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.principles p {
  margin-bottom: 24px;
  color: #737a7a;
}

.principles strong { color: var(--corduroy-dark); }


.about-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 78px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  max-width: 430px;
}

.about-photo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(101,108,108,.18);
}

.about-accent {
  position: absolute;
  width: 72%;
  height: 72%;
  left: -18px;
  bottom: -18px;
  z-index: 1;
  border-radius: 18px;
  background: var(--orange);
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy p {
  color: #697171;
  font-size: 1rem;
}

.about-copy .about-lead {
  color: var(--corduroy-dark);
  font-size: 1.12rem;
  font-weight: 600;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.text-link {
  color: var(--corduroy);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange);
}


.contact-section {
  padding: 0 0 96px;
}

.contact-card {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  border: 1px solid #f0d7c3;
  border-radius: 16px;
  background: #fff9f4;
}

.contact-card h2 { margin-bottom: 12px; }

.contact-card p:last-child {
  margin-bottom: 0;
  color: #727a7a;
}

.large { min-height: 56px; padding: 0 24px; }

.contact-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

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

.footer-logo {
  width: 190px;
  height: auto;
}

.footer-copy {
  display: flex;
  gap: 24px;
  color: #858b8b;
  font-size: .84rem;
}

@media (max-width: 900px) {
  .hero-grid, .split, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-photo-wrap { max-width: 380px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
  .section-heading-row { align-items: flex-start; }
  .orange-rule { display: none; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 72px; }
  .brand img { width: 180px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .hero { padding: 76px 0 72px; }
  .section { padding: 72px 0; }
  .cards { grid-template-columns: 1fr; }
  h1 { font-size: 2.55rem; }
  .contact-card { padding: 32px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-copy { flex-direction: column; gap: 6px; }
}
