/* Extracted styles from site.txt - keep minimal edits for structure */
:root {
  --bg-color: #ffffff;
  --text-main: #000000;
  --text-muted: #555555;
  --border-color: #e0e0e0;
  --font-main:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #111;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
  clip-path: inset(0);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 5%;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.09em;
  max-width: 850px;
}
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  padding-bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom, 0px)));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: all 0.3s ease;
  color: #fff;
}
.hero-bottom-bar.is-sticky,
body.inner-page .hero-bottom-bar {
  position: fixed;
  top: 0;
  bottom: auto;
  background: #fff;
  border-top: none;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-main);
}
.hero-bottom-bar.is-sticky .logo,
.hero-bottom-bar.is-sticky .nav-links a,
body.inner-page .hero-bottom-bar .logo,
body.inner-page .hero-bottom-bar .nav-links a {
  color: var(--text-main);
}
.logo {
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -0.05em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 102;
  position: relative;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}
.nav-links a:hover {
  opacity: 0.6;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 102;
  position: relative;
}
.hamburger span {
  width: 32px;
  height: 3px;
  background-color: currentColor;
  display: block;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.hamburger.is-active {
  color: #fff !important;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 101;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-overlay a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.mobile-nav-overlay.is-active a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-overlay.is-active a:nth-child(2) {
  transition-delay: 0.1s;
}
.mobile-nav-overlay.is-active a:nth-child(3) {
  transition-delay: 0.15s;
}
.mobile-nav-overlay.is-active a:nth-child(4) {
  transition-delay: 0.2s;
}
.mobile-nav-overlay.is-active a:nth-child(5) {
  transition-delay: 0.25s;
}
.close-menu {
  position: absolute;
  top: 1.5rem;
  right: 5%;
  width: 28px;
  height: 28px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-nav-overlay.is-active .close-menu {
  opacity: 1;
  transition-delay: 0.3s;
}
body.inner-page .hero {
  height: 0;
  background: #fff;
}
body.inner-page .hero-video,
body.inner-page .hero-overlay,
body.inner-page .hero-content {
  display: none;
}
body.inner-page .page-content {
  padding-top: 80px;
}
.page-content {
  position: relative;
  z-index: 4;
  background: #fff;
  width: 100%;
}
.view-section {
  display: none;
}
.view-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.content-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
  padding: 10rem 5%;
  max-width: 1600px;
  margin: 0 auto;
}
.no-bottom-border {
  border-bottom: none !important;
  padding-bottom: 6rem;
}
.divider-strip {
  width: 100%;
  height: 12px;
  background-color: var(--bg-color);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(0, 0, 0, 0.06) 5px,
    rgba(0, 0, 0, 0.06) 6px
  );
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.section-label {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  border-top: 2px solid var(--text-main);
  padding-top: 0.5rem;
  display: inline-block;
  width: fit-content;
}
.section-label h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-body h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.section-body p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 850px;
  margin-bottom: 2rem;
}
.media-full {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  margin-bottom: 2rem;
  background-color: #f4f4f4;
}
.full-width-stats {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #fafafa;
  border-top: 1px solid var(--border-color);
}
.full-width-stats.two-cols {
  grid-template-columns: repeat(2, 1fr);
}
.stat-item {
  padding: 7rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border-color);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item h4 {
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  letter-spacing: -0.04em;
  color: var(--text-main);
}
.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0;
}
.full-width-benefits {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #fafafa;
  border-top: 1px solid var(--border-color);
}
.benefit-item {
  padding: 6rem 3rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.benefit-item:last-child {
  border-right: none;
}
.benefit-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.5rem;
  stroke: var(--text-main);
}
.benefit-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.benefit-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.strategy-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 1.2rem;
  background-color: #f4f4f4;
}
.strategy-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.strategy-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-top: 2rem;
}
.leader-card {
  max-width: 450px;
  display: flex;
  flex-direction: column;
}
.leader-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-bottom: 1.5rem;
  background-color: #e0e0e0;
  filter: brightness(0.8);
}
.leader-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.leader-card .title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.leader-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.btn-dark {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--text-main);
  color: var(--bg-color);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-dark:hover {
  background-color: var(--text-muted);
  color: var(--bg-color);
}
.oh-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  row-gap: 1.5rem;
  column-gap: 4rem;
  padding: 12rem 5% 6rem;
  max-width: 1600px;
  margin: 0 auto;
}
.oh-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
.oh-heading {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-main);
  max-width: 1050px;
  margin-bottom: 2rem;
}
.oh-image-container {
  grid-column: 2;
  margin-bottom: 5rem;
}
.oh-image-container img,
.oh-image-container video {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  background-color: #f4f4f4;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.oh-image-container img:hover,
.oh-image-container video:hover {
  filter: grayscale(0%);
}
.oh-text-block {
  max-width: 700px;
  margin-bottom: 6rem;
}
.oh-text-block p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}
.oh-giant-heading {
  grid-column: 1/-1;
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--text-main);
  margin: 2rem 0 6rem;
}
.portfolio-grid-wrapper h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.portfolio-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 3rem;
}
@keyframes shimmer {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
.portfolio-item img,
.peak-full img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 1.2rem;
  background-color: #f0f0f0;
  background-image: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e4e4e4 50%,
    #f0f0f0 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite linear;
  transition:
    transform 0.3s ease,
    opacity 0.4s ease;
  opacity: 0;
}
.portfolio-item img.is-loaded,
.peak-full img.is-loaded {
  opacity: 1;
  background-image: none;
  animation: none;
}
.portfolio-item:hover img {
  transform: translateY(-5px);
}
.portfolio-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.portfolio-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
/* ── Peak Projects ───────────────────────────────────── */
.content-row--no-top {
  padding-top: 0;
}
.content-row--no-bottom {
  padding-bottom: 4rem;
}
.peak-full {
  grid-column: 1 / -1;
}
.peak-full img {
  aspect-ratio: 16/9;
}
.contact-form {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  background-color: #fafafa;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-main);
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--text-main);
  background-color: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 180px;
}
footer {
  background-color: var(--bg-color);
  color: var(--text-main);
  width: 100%;
}
.footer-inner {
  padding: 8rem 5% 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-brand .footer-logo {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-brand .footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
  line-height: 1.5;
}
.footer-column h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-column p,
.footer-column a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.footer-column a:hover {
  color: var(--text-main);
}
.footer-bottom-wrapper {
  padding: 2rem 5%;
}
.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .content-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 6rem 5%;
  }
  .section-label {
    border-top: none;
    border-left: 2px solid var(--text-main);
    padding-top: 0;
    padding-left: 0.8rem;
    margin-bottom: 1rem;
  }
  .full-width-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-item {
    border-bottom: 1px solid var(--border-color);
  }
  .benefit-item:nth-child(2n) {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .oh-grid {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    gap: 1rem;
  }
  .oh-image-container {
    grid-column: 1;
    margin-bottom: 4rem;
  }
  .oh-text-block {
    margin-bottom: 4rem;
  }
  .oh-label {
    margin-bottom: 1rem;
    border-top: none;
    border-left: 2px solid var(--text-main);
    padding-left: 0.8rem;
  }
  .oh-giant-heading {
    grid-column: 1;
    margin: 1rem 0 4rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-body h3,
  .portfolio-grid-wrapper h3 {
    font-size: 2rem;
 
  }
  .full-width-stats,
  .full-width-stats.two-cols {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 2rem;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .full-width-benefits {
    grid-template-columns: 1fr;
  }
  .benefit-item {
    border-right: none;
    padding: 4rem 2rem;
  }
  .portfolio-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  
  .media-full {
    height: 400px;
    max-height: none;
    aspect-ratio: auto;
  }
  .strategy-card img {
    height: 400px;
    aspect-ratio: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-inner {
    padding: 6rem 5% 3rem;
  }
}
