:root {
  --bg: #eef4f6;
  --paper: #fdfdfd;
  --panel: #f4f7f9;
  --ink: #102b3a;
  --muted: #4b5f6b;
  --line: rgba(16, 43, 58, 0.12);
  --teal: #1b697a;
  --teal-deep: #114d5c;
  --gold: #d4a95a;
  --gold-soft: rgba(212, 169, 90, 0.16);
  --shadow: 0 18px 45px rgba(16, 43, 58, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #f4f8fa 0%, #edf3f6 100%);
  color: var(--ink);
  line-height: 1.6;
}

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

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

p,
ul,
li,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(180deg, #f9fafb 0%, #eef4f6 100%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  padding: 34px 0 22px;
}

.brand-block {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.75fr);
  align-items: center;
  gap: 28px;
}

.brand-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 800;
}

.brand-text h1 {
  margin-bottom: 8px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
}

.brand-text p {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.7vw, 1.7rem);
  line-height: 1.3;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.brand-text a {
  display: inline-block;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
}

.brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--ink), var(--teal-deep));
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}

.panel-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
}

.brand-panel strong {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-family: "Montserrat", sans-serif;
}

.brand-panel small {
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  gap: 18px;
  padding: 18px 0 0;
  font-weight: 700;
  color: var(--ink);
}

.main-nav a {
  position: relative;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}

.main-nav a:hover {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: rgba(212, 169, 90, 0.4);
  transform: translateY(-1px);
}

.hero {
  padding: 44px 0 30px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 30px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.1));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal);
}

.hero-copy h2,
.section-heading h3,
.contact-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
}

.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-highlight {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--teal-deep);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  box-shadow: 0 10px 25px rgba(27, 105, 122, 0.20);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(29, 29, 29, 0.2);
  color: var(--ink);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.visual-window {
  min-height: 200px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(16,43,58,0.20), rgba(16,43,58,0.45)),
    url("images/WhatsApp Image 2026-09-17 at 9.31.58 PM.jpeg") center/cover no-repeat;
  box-shadow: var(--shadow);
  animation: fadeImage 12s ease-in-out infinite alternate;
}

@keyframes fadeImage {
  0% { filter: saturate(0.8) brightness(0.9); }
  50% { filter: saturate(1) brightness(1); }
  100% { filter: saturate(1.2) brightness(1.05); }
}

.mini-card {
  background: linear-gradient(180deg, #ffffff, #f8f2ed);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.mini-card strong {
  font-size: 1.08rem;
}

.section-block {
  padding: 50px 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h3 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  gap: 26px;
  align-items: start;
}

.about-copy {
  background: rgba(255,255,255,0.45);
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.emphasis {
  display: inline-block;
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
  font-weight: 600;
}

.info-box {
  background: linear-gradient(180deg, #1f1f1f, #141414);
  color: #fff;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.info-box ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 14px 28px rgba(20, 20, 20, 0.04);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--gold-soft);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.service-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.careers {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(27,105,122,0.04));
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 26px;
  align-items: start;
}

.job-card,
.career-panel {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.job-card {
  padding: 28px 24px;
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.job-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
}

.job-card h4 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
  font-family: "Montserrat", sans-serif;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--teal-deep);
  font-weight: 800;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.job-card p,
.job-card li,
.career-copy p {
  color: var(--muted);
}

.job-section {
  margin-top: 26px;
}

.job-section h5 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--ink);
}

.job-note {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
}

.job-list {
  margin: 0 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.job-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.job-actions {
  margin-top: 28px;
}

.career-panel {
  overflow: hidden;
}

.career-image {
  min-height: 280px;
  background: linear-gradient(180deg, rgba(16,43,58,0.18), rgba(16,43,58,0.4)),
    url("images/WhatsApp Image 2026-09-17 at 9.31.57 PM (1).jpeg") center/cover no-repeat;
}

.career-copy {
  padding: 24px 22px 26px;
}

.small {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats {
  padding-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  background: linear-gradient(135deg, rgba(27,105,122,0.10), rgba(212,169,90,0.12));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-item strong {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat-item span {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
}

.contact-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.contact-info ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  margin-top: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(29,29,29,0.14);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(27, 105, 122, 0.35);
  border-color: var(--teal);
}

.contact-form button {
  margin-top: 10px;
  width: fit-content;
  cursor: pointer;
}

.form-status {
  min-height: 1.2em;
  margin: 8px 0 0;
  color: var(--teal-deep);
  font-weight: 600;
}

.site-footer {
  padding: 20px 0 32px;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .brand-block,
  .hero-inner,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .main-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .service-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .logo-mark {
    min-height: 180px;
  }

  .brand-text h1 {
    font-size: 2.5rem;
  }

  .hero-copy h2,
  .section-heading h3,
  .contact-card h3 {
    font-size: 2.2rem;
  }
}
