/* =========================================
   APPLY HOLDINGS — STYLESHEET
   ========================================= */

:root {
  --navy:        #1a2744;
  --navy-mid:    #243358;
  --navy-light:  #2c3e6b;
  --accent:      #4a6fa5;
  --accent-dim:  #6b8fbf;
  --silver:      #8a9ab5;
  --silver-light:#c8d0de;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --warm-white:  #fafaf8;
  --text:        #1e2535;
  --text-mid:    #4a5568;
  --text-muted:  #6b7a8d;
  --border:      #e2e6ec;
  --border-light:#edf0f5;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius: 2px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.align-center { align-items: center; }
.section { padding: 7rem 0; }
.mt { margin-top: 1.25rem; }
.mt-sm { margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: block;
}
.eyebrow.light { color: var(--accent-dim); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.section-title.light { color: #fff; }

.body-text {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* =========================================
   NAVIGATION
   ========================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(26,39,68,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; object-fit: contain; }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--navy);
  transition: background var(--transition), color var(--transition);
}
.nav-links a.nav-cta:hover { background: var(--navy); color: white; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-image-zone {
  position: relative;
  width: 100%;
  height: 60vh;
  background: linear-gradient(140deg, #edf0f7 0%, #e4e9f3 50%, #dde3ef 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,39,68,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,39,68,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-image-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(74,111,165,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(26,39,68,0.08) 0%, transparent 50%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 5.5rem;
  /*max-width: 700px;*/
  text-align:center;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--navy);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover { background: var(--navy); color: white; transform: translateY(-1px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* HERO ENTRY ANIMATIONS */
.animate-1 { opacity: 0; transform: translateY(16px); animation: heroIn 0.7s 0.4s forwards; }
.animate-2 { opacity: 0; transform: translateY(20px); animation: heroIn 0.8s 0.6s forwards; }
.animate-3 { opacity: 0; transform: translateY(16px); animation: heroIn 0.7s 0.85s forwards; }
.animate-4 { opacity: 0; transform: translateY(14px); animation: heroIn 0.7s 1.05s forwards; }
.animate-5 { opacity: 0; animation: heroIn 0.6s 1.4s forwards; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* =========================================
   ABOUT
   ========================================= */
.about-section { background: var(--off-white); }

.about-logo-top {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}

.about-logo-top img {
  width: 400px;
  height: auto;
}

.about-aside { display: flex; flex-direction: column; gap: 1.25rem; }

.aside-card {
  background: white;
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.aside-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--navy), var(--accent));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.aside-card:hover { transform: translateX(4px); box-shadow: 4px 0 20px rgba(26,39,68,0.07); }
.aside-card:hover::before { transform: scaleY(1); }

.aside-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--silver-light);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.aside-card-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.aside-card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* =========================================
   PHILOSOPHY
   ========================================= */
.philosophy-section {
  background: var(--navy);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74,111,165,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(44,62,107,0.4) 0%, transparent 50%);
}
.philosophy-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}
.phil-card {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}
.phil-card:hover { background: rgba(255,255,255,0.07); }
.phil-icon {
  font-size: 1.4rem;
  color: var(--accent-dim);
  margin-bottom: 1.25rem;
}
.phil-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.phil-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
}

/* =========================================
   PORTFOLIO
   ========================================= */
.portfolio-section { background: white; }

.portfolio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.portfolio-intro-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

.company-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4.5rem;
  align-items: start;
  padding: 3.5rem 0;
}
.company-row.reverse { direction: rtl; }
.company-row.reverse > * { direction: ltr; }

.company-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  min-height: 220px;
  position: sticky;
  top: 100px;
  transition: box-shadow var(--transition);
}
.company-visual:hover { box-shadow: 0 8px 40px rgba(26,39,68,0.09); }
.company-visual.dark { background: #0d0d12; border-color: #1e1e2a; }
.company-visual.light { background: var(--off-white); }
.company-visual img { max-height: 120px; max-width: 100%; object-fit: contain; }

.company-vertical {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.company-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.company-body {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
}
.company-link {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  transition: color var(--transition), border-color var(--transition);
}
.company-link:hover { color: var(--accent); border-color: var(--accent); }

.company-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

/* =========================================
   COMMITMENT
   ========================================= */
.commitment-section { background: var(--off-white); }

.commitment-header { margin-bottom: 4rem; }

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.commitment-pillars { display: flex; flex-direction: column; gap: 2rem; }

.commit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.commit-item:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,39,68,0.07); }

.commit-marker {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.commit-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.commit-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* =========================================
   QUOTE
   ========================================= */
.quote-section {
  background: white;
  padding: 6rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.main-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--navy-mid);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  padding: 0 2rem;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--border);
  position: absolute;
  top: -1rem;
  left: 0;
  line-height: 1;
  user-select: none;
}
.quote-attr {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 2rem;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-section { background: var(--warm-white); }

.contact-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { color: var(--accent); font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0; }
.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.3rem;
}
.contact-value {
  font-size: 1.05rem;
  color: var(--navy);
  transition: color var(--transition);
}
a.contact-value:hover { color: var(--accent); }

.contact-card {
  background: white;
  border: 1px solid var(--border);
  padding: 3.5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.contact-logo { height: 44px; object-fit: contain; margin: 0 auto; }
.contact-tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-companies {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}
.mini-logo {
  height: 28px;
  object-fit: contain;
  border-radius: 3px;
  padding: 4px 8px;
}
.mini-logo.dark-bg { background: #0d0d12; }
.mini-logo.light-bg { background: var(--off-white); }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--navy);
  color: var(--silver);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}
.footer-logo {
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--silver);
  font-weight: 300;
}
.footer-nav { display: flex; gap: 3.5rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.footer-col a, .footer-col span {
  font-size: 0.88rem;
  color: var(--silver);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .company-row { grid-template-columns: 260px 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .nav-inner { padding: 0 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 4.5rem 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content { padding: 2.5rem 1.5rem 3rem; }
  .hero-scroll-hint { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .portfolio-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .company-row { grid-template-columns: 1fr; gap: 2rem; }
  .company-row.reverse { direction: ltr; }
  .company-visual { position: relative; top: 0; }
  .commitment-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
