/* Griva Global — shared stylesheet */
:root {
  --navy: #0F2A54;
  --navy-dark: #091b38;
  --gold: #C9972C;
  --gold-light: #e0b458;
  --cream: #FBF8F0;
  --text: #26313f;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand svg { height: 42px; width: 42px; }

.brand-text {
  line-height: 1.1;
}

.brand-text .name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.brand-text .name span { color: var(--gold); }

.brand-text .tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-transform: uppercase;
  opacity: 0.75;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, var(--navy) 55%, var(--navy-dark) 100%);
  color: #fff;
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 40px solid var(--gold);
  border-radius: 50%;
  opacity: 0.15;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  font-size: 42px;
  max-width: 640px;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  max-width: 560px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  margin-left: 14px;
}

.btn.outline:hover { background: rgba(255,255,255,0.1); }

/* Sections */
section { padding: 70px 24px; }

.section-alt { background: #fff; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
  color: #55606e;
}

.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 40px;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.card {
  background: var(--cream);
  border: 1px solid #ece5d4;
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  padding: 32px 26px;
  text-align: left;
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card .icon svg { width: 26px; height: 26px; }

.card h3 { font-size: 19px; margin-bottom: 10px; }

.card p { font-size: 15px; color: #55606e; margin: 0; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-row .stat strong {
  display: block;
  font-size: 30px;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
}

.stat-row .stat span {
  font-size: 13px;
  color: #55606e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Panel */
.panel {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 40px;
}

.panel h3 { color: #fff; }
.panel p { color: rgba(255,255,255,0.8); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .icon svg { width: 20px; height: 20px; }

.contact-item h4 { margin: 0 0 4px; font-size: 15px; }
.contact-item p { margin: 0; color: #55606e; font-size: 15px; }

form.contact-form {
  background: #fff;
  border: 1px solid #ece5d4;
  border-radius: 8px;
  padding: 32px;
}

form.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--navy);
}

form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 18px;
  border: 1px solid #d8d2c2;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

form.contact-form button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.form-note {
  font-size: 12.5px;
  color: #8a8f97;
  margin-top: -6px;
}

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 46px 24px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-grid p, .footer-grid a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  text-align: center;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 860px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--gold);
    display: none;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
  }
  nav.main-nav li { border-bottom: 1px solid #ece5d4; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 30px; }
}

/* Divisions band */
.band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13.5px;
}
.band .gold { color: var(--gold); }

/* Two-division layout */
.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 760px) {
  .division-grid { grid-template-columns: 1fr; gap: 40px; }
}

.division { text-align: center; }

.division .div-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.division .div-icon.navy-bg { background: var(--navy); }
.division .div-icon.gold-bg { background: var(--gold); }
.division .div-icon svg { width: 34px; height: 34px; }

.division h3 { font-size: 19px; }

.division .desc {
  color: #55606e;
  max-width: 380px;
  margin: 0 auto 22px;
  font-size: 15px;
}

.division-divider {
  display: none;
}
@media (min-width: 761px) {
  .division-grid.with-divider { position: relative; }
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--text);
}
.checklist .tick {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checklist .tick svg { width: 12px; height: 12px; }

/* Key strengths row */
.strengths-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.strengths-row .strength { flex: 1; min-width: 140px; }
.strengths-row .s-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.strengths-row .s-icon.navy-bg { background: var(--navy); }
.strengths-row .s-icon.gold-bg { background: var(--gold); }
.strengths-row .s-icon svg { width: 26px; height: 26px; }
.strengths-row h4 {
  font-size: 13.5px;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.4px;
}

/* Closing line */
.closing-line {
  text-align: center;
  padding: 22px 24px;
  background: var(--navy-dark);
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  border-top: 3px solid var(--gold);
}
.closing-line .diamond {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 12px;
  vertical-align: middle;
}
