@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --yellow:#f4c400;
  --dark:#17191b;
  --grey:#34383b;
  --white:#f7f7f5;
  --muted:#d0d2d3;
}

* { box-sizing:border-box; }

html,body {
  margin:0;
  min-height:100%;
}

body {
  background:var(--dark);
  color:var(--white);
  font-family:Inter,Arial,sans-serif;
}

.page {
  position:relative;
  min-height:100vh;
  overflow:hidden;
  isolation:isolate;
}

.background {
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:url("images/tpm-tankers-hero.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.overlay {
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,
      rgba(23,25,27,.97) 0%,
      rgba(23,25,27,.90) 28%,
      rgba(23,25,27,.58) 55%,
      rgba(23,25,27,.20) 100%),
    linear-gradient(0deg, rgba(23,25,27,.30), rgba(23,25,27,.08));
}

.content-wrap {
  width:min(100% - 48px, 1180px);
  min-height:100vh;
  margin:auto;
  padding:clamp(28px,5vw,64px) 0;
  display:flex;
  flex-direction:column;
}

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

.brand-mark {
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:var(--dark);
  font-family:"Barlow Condensed",sans-serif;
  font-size:28px;
  font-weight:700;
  transform:skew(-8deg);
  box-shadow:7px 7px 0 rgba(23,25,27,.7);
}

.eyebrow {
  display:block;
  color:var(--yellow);
  font-size:12px;
  font-weight:700;
  letter-spacing:.2em;
}

.brand h1 {
  margin:3px 0 0;
  font-family:"Barlow Condensed",sans-serif;
  font-size:26px;
  text-transform:uppercase;
}

.content {
  width:min(680px,100%);
  margin:auto 0;
  padding:70px 0;
}

.status {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  color:#c8cbcc;
  font-size:13px;
  font-weight:600;
  background:rgba(0,0,0,.22);
  backdrop-filter:blur(4px);
}

.status span {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 14px rgba(244,196,0,.6);
}

h2 {
  margin:28px 0 20px;
  font-family:"Barlow Condensed",sans-serif;
  font-size:clamp(58px,8vw,100px);
  line-height:.9;
  text-transform:uppercase;
  letter-spacing:-.025em;
}

h2 strong {
  color:var(--yellow);
  font-weight:700;
}

.content > p {
  max-width:600px;
  margin:0;
  color:var(--muted);
  font-size:clamp(16px,1.5vw,19px);
  line-height:1.75;
}

.divider {
  width:72px;
  height:4px;
  margin:34px 0 28px;
  background:var(--yellow);
}

.contact-intro {
  margin-bottom:15px !important;
  color:#b9bdbe !important;
  font-size:14px !important;
}

.email {
  display:inline-flex;
  align-items:center;
  gap:11px;
  color:var(--white);
  font-size:clamp(18px,2vw,23px);
  font-weight:700;
  text-decoration:none;
}

.email span {
  color:var(--yellow);
}

.email:hover {
  color:var(--yellow);
}

footer {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.16);
  color:#a0a4a6;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

footer span:first-child {
  color:var(--yellow);
  font-weight:700;
}

@media (max-width:700px) {
  .content-wrap {
    width:min(100% - 36px,1180px);
  }

  .background {
    background-position:62% center;
  }

  .overlay {
    background:
      linear-gradient(90deg,
        rgba(23,25,27,.96) 0%,
        rgba(23,25,27,.84) 65%,
        rgba(23,25,27,.58) 100%),
      linear-gradient(0deg, rgba(23,25,27,.45), rgba(23,25,27,.18));
  }

  .content {
    padding:70px 0;
  }

  h2 {
    font-size:clamp(52px,15vw,78px);
  }

  footer {
    flex-direction:column;
    gap:8px;
    line-height:1.5;
  }
}

@media (max-width:420px) {
  .content-wrap {
    width:calc(100% - 28px);
  }

  .brand-mark {
    width:54px;
    height:54px;
    font-size:23px;
  }

  .brand h1 {
    font-size:21px;
  }

  .content {
    padding:58px 0;
  }

  .background {
    background-position:64% center;
  }
}
