/* ═══════════════════════════════════════
   ORBIS — HOME PAGE (index.html)
   ═══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 55% 45%;
  background: var(--oxford-dark);
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 72px 72px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  left: -200px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,33,71,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5vw 5rem 8vw; position: relative; z-index: 2;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9px; font-weight: 600; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase;
  border: 0.5px solid rgba(201,168,76,0.25);
  padding: 8px 18px; margin-bottom: 2.2rem; width: fit-content;
  animation: fadeUp 0.8s ease both;
}
.hero-tag i { font-size: 10px; opacity: 0.8; }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 82px); font-weight: 300;
  color: var(--white); line-height: 1.04;
  margin-bottom: 1.8rem; animation: fadeUp 0.8s 0.12s ease both;
}
.hero-h1 em { font-style: italic; color: var(--gold-bright); font-weight: 300; }

.hero-sub {
  font-size: 1.1em; font-weight: 300;
  color: var(--body-on-dark); line-height: 1.9;
  margin-bottom: 2.6rem; max-width: 480px;
  animation: fadeUp 0.8s 0.24s ease both;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s 0.36s ease both; }

.hero-stats {
  margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; gap: 0; animation: fadeUp 0.8s 0.5s ease both;
}
.hero-stat { flex: 1; padding-right: 2rem; }
.hero-stat + .hero-stat { padding-left: 2rem; border-left: 1px solid rgba(201,168,76,0.1); }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: 10.5px; font-weight: 400; letter-spacing: 1.5px; color: var(--body-on-dark); margin-top: 5px; }

.hero-right {
  display: grid; grid-template-rows: 2fr 1fr;
  gap: 3px; background: var(--oxford-light);
  padding: 3px 3px 3px 0;
}
.hero-img-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 8vw;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; z-index: 10; animation: fadeUp 2s 1s ease both;
}
.scroll-hint span { font-size: 8px; letter-spacing: 3px; color: rgba(143,168,200,0.35); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── THE PROBLEM ── */
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.problem-img    { position: relative; }
.problem-img-main  { width: 100%; aspect-ratio: 4/5; }
.problem-img-float {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 48%; aspect-ratio: 1;
  border: 5px solid var(--light-surface);
  box-shadow: 0 12px 48px rgba(0,33,71,0.12);
}
.problem-text p { font-size: 1.1em; font-weight: 300; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.5rem; }
.problem-tags   { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.problem-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: var(--text-mid);
  background: var(--light-mid); border: 0.5px solid var(--light-border);
  padding: 9px 18px;
}
.problem-tag i { color: var(--oxford); font-size: 12px; }

/* ── WHO WE SERVE ── */
.serve-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; margin-bottom: 4.5rem; }
.serve-body   { font-size: 1.1em; font-weight: 300; color: var(--body-on-dark); line-height: 1.9; }
.serve-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: rgba(255,255,255,0.04); }
.serve-pillar {
  background: rgba(0,21,48,0.4); padding: 2.6rem 2rem;
  border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.serve-pillar:hover { border-top-color: var(--gold); background: rgba(0,21,48,0.7); }
.serve-pillar-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem; transition: border-color 0.3s;
}
.serve-pillar:hover .serve-pillar-icon { border-color: rgba(201,168,76,0.5); }
.serve-pillar-icon i   { font-size: 19px; color: var(--gold); }
.serve-pillar-num      { font-size: 10px; letter-spacing: 3px; color: var(--gold-muted); margin-bottom: 0.5rem; }
.serve-pillar-title    { font-family: 'Cormorant Garamond',serif; font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 0.9rem; }
.serve-pillar-text     { font-size: 1.05em; font-weight: 300; color: var(--body-on-dark); line-height: 1.85; }

/* ── SERVICES ── */
.svc-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.svc-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; }
.svc-header-text  { font-size: 1.1em; font-weight: 300; color: var(--text-mid); line-height: 1.9; text-align: right; }

.svc-grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--light-border); }
.svc-grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--light-border); margin-top: 1px; }

.svc-card {
  background: var(--light-surface); padding: 2.5rem 2.2rem;
  border-bottom: 3px solid transparent; transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s; position: relative;
}
.svc-card:hover { border-bottom-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,33,71,0.09); }
.svc-icon {
  width: 50px; height: 50px; background: var(--light-bg);
  border: 1px solid var(--light-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: border-color 0.3s, background 0.3s;
}
.svc-card:hover .svc-icon    { border-color: var(--oxford); background: var(--oxford); }
.svc-icon i                   { font-size: 18px; color: var(--oxford); transition: color 0.3s; }
.svc-card:hover .svc-icon i   { color: var(--gold); }
.svc-num   { font-size: 10px; letter-spacing: 3px; color: var(--text-faint); margin-bottom: 0.5rem; }
.svc-title { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 0.8rem; }
.svc-desc  { font-size: 1.05em; font-weight: 300; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; }
.svc-tags  { display: flex; flex-wrap: wrap; gap: 5px; }
.svc-tag   { font-size: 10px; letter-spacing: 1px; color: var(--text-mid); background: var(--light-mid); border: 0.5px solid var(--light-border); padding: 5px 11px; text-transform: uppercase; }

/* ── QUOTE BREAK ── */
.quote-break { display: grid; grid-template-columns: 3fr 2fr; min-height: 420px; }
.quote-break-left {
  background: var(--oxford-dark); padding: 5rem 8vw;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(201,168,76,0.1); position: relative;
}
.quote-break-left::before {
  content: '\201C'; font-family: 'Cormorant Garamond',serif;
  font-size: 160px; color: rgba(201,168,76,0.06); line-height: 1;
  position: absolute; top: 2rem; left: 6vw; pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(22px,2.6vw,36px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.45; margin-bottom: 2rem; position: relative; z-index: 1;
}
.quote-attr { font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }

/* ── PROCESS ── */
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4.5rem; }
.process-header-text { font-size: 1.1em; font-weight: 300; color: var(--text-mid); line-height: 1.9; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); background: var(--light-border); gap: 1px; }

