/* ─────────────────────────────────────────────
   PivotMove Pte Ltd — Website Stylesheet
   Brand: Navy #1B3A5C · Gold #B18B3C
   Fonts: Cormorant Garamond + Lato
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy:       #1B3A5C;
  --navy-deep:  #122842;
  --navy-mid:   #234875;
  --gold:       #B18B3C;
  --gold-light: #C9A357;
  --gold-pale:  #F0E8D6;
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --text:       #1A1A1A;
  --text-light: #5A5A5A;
  --border:     #E2DDD5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Navigation ─────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(27, 58, 92, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(177, 139, 60, 0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── Mobile Nav ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy-deep);
  padding: 24px 40px 32px;
  z-index: 99;
  border-bottom: 1px solid rgba(177,139,60,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ── Page Header (hero) ─────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(177,139,60,0.12);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -20%; right: 2%;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(177,139,60,0.08);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  max-width: 760px;
}
.page-hero p {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Containers ─────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 0; }
.section-light { background: var(--off-white); }
.section-navy  { background: var(--navy); }
.section-deep  { background: var(--navy-deep); }

/* ── Section Labels ─────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Display Headings ───────────────────── */
h2.display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--navy);
}
h2.display-white {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
}
h3.display {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}

/* ── Gold Rule ───────────────────────────── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.gold-rule-full {
  width: 100%;
  height: 1px;
  background: rgba(177,139,60,0.25);
  margin: 64px 0;
}

/* ── Buttons ─────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 32px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-white {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  transition: all 0.2s;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── Home Hero ────────────────────────────── */
.home-hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(177,139,60,0.1);
}
.home-hero::after {
  content: '';
  position: absolute;
  top: -10%; right: 8%;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(177,139,60,0.06);
}
.home-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.home-hero-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.home-hero-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 880px;
  letter-spacing: -0.01em;
}
.home-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.6);
}
.home-hero-sub {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
}
.home-hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-geo {
  margin-top: 80px;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* ── Pillars / Cards ─────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.pillar {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
}
.pillar:hover { background: var(--off-white); }
.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(177,139,60,0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}
.pillar p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}
.pillar-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ── Stats Strip ─────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 64px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span {
  font-size: 1.6rem;
  color: var(--gold);
}
.stat-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  line-height: 1.5;
}

/* ── Services Grid ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 48px 44px;
  transition: background 0.2s;
  position: relative;
}
.service-card:hover { background: #F5F2EE; }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 44px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.service-card:hover::after { width: calc(100% - 88px); }
.service-icon {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(177,139,60,0.3);
  margin-bottom: 20px;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card p {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── About Layout ────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: 100px;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
  color: rgba(255,255,255,0.25);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.credentials-strip {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--off-white);
  border-left: 2px solid var(--gold);
}
.credentials-strip p {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.about-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 24px;
}
.about-content p.lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
}
.about-content blockquote {
  margin: 40px 0;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--gold);
}
.about-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.55;
  margin: 0;
}

/* ── Approach ────────────────────────────── */
.approach-body p {
  font-size: 16.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 780px;
}
.approach-body p.lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
}
.approach-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 56px 0;
}
.mode-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.mode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 40px;
  background: var(--gold);
}
.mode-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.mode-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── Contact ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info {}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-detail {
  margin-bottom: 20px;
}
.contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--navy);
}
.contact-form {}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}
.form-success {
  display: none;
  background: #F0EDE8;
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--navy);
}

/* ── Footer ──────────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 64px 40px 40px;
  border-top: 1px solid rgba(177,139,60,0.2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.footer-brand img { height: 26px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── Fade-in animation ───────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .approach-modes { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .about-grid   { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 100%; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .home-hero { padding: 100px 24px 64px; }
  .page-hero { padding: 120px 24px 64px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-modes { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .home-hero-actions { flex-direction: column; align-items: flex-start; }
}
