@charset "UTF-8";
/* =============================================================================
   Austin Maritime Services — Main Stylesheet
   Compiled by Gulp from src/scss/main.scss
   ============================================================================= */
/* ── CSS Custom Properties ── */
:root {
  --navy: #0a1628;
  --deep-blue: #0d2545;
  --mid-blue: #1a3f6f;
  --accent: #c8973a;
  --accent-light:#e8b55a;
  --steel: #4a7fa5;
  --light-steel: #a8c8e0;
  --white: #f8f4ef;
  --cream: #f0e8d8;
  --text-muted: #8a9ab0;
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.2);
}

.nav-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-logo-white {
  color: var(--white);
}

.nav-logo-text {
  display: inline;
}

.nav-logo-line2 {
  display: inline;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-steel);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

/* ── NAV TOGGLE (hamburger) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--light-steel);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 4rem;
  background-image: url("../assets/img/hero-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 63, 111, 0.6) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(13, 37, 69, 0.85) 0%, transparent 60%), linear-gradient(160deg, rgba(10, 22, 40, 0.75) 0%, rgba(13, 37, 69, 0.7) 50%, rgba(10, 22, 40, 0.75) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(200, 151, 58, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 151, 58, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--navy));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
}

.hero-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tag::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--light-steel);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--navy);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

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

.btn-outline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(200, 151, 58, 0.5);
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(200, 151, 58, 0.08);
  transform: translateY(-2px);
}

/* ── HERO STATS ── */
.hero-stats {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  z-index: 2;
}

.stat {
  text-align: right;
  position: relative;
  padding-right: 1.5rem;
}

.stat::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ── SECTION COMMONS ── */
section {
  padding: 7rem 4rem;
  scroll-margin-top: 70px;
}

.section-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-tag::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent-light);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 3rem;
}

.contact-form .divider {
  margin-bottom: -1rem;
}

/* ── ABOUT ── */
.about {
  background: var(--deep-blue);
  position: relative;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light-steel);
  margin-bottom: 1.2rem;
}

.about-body p strong {
  color: var(--white);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  padding: 1.5rem 1.8rem;
  border: 1px solid rgba(200, 151, 58, 0.15);
  border-left: 3px solid var(--accent);
  background: rgba(10, 22, 40, 0.5);
  transition: border-color 0.3s, background 0.3s;
}

.value-card:hover {
  background: rgba(200, 151, 58, 0.05);
  border-color: rgba(200, 151, 58, 0.3);
}

.value-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--light-steel);
  line-height: 1.6;
  font-weight: 300;
}

/* ── SERVICES ── */
.services {
  background: var(--navy);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: rgba(200, 151, 58, 0.1);
  margin-top: 1rem;
}

.service-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.service-card:hover {
  background: var(--deep-blue);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 151, 58, 0.08);
  line-height: 1;
  transition: color 0.4s;
}

.service-card:hover .service-number {
  color: rgba(200, 151, 58, 0.15);
}

/* ── WHY CAMEROON ── */
.why {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #102040 100%);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 151, 58, 0.06) 0%, transparent 70%);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.why-point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.4rem;
}

.why-point p {
  font-size: 0.95rem;
  color: var(--light-steel);
  line-height: 1.7;
  font-weight: 300;
}

.why-point p strong {
  color: var(--white);
  font-weight: 500;
}

/* ── CLIENTS ── */
.clients {
  background: var(--navy);
}

.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(200, 151, 58, 0.08);
  margin-top: 1rem;
}

.client-card {
  background: var(--navy);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.3s;
}

.client-card:hover {
  background: var(--deep-blue);
}

.client-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.client-service {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 400;
}

/* ── LEADERSHIP ── */
.leadership {
  background: var(--deep-blue);
}

.leadership-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}

.leader-card {
  background: linear-gradient(160deg, var(--mid-blue), var(--deep-blue));
  border: 1px solid rgba(200, 151, 58, 0.2);
  position: relative;
  overflow: hidden;
}

.leader-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.leader-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-photo {
  transform: scale(1.04);
}

.leader-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  padding: 1.5rem 1.8rem 0;
}

.leader-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0 1.8rem 1.8rem;
}

.leader-bio p {
  font-size: 0.95rem;
  color: var(--light-steel);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.leader-memberships h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.leader-memberships ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.leader-memberships li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  font-weight: 300;
}

.leader-memberships li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.mgmt-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.role-chip {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(200, 151, 58, 0.15);
  background: rgba(10, 22, 40, 0.5);
}

.role-chip h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.role-chip p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ── INVESTOR ── */
.investor {
  background: linear-gradient(160deg, #0c1e38, var(--deep-blue));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.investor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(200, 151, 58, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 151, 58, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.investor-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.investor h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.investor h2 em {
  font-style: italic;
  color: var(--accent-light);
}

.investor p {
  font-size: 1rem;
  color: var(--light-steel);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--navy);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--light-steel);
  line-height: 1.7;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 151, 58, 0.2);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  background: rgba(200, 151, 58, 0.04);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field select option {
  background: var(--navy);
}

/* ── FOOTER ── */
footer {
  background: #060e1c;
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 151, 58, 0.1);
}

.footer-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-logo span {
  color: var(--white);
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-tag {
  animation-delay: 0.1s;
}

.hero h1 {
  animation-delay: 0.25s;
}

.hero-sub {
  animation-delay: 0.4s;
}

.hero-cta {
  animation-delay: 0.55s;
}

.hero-stats {
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(75vw, 300px);
    background: transparent;
    border-left: none;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 120;
    pointer-events: none;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(200, 151, 58, 0.08);
  }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.15em;
  }
  .nav-links.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  /* dim overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 28, 0.6);
    z-index: 115;
  }
  .nav-overlay.is-open {
    display: block;
  }
  section {
    padding: 5rem 1.5rem;
  }
  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: 100svh;
  }
  .hero-stats {
    display: none;
  }
  .hero-oilgas {
    display: block;
  }
  .hero-br {
    display: none;
  }
  .about-inner,
  .why-inner,
  .contact-inner,
  .leadership-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .leader-photo-wrap {
    aspect-ratio: 4/3;
  }
  .leader-name {
    font-size: 1.3rem;
    padding: 1.2rem 1.4rem 0;
  }
  .leader-title {
    padding: 0 1.4rem 1.4rem;
  }
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .mgmt-roles {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=main.css.map */