.proc-card { background: var(--light-surface); padding: 2.5rem 1.8rem; position: relative; transition: background 0.3s; }
.proc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--oxford); transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.proc-card:hover             { background: var(--light-bg); }
.proc-card:hover::after      { transform: scaleX(1); }
.proc-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; }
.proc-num {
  font-family: 'Cormorant Garamond',serif; font-size: 44px;
  font-weight: 300; color: var(--oxford); opacity: 0.15; line-height: 1;
}
.proc-icon {
  width: 38px; height: 38px; background: var(--light-mid);
  border: 1px solid var(--light-border);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.proc-card:hover .proc-icon   { background: var(--oxford); border-color: var(--oxford); }
.proc-icon i                  { font-size: 14px; color: var(--oxford); transition: color 0.3s; }
.proc-card:hover .proc-icon i { color: var(--gold); }
.proc-title { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--text-dark); text-transform: uppercase; margin-bottom: 0.8rem; }
.proc-desc  { font-size: 1em; font-weight: 300; color: var(--text-mid); line-height: 1.8; }

/* ── WHY ORBIS ── */
.trust-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.trust-pillars { display: flex; flex-direction: column; gap: 3px; }
.trust-pillar {
  background: rgba(255,255,255,0.04); padding: 2.2rem 2.4rem;
  border-left: 3px solid transparent; transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.trust-pillar:hover { border-left-color: var(--gold); background: rgba(255,255,255,0.07); }
.trust-pillar-top   { display: flex; align-items: center; gap: 14px; margin-bottom: 0.9rem; }
.trust-pillar-top i { font-size: 18px; color: var(--gold); width: 26px; text-align: center; }
.trust-pillar-title { font-family: 'Cormorant Garamond',serif; font-size: 26px; font-weight: 600; color: var(--white); }
.trust-pillar-text  { font-size: 1.05em; font-weight: 300; color: var(--body-on-dark); line-height: 1.85; padding-left: 40px; }
.trust-right-col    { display: flex; flex-direction: column; gap: 3px; }
.trust-img          { width: 100%; aspect-ratio: 16/9; margin-bottom: 3px; }
.trust-stats        { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.trust-stat         { background: rgba(255,255,255,0.04); padding: 2rem; }
.trust-stat-num     { font-family: 'Cormorant Garamond',serif; font-size: 48px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 0.3rem; }
.trust-stat-line    { width: 24px; height: 1px; background: var(--gold); margin-bottom: 0.8rem; }
.trust-stat-label   { font-size: 11px; letter-spacing: 2px; color: var(--body-on-dark); text-transform: uppercase; margin-bottom: 0.5rem; }
.trust-stat-desc    { font-size: 1em; font-weight: 300; color: rgba(143,168,200,0.6); line-height: 1.7; }

/* ── FOOTER CTA ── */
.footer-cta {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--oxford-dark);
  border-top: 1px solid rgba(201,168,76,0.18);
  position: relative; overflow: hidden;
}
.footer-cta-left {
  padding: 7rem 8vw;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(201,168,76,0.08);
  position: relative; z-index: 1;
}
.footer-cta-left::before {
  content: ''; position: absolute; top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,33,71,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-title {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(28px,3.8vw,52px); font-weight: 300;
  color: var(--white); line-height: 1.1; margin-bottom: 1.4rem; position: relative;
}
.footer-cta-title em { font-style: italic; color: var(--gold-bright); }
.footer-cta-sub {
  font-size: 1.1em; font-weight: 300; color: var(--body-on-dark);
  line-height: 1.9; margin-bottom: 2.5rem; position: relative;
}
.footer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }
.footer-cta-right   { display: flex; flex-direction: column; }
.footer-cta-img     { flex: 1; min-height: 300px; }
.footer-contact-block {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 2rem 3rem; display: flex; flex-direction: column; gap: 1.2rem;
}
.footer-contact-item { display: flex; align-items: center; gap: 14px; }
.footer-contact-item i    { font-size: 14px; color: var(--gold); width: 20px; text-align: center; opacity: 0.7; }
.footer-contact-text      { font-size: 1.05em; color: var(--body-on-dark); }

/* ── RESPONSIVE (home-specific) ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left  { padding: 5rem 5vw; }
  .problem-layout, .serve-layout, .svc-header,
  .trust-layout, .footer-cta, .process-header, .quote-break { grid-template-columns: 1fr; }
  .serve-pillars, .svc-grid3, .svc-grid2 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; }
  .footer-cta-left { padding: 4rem 5vw; }
  .problem-img-float { display: none; }
  .quote-break { min-height: auto; }
  .quote-break-left { padding: 4rem 5vw; }
}

